mirror of
https://github.com/servo/servo.git
synced 2025-07-03 05:23:38 +01:00
Update web-platform-tests to revision e87f38097902e16348d4e17f4fe3bc2d0112bff1
This commit is contained in:
parent
2f8fa32e91
commit
db5631a086
381 changed files with 11610 additions and 4232 deletions
|
@ -0,0 +1,31 @@
|
|||
<!DOCTYPE html>
|
||||
<link rel="help" href="https://html.spec.whatwg.org/multipage/parsing.html#tree-construction:html-integration-point">
|
||||
<body>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
|
||||
<math><annotation-xml id="point-1" encoding="text/html"><xmp></xmp><img></xmp></annotation-xml></math>
|
||||
<math><annotation-xml id="point-2" encoding="application/xhtml+xml"><style></style><img></style></annotation-xml></math>
|
||||
<svg><foreignObject id="point-3"><iframe></iframe><img></iframe></foreignObject></svg>
|
||||
<svg><desc id="point-4"><noembed></noembed><img></noembed></desc></svg>
|
||||
<svg><title id="point-5"><noframes></noframes><img></noframes></title></svg>
|
||||
|
||||
<script>
|
||||
function generate_test(id) {
|
||||
return () => {
|
||||
let point = document.querySelector('#' + id);
|
||||
assert_not_equals(point.namespaceURI, 'http://www.w3.org/1999/xhtml');
|
||||
let rawTextElement = point.firstChild;
|
||||
assert_equals(rawTextElement.namespaceURI, 'http://www.w3.org/1999/xhtml');
|
||||
assert_equals(rawTextElement.textContent.substr(0, 4), '<',
|
||||
'Entity references should not be decoded.');
|
||||
};
|
||||
}
|
||||
|
||||
test(generate_test('point-1'), 'MathML annotation-xml with encoding=text/html should be an HTML integration point');
|
||||
test(generate_test('point-2'), 'MathML annotation-xml with encoding=application/xhtml+xml should be an HTML integration point');
|
||||
test(generate_test('point-3'), 'SVG foreignObject should be an HTML integration point');
|
||||
test(generate_test('point-4'), 'SVG desc should be an HTML integration point');
|
||||
test(generate_test('point-5'), 'SVG title should be an HTML integration point');
|
||||
</script>
|
||||
</body>
|
Loading…
Add table
Add a link
Reference in a new issue