File: idlharness.html

package info (click to toggle)
firefox 144.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,637,504 kB
  • sloc: cpp: 7,576,692; javascript: 6,430,831; ansic: 3,748,119; python: 1,398,978; xml: 628,810; asm: 438,679; java: 186,194; sh: 63,212; makefile: 19,159; objc: 13,086; perl: 12,986; yacc: 4,583; cs: 3,846; pascal: 3,448; lex: 1,720; ruby: 1,003; exp: 762; php: 436; lisp: 258; awk: 247; sql: 66; sed: 53; csh: 10
file content (79 lines) | stat: -rw-r--r-- 2,619 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!doctype html>
<meta charset=utf-8>
<!-- WARNING: These tests are preliminary and probably partly incorrect.  -->
<title>CSSOM automated IDL tests</title>
<link rel="author" title="Ms2ger" href="mailto:Ms2ger@gmail.com">
<link rel="help" href="https://drafts.csswg.org/cssom-1/#idl-index">
<meta name="timeout" content="long">
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=/resources/WebIDLParser.js></script>
<script src=/resources/idlharness.js></script>
<!--
Provide some objects to test.
Use a non-empty style attribute to get a non-empty CSSStyleDeclaration.
-->
<style id="styleElement" style="z-index: 0;">
@import url("data:text/css,");
@namespace x "y";
@page { @top-left {} }
@media all {}
#test { color: green; }
</style>

<svg id="svgElement" style="height: 0;"></svg>

<iframe id="xmlssPiIframe" src="support/xmlss-pi.xhtml" style="display: none;"></iframe>

<h1>CSSOM IDL tests</h1>
<div id=log></div>

<script>
'use strict';

const waitForLoad = new Promise(r => { addEventListener('load', r); });

idl_test(
  ['cssom'],
  ['SVG', 'uievents', 'html', 'dom', 'mathml-core'],
  async idlArray => {
    idlArray.add_objects({
      Document: ['document', 'new Document()'],
      StyleSheetList: ['document.styleSheets'],
      CSSStyleSheet: ['sheet'],
      MediaList: ['sheet.media'],
      CSSRuleList: ['sheet.cssRules'],
      CSSImportRule: ['sheet.cssRules[0]'],
      CSSNamespaceRule: ['sheet.cssRules[1]'],
      CSSPageRule: ['sheet.cssRules[2]'],
      CSSMarginRule: ['sheet.cssRules[2].cssRules[0]'],
      CSSMediaRule: ['sheet.cssRules[3]'],
      CSSStyleRule: ['sheet.cssRules[4]'],
      CSSStyleProperties: [
        'sheet.cssRules[4].style', // CSSStyleRule
        'sheet.cssRules[2].cssRules[0].style', // CSSMarginRule
        'style_element.style', // ElementCSSInlineStyle for HTMLElement
        'svg_element.style', // ElementCSSInlineStyle for SVGElement
        'getComputedStyle(svg_element)'
      ],
      CSSPageDescriptors: [
        'sheet.cssRules[2].style', // CSSPageRule
      ],
      ProcessingInstruction: ['xmlss_pi'],
      Window: ['window'],
      HTMLElement: [
        'style_element',
        'document.createElement("unknownelement")'
      ],
      SVGElement: ['svg_element'],
    });

    await waitForLoad;
    self.style_element = document.getElementById('styleElement');
    self.sheet = style_element.sheet;
    self.svg_element = document.getElementById('svgElement');
    self.xmlss_pi = document.getElementById('xmlssPiIframe').contentDocument.firstChild;
  }
);

</script>