File: with-inheritance.html

package info (click to toggle)
firefox 149.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,767,760 kB
  • sloc: cpp: 7,416,064; javascript: 6,752,859; ansic: 3,774,850; python: 1,250,473; xml: 641,578; asm: 439,191; java: 186,617; sh: 56,634; makefile: 18,856; objc: 13,092; perl: 12,763; pascal: 5,960; yacc: 4,583; cs: 3,846; lex: 1,720; ruby: 1,002; php: 436; lisp: 258; awk: 105; sql: 66; sed: 53; csh: 10; exp: 6
file content (60 lines) | stat: -rw-r--r-- 2,205 bytes parent folder | download | duplicates (20)
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
<!doctype html>
<meta charset="windows-1253">
<title>meta charset in iframes with windows-1253 inhering from parent</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>

<script>
setup({explicit_done:true});
window.onload = function() {
  runAllTests();
  done();
};

function runAllTests() {
  const prefix = "Test: ";
  let iframes = document.getElementsByTagName("iframe");
  for (let i = 0; i < iframes.length; ++i) {
    let iframe = iframes[i];
    test(function() {
      let doc = iframe.contentWindow.document;
      let link = doc.getElementsByTagName("link")[0];
      let match = (link.rel == "match");
      let content = doc.documentElement.textContent;
      let index = content.indexOf(prefix);
      let c = content.substring(index + prefix.length, index + prefix.length + 1);
      if (match) {
        assert_equals(doc.characterSet, "windows-1251", 'Check characterSet');
        assert_equals(c, "\u0436", 'Check character');
      } else {
        assert_equals(doc.characterSet, "windows-1253", 'Check characterSet');
        assert_equals(c, "\u03B6", 'Check character');
      }
    }, "Check " + iframe.src);
  }
}

</script>

<iframe src="after-1kb.html"></iframe>
<iframe src="after-bogus-after-1kb.html"></iframe>
<iframe src="after-bogus.html"></iframe>
<iframe src="after-head-after-1kb-crlf.html"></iframe>
<iframe src="after-head-after-1kb.html"></iframe>
<iframe src="after-head-in-1kb-crlf.html"></iframe>
<iframe src="after-head-in-1kb.html"></iframe>
<iframe src="baseline.html"></iframe>
<iframe src="document-write.html"></iframe>
<iframe src="in-comment.html"></iframe>
<iframe src="in-noscript-after-template-after-1kb.html"></iframe>
<iframe src="in-object.html"></iframe>
<iframe src="in-script.html"></iframe>
<iframe src="in-style.html"></iframe>
<iframe src="in-svg.html"></iframe>
<iframe src="in-svg-in-cdata.html"></iframe>
<iframe src="in-template-after-1kb.html"></iframe>
<iframe src="in-template.html"></iframe>
<iframe src="in-title.html"></iframe>
<iframe src="ncr.html"></iframe>
<iframe src="non-ascii-in-comment-before.html"></iframe>
<iframe src="non-ascii-in-title-before.html"></iframe>