mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Cargoify servo
This commit is contained in:
parent
db2f642c32
commit
c6ab60dbfc
1761 changed files with 8423 additions and 2294 deletions
|
@ -0,0 +1,8 @@
|
|||
[data_unicode_attr.html]
|
||||
type: testharness
|
||||
[dataset - SBCS]
|
||||
expected: FAIL
|
||||
|
||||
[dataset - UNICODE]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
[dataset-delete.html]
|
||||
type: testharness
|
||||
[Deleting element.dataset[\'foo\'\] should also remove an attribute with name \'data-foo\' should it exist.]
|
||||
expected: FAIL
|
||||
|
||||
[Deleting element.dataset[\'fooBar\'\] should also remove an attribute with name \'data-foo-bar\' should it exist.]
|
||||
expected: FAIL
|
||||
|
||||
[Deleting element.dataset[\'-\'\] should also remove an attribute with name \'data--\' should it exist.]
|
||||
expected: FAIL
|
||||
|
||||
[Deleting element.dataset[\'Foo\'\] should also remove an attribute with name \'data--foo\' should it exist.]
|
||||
expected: FAIL
|
||||
|
||||
[Deleting element.dataset[\'-foo\'\] should also remove an attribute with name \'data--foo\' should it exist.]
|
||||
expected: FAIL
|
||||
|
||||
[Deleting element.dataset[\'-Foo\'\] should also remove an attribute with name \'data---foo\' should it exist.]
|
||||
expected: FAIL
|
||||
|
||||
[Deleting element.dataset[\'\'\] should also remove an attribute with name \'data-\' should it exist.]
|
||||
expected: FAIL
|
||||
|
||||
[Deleting element.dataset[\'\xc3\xa0\'\] should also remove an attribute with name \'data-\xc3\xa0\' should it exist.]
|
||||
expected: FAIL
|
||||
|
||||
[Deleting element.dataset[\'foo\'\] should not throw if even if the element does now have an attribute with the name data-foo.]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
[dataset-enumeration.html]
|
||||
type: testharness
|
||||
[A dataset should be enumeratable.]
|
||||
expected: FAIL
|
||||
|
||||
[Only attributes who qualify as dataset properties should be enumeratable in the dataset.]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
[dataset-get.html]
|
||||
type: testharness
|
||||
[Getting element.dataset[\'foo\'\] should return the value of element.getAttribute(\'data-foo\')\']
|
||||
expected: FAIL
|
||||
|
||||
[Getting element.dataset[\'fooBar\'\] should return the value of element.getAttribute(\'data-foo-bar\')\']
|
||||
expected: FAIL
|
||||
|
||||
[Getting element.dataset[\'-\'\] should return the value of element.getAttribute(\'data--\')\']
|
||||
expected: FAIL
|
||||
|
||||
[Getting element.dataset[\'Foo\'\] should return the value of element.getAttribute(\'data--foo\')\']
|
||||
expected: FAIL
|
||||
|
||||
[Getting element.dataset[\'-Foo\'\] should return the value of element.getAttribute(\'data---foo\')\']
|
||||
expected: FAIL
|
||||
|
||||
[Getting element.dataset[\'foo\'\] should return the value of element.getAttribute(\'data-Foo\')\']
|
||||
expected: FAIL
|
||||
|
||||
[Getting element.dataset[\'\'\] should return the value of element.getAttribute(\'data-\')\']
|
||||
expected: FAIL
|
||||
|
||||
[Getting element.dataset[\'\xc3\xa0\'\] should return the value of element.getAttribute(\'data-\xc3\xa0\')\']
|
||||
expected: FAIL
|
||||
|
||||
[Getting element.dataset[\'toString\'\] should return the value of element.getAttribute(\'data-to-string\')\']
|
||||
expected: FAIL
|
||||
|
||||
[Tests that an attribute named dataFoo does not make an entry in the dataset DOMStringMap.]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
[dataset-prototype.html]
|
||||
type: testharness
|
||||
[An elements dataset property is an instance of a DOMStringMap]
|
||||
expected: FAIL
|
||||
|
||||
[Properties on Object.prototype should shine through.]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
[dataset-set.html]
|
||||
type: testharness
|
||||
[Setting element.dataset[\'foo\'\] should also change the value of element.getAttribute(\'data-foo\')\']
|
||||
expected: FAIL
|
||||
|
||||
[Setting element.dataset[\'fooBar\'\] should also change the value of element.getAttribute(\'data-foo-bar\')\']
|
||||
expected: FAIL
|
||||
|
||||
[Setting element.dataset[\'-\'\] should also change the value of element.getAttribute(\'data--\')\']
|
||||
expected: FAIL
|
||||
|
||||
[Setting element.dataset[\'Foo\'\] should also change the value of element.getAttribute(\'data--foo\')\']
|
||||
expected: FAIL
|
||||
|
||||
[Setting element.dataset[\'-Foo\'\] should also change the value of element.getAttribute(\'data---foo\')\']
|
||||
expected: FAIL
|
||||
|
||||
[Setting element.dataset[\'\'\] should also change the value of element.getAttribute(\'data-\')\']
|
||||
expected: FAIL
|
||||
|
||||
[Setting element.dataset[\'\xc3\xa0\'\] should also change the value of element.getAttribute(\'data-\xc3\xa0\')\']
|
||||
expected: FAIL
|
||||
|
||||
[Setting element.dataset[\'-foo\'\] should throw a SYNTAX_ERR\']
|
||||
expected: FAIL
|
||||
|
||||
[Setting element.dataset[\'foo \'\] should throw an INVALID_CHARACTER_ERR\']
|
||||
expected: FAIL
|
||||
|
||||
[Setting element.dataset[\'foo\xef\xa4\x80\'\] should throw an INVALID_CHARACTER_ERR\']
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
[dataset.html]
|
||||
type: testharness
|
||||
[Should return \'undefined\' before setting an attribute]
|
||||
expected: FAIL
|
||||
|
||||
[Should return \'value\' if that\'s the value]
|
||||
expected: FAIL
|
||||
|
||||
[Should return the empty string if that\'s the value]
|
||||
expected: FAIL
|
||||
|
||||
[Should return \'undefined\' after removing an attribute]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
[document-dir.html]
|
||||
type: testharness
|
||||
[Markup attribute]
|
||||
expected: FAIL
|
||||
|
||||
[Setting the idl attribute to a garbage value]
|
||||
expected: FAIL
|
||||
|
||||
[Setting the idl attribute to the empty string]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
[id-attribute.html]
|
||||
type: testharness
|
||||
[User agents must associate the element with an id value for purposes of CSS.]
|
||||
expected: FAIL
|
||||
|
||||
[Association for CSS is exact and therefore case-sensitive.]
|
||||
expected: FAIL
|
||||
|
||||
[Spaces are allowed in an id and still make an association.]
|
||||
expected: FAIL
|
||||
|
||||
[Non-ASCII is allowed in an id and still make an association for CSS.]
|
||||
expected: FAIL
|
||||
|
||||
[After setting id via id attribute, CSS association is via the new ID.]
|
||||
expected: FAIL
|
||||
|
||||
[After setting id via setAttribute attribute, CSS association is via the new ID.]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
[id-name-specialcase.html]
|
||||
type: testharness
|
||||
[id with digits only]
|
||||
expected: FAIL
|
||||
|
||||
[id start with digits]
|
||||
expected: FAIL
|
||||
|
||||
[id start with underscore]
|
||||
expected: FAIL
|
||||
|
||||
[id with punctuation only]
|
||||
expected: FAIL
|
||||
|
||||
[id with chinese character]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
[the-lang-attribute-001.html]
|
||||
type: testharness
|
||||
[The browser will recognize a language declared in a lang attribute on the html tag.]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
[the-lang-attribute-002.html]
|
||||
type: testharness
|
||||
[The browser will NOT recognize a language declared in an xml:lang attribute on the html tag.]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
[the-lang-attribute-003.html]
|
||||
type: testharness
|
||||
[The browser will recognize a language declared in the HTTP header, when there is no internal language declaration.]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
[the-lang-attribute-004.html]
|
||||
type: testharness
|
||||
[The browser will recognize a language declared in a meta element in the head using http-equiv=\'Content-Language\' content=\'..\' (with a single language tag value), when there is no other language declaration inside the document.]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
[the-lang-attribute-005.html]
|
||||
type: testharness
|
||||
[If there is a conflict between the language declarations in the HTTP header and the html element using lang, the browser will recognize the language declared in the html element.]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
[the-lang-attribute-006.html]
|
||||
type: testharness
|
||||
[If there is a conflict between the language declarations in the HTTP header and the Content-Language meta element, the UA will recognize the language declared in the meta element.]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
[the-lang-attribute-007.html]
|
||||
type: testharness
|
||||
[If there is a conflict between the language declared using lang in the html element and that in the meta element, the UA will recognize the language declared in the html element.]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
[the-lang-attribute-008.html]
|
||||
type: testharness
|
||||
[If an element contains a lang attribute with an empty value, the value of a lang attribute higher up the document tree will no longer be applied to the content of that element.]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
[the-lang-attribute-009.html]
|
||||
type: testharness
|
||||
[If the HTTP header contains a language declaration but the html element uses an empty lang value, the UA will not recognize the language declared in the HTTP header.]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
[the-lang-attribute-010.html]
|
||||
type: testharness
|
||||
[If the meta Content-Language element contains a language declaration but the html element uses an empty lang value, the UA will not recognize the language declared in the meta Content-Language element.]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
[the-translate-attribute-007.html]
|
||||
type: testharness
|
||||
[In the default case, ie. with no translate attribute in the page, javascript will detect the translation mode of text as translate-enabled.]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
[the-translate-attribute-008.html]
|
||||
type: testharness
|
||||
[If the translate attribute is set to yes, javascript will detect the translation mode of text as translate-enabled.]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
[the-translate-attribute-009.html]
|
||||
type: testharness
|
||||
[If the translate attribute is set to no, javascript will detect the translation mode of text as no-translate.]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
[the-translate-attribute-010.html]
|
||||
type: testharness
|
||||
[If the translate attribute is set to no, javascript will detect the translation mode of elements inside that element with no translate flag as no-translate.]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
[the-translate-attribute-011.html]
|
||||
type: testharness
|
||||
[If the translate attribute is set to yes on an element inside an element with the translate attribute set to no, javascript will detect the translation mode of text in the inner element as translate-enabled.]
|
||||
expected: FAIL
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
[the-translate-attribute-012.html]
|
||||
type: testharness
|
||||
[If the translate attribute is set to a null string, javascript will detect the translation mode of text as translate-enabled.]
|
||||
expected: FAIL
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue