mirror of
https://github.com/servo/servo.git
synced 2025-08-07 22:45:34 +01:00
ChildrenOnly -> ChildrenOnly(Option<QualName>)
use this updated type from html5ever
This commit is contained in:
parent
a468d05fff
commit
6c0f87a1d6
14 changed files with 38 additions and 56 deletions
|
@ -14,7 +14,7 @@ byteorder = "1.0"
|
|||
app_units = "0.5"
|
||||
cssparser = "0.21.1"
|
||||
euclid = "0.15"
|
||||
html5ever = "0.19"
|
||||
html5ever = "0.20"
|
||||
parking_lot = "0.4"
|
||||
rayon = "0.8"
|
||||
rustc-serialize = "0.3"
|
||||
|
|
|
@ -590440,7 +590440,7 @@
|
|||
"testharness"
|
||||
],
|
||||
"html/syntax/serializing-html-fragments/serializing.html": [
|
||||
"cd9e3b8412231aa393081a6234efc7476e00c48e",
|
||||
"37b4cbb9a06e43943847be64ece1881c45d3684f",
|
||||
"testharness"
|
||||
],
|
||||
"html/syntax/serializing-xml-fragments/outerHTML.html": [
|
||||
|
|
|
@ -6,6 +6,10 @@
|
|||
[innerHTML in XHTML 1]
|
||||
expected: FAIL
|
||||
|
||||
[innerHTML in XHTML 2]
|
||||
expected: FAIL
|
||||
bug: https://github.com/servo/servo/issues/18776
|
||||
|
||||
[innerHTML in XHTML 3]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -6,33 +6,6 @@
|
|||
[outerHTML Attribute in non-standard namespace]
|
||||
expected: FAIL
|
||||
|
||||
[innerHTML <pre> non-context starting with U+000A]
|
||||
expected: FAIL
|
||||
|
||||
[innerHTML <textarea> non-context starting with U+000A]
|
||||
expected: FAIL
|
||||
|
||||
[innerHTML <listing> non-context starting with U+000A]
|
||||
expected: FAIL
|
||||
|
||||
[outerHTML <pre> context starting with U+000A]
|
||||
expected: FAIL
|
||||
|
||||
[outerHTML <textarea> context starting with U+000A]
|
||||
expected: FAIL
|
||||
|
||||
[outerHTML <listing> context starting with U+000A]
|
||||
expected: FAIL
|
||||
|
||||
[outerHTML <pre> non-context starting with U+000A]
|
||||
expected: FAIL
|
||||
|
||||
[outerHTML <textarea> non-context starting with U+000A]
|
||||
expected: FAIL
|
||||
|
||||
[outerHTML <listing> non-context starting with U+000A]
|
||||
expected: FAIL
|
||||
|
||||
[innerHTML Void context node area]
|
||||
expected: FAIL
|
||||
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
<span>"</span>
|
||||
<span><style><&></style></span>
|
||||
<span><script type="test"><&></script></span>
|
||||
<script type="test"><&></script>
|
||||
<span><xmp><&></xmp></span>
|
||||
<span><iframe><&></iframe></span>
|
||||
<span><noembed><&></noembed></span>
|
||||
|
@ -37,7 +38,7 @@
|
|||
<!-- TODO: template element -->
|
||||
<script>
|
||||
|
||||
var test_data = document.getElementById("test").getElementsByTagName("span");
|
||||
var test_data = document.getElementById("test").children;
|
||||
var expected = [
|
||||
["", "<span></span>"],
|
||||
["<a></a>", "<span><a></a></span>"],
|
||||
|
@ -58,6 +59,7 @@ var expected = [
|
|||
["\"", "<span>\"</span>"],
|
||||
["<style><&></style>", "<span><style><&></style></span>"],
|
||||
["<script type=\"test\"><&><\/script>", "<span><script type=\"test\"><&><\/script></span>"],
|
||||
["<&>", "<script type=\"test\"><&><\/script>"],
|
||||
["<xmp><&></xmp>", "<span><xmp><&></xmp></span>"],
|
||||
["<iframe><&></iframe>", "<span><iframe><&></iframe></span>"],
|
||||
["<noembed><&></noembed>", "<span><noembed><&></noembed></span>"],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue