diff --git a/components/script/dom/htmlelement.rs b/components/script/dom/htmlelement.rs
index 189589effd1..43c64599e0a 100644
--- a/components/script/dom/htmlelement.rs
+++ b/components/script/dom/htmlelement.rs
@@ -21,6 +21,8 @@ use dom::virtualmethods::VirtualMethods;
use servo_util::str::DOMString;
+use string_cache::Atom;
+
#[dom_struct]
pub struct HTMLElement {
element: Element
@@ -67,6 +69,9 @@ impl<'a> PrivateHTMLElementHelpers for JSRef<'a, HTMLElement> {
}
impl<'a> HTMLElementMethods for JSRef<'a, HTMLElement> {
+ make_getter!(Title)
+ make_setter!(SetTitle, "title")
+
event_handler!(click, GetOnclick, SetOnclick)
fn GetOnload(self) -> Option {
diff --git a/components/script/dom/webidls/HTMLElement.webidl b/components/script/dom/webidls/HTMLElement.webidl
index ebaa83a19bf..73eb13e3961 100644
--- a/components/script/dom/webidls/HTMLElement.webidl
+++ b/components/script/dom/webidls/HTMLElement.webidl
@@ -6,7 +6,7 @@
// http://www.whatwg.org/html/#htmlelement
interface HTMLElement : Element {
// metadata attributes
- // attribute DOMString title;
+ attribute DOMString title;
// attribute DOMString lang;
// attribute boolean translate;
// attribute DOMString dir;
diff --git a/tests/wpt/metadata/html/dom/interfaces.html.ini b/tests/wpt/metadata/html/dom/interfaces.html.ini
index bddfe2d01e1..a8f0ca528d2 100644
--- a/tests/wpt/metadata/html/dom/interfaces.html.ini
+++ b/tests/wpt/metadata/html/dom/interfaces.html.ini
@@ -1731,9 +1731,6 @@
[HTMLElement interface object length]
expected: FAIL
- [HTMLElement interface: attribute title]
- expected: FAIL
-
[HTMLElement interface: attribute lang]
expected: FAIL
@@ -2010,9 +2007,6 @@
[HTMLElement interface: attribute onwaiting]
expected: FAIL
- [HTMLElement interface: document.createElement("noscript") must inherit property "title" with the proper type (0)]
- expected: FAIL
-
[HTMLElement interface: document.createElement("noscript") must inherit property "lang" with the proper type (1)]
expected: FAIL
diff --git a/tests/wpt/metadata/html/dom/reflection-embedded.html.ini b/tests/wpt/metadata/html/dom/reflection-embedded.html.ini
index d1e4bd4c0eb..05b871f3b4c 100644
--- a/tests/wpt/metadata/html/dom/reflection-embedded.html.ini
+++ b/tests/wpt/metadata/html/dom/reflection-embedded.html.ini
@@ -1,134 +1,5 @@
[reflection-embedded.html]
type: testharness
- [img.title: typeof IDL attribute]
- expected: FAIL
-
- [img.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [img.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [img.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [img.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [img.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [img.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [img.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [img.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [img.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [img.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [img.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [img.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [img.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [img.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [img.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [img.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [img.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [img.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [img.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [img.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [img.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [img.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [img.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [img.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [img.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [img.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [img.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [img.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [img.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [img.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [img.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [img.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [img.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [img.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [img.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [img.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [img.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [img.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [img.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [img.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [img.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [img.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[img.lang: typeof IDL attribute]
expected: FAIL
@@ -1938,135 +1809,6 @@
[img.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [iframe.title: typeof IDL attribute]
- expected: FAIL
-
- [iframe.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [iframe.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [iframe.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [iframe.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [iframe.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [iframe.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [iframe.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [iframe.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [iframe.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [iframe.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [iframe.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [iframe.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [iframe.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [iframe.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [iframe.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [iframe.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [iframe.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [iframe.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [iframe.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [iframe.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [iframe.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [iframe.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [iframe.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [iframe.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [iframe.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [iframe.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [iframe.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [iframe.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [iframe.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [iframe.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [iframe.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [iframe.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [iframe.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [iframe.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [iframe.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [iframe.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [iframe.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [iframe.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [iframe.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [iframe.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [iframe.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [iframe.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[iframe.lang: typeof IDL attribute]
expected: FAIL
@@ -4692,135 +4434,6 @@
[iframe.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [embed.title: typeof IDL attribute]
- expected: FAIL
-
- [embed.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [embed.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [embed.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [embed.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [embed.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [embed.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [embed.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [embed.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [embed.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [embed.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [embed.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [embed.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [embed.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [embed.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [embed.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [embed.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [embed.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [embed.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [embed.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [embed.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [embed.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [embed.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [embed.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [embed.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [embed.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [embed.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [embed.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [embed.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [embed.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [embed.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [embed.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [embed.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [embed.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [embed.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [embed.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [embed.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [embed.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [embed.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [embed.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [embed.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [embed.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [embed.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[embed.lang: typeof IDL attribute]
expected: FAIL
@@ -6606,135 +6219,6 @@
[embed.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [object.title: typeof IDL attribute]
- expected: FAIL
-
- [object.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [object.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [object.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [object.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [object.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [object.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [object.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [object.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [object.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [object.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [object.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [object.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [object.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [object.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [object.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [object.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [object.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [object.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [object.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [object.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [object.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [object.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [object.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [object.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [object.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [object.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [object.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [object.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [object.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [object.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [object.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [object.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [object.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [object.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [object.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [object.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [object.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [object.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [object.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [object.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [object.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [object.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[object.lang: typeof IDL attribute]
expected: FAIL
@@ -9918,135 +9402,6 @@
[object.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [param.title: typeof IDL attribute]
- expected: FAIL
-
- [param.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [param.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [param.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [param.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [param.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [param.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [param.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [param.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [param.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [param.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [param.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [param.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [param.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [param.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [param.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [param.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [param.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [param.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [param.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [param.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [param.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [param.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [param.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [param.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [param.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [param.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [param.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [param.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [param.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [param.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [param.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [param.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [param.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [param.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [param.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [param.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [param.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [param.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [param.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [param.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [param.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [param.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[param.lang: typeof IDL attribute]
expected: FAIL
@@ -11538,135 +10893,6 @@
[param.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [video.title: typeof IDL attribute]
- expected: FAIL
-
- [video.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [video.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [video.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [video.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [video.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [video.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [video.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [video.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [video.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [video.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [video.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [video.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [video.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [video.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [video.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [video.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [video.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [video.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [video.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [video.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [video.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [video.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [video.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [video.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [video.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [video.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [video.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [video.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [video.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [video.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [video.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [video.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [video.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [video.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [video.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [video.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [video.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [video.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [video.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [video.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [video.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [video.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[video.lang: typeof IDL attribute]
expected: FAIL
@@ -14238,135 +13464,6 @@
[video.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [audio.title: typeof IDL attribute]
- expected: FAIL
-
- [audio.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [audio.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [audio.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [audio.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [audio.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [audio.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [audio.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [audio.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [audio.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [audio.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [audio.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [audio.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [audio.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [audio.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [audio.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [audio.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [audio.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [audio.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [audio.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [audio.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [audio.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [audio.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [audio.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [audio.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [audio.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [audio.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [audio.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [audio.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [audio.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [audio.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [audio.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [audio.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [audio.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [audio.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [audio.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [audio.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [audio.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [audio.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [audio.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [audio.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [audio.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [audio.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[audio.lang: typeof IDL attribute]
expected: FAIL
@@ -16401,135 +15498,6 @@
[audio.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [source.title: typeof IDL attribute]
- expected: FAIL
-
- [source.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [source.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [source.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [source.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [source.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [source.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [source.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [source.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [source.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [source.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [source.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [source.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [source.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [source.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [source.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [source.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [source.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [source.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [source.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [source.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [source.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [source.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [source.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [source.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [source.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [source.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [source.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [source.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [source.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [source.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [source.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [source.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [source.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [source.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [source.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [source.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [source.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [source.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [source.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [source.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [source.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [source.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[source.lang: typeof IDL attribute]
expected: FAIL
@@ -17928,135 +16896,6 @@
[source.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [track.title: typeof IDL attribute]
- expected: FAIL
-
- [track.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [track.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [track.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [track.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [track.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [track.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [track.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [track.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [track.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [track.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [track.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [track.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [track.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [track.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [track.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [track.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [track.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [track.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [track.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [track.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [track.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [track.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [track.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [track.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [track.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [track.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [track.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [track.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [track.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [track.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [track.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [track.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [track.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [track.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [track.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [track.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [track.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [track.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [track.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [track.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [track.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [track.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[track.lang: typeof IDL attribute]
expected: FAIL
@@ -19908,135 +18747,6 @@
[track.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [canvas.title: typeof IDL attribute]
- expected: FAIL
-
- [canvas.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [canvas.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [canvas.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [canvas.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [canvas.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [canvas.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [canvas.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [canvas.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [canvas.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [canvas.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [canvas.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [canvas.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [canvas.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [canvas.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [canvas.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [canvas.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [canvas.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [canvas.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [canvas.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [canvas.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [canvas.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [canvas.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [canvas.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [canvas.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [canvas.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [canvas.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [canvas.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [canvas.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [canvas.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [canvas.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [canvas.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [canvas.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [canvas.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [canvas.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [canvas.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [canvas.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [canvas.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [canvas.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [canvas.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [canvas.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [canvas.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [canvas.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[canvas.lang: typeof IDL attribute]
expected: FAIL
@@ -21036,135 +19746,6 @@
[canvas.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [map.title: typeof IDL attribute]
- expected: FAIL
-
- [map.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [map.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [map.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [map.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [map.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [map.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [map.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [map.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [map.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [map.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [map.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [map.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [map.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [map.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [map.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [map.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [map.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [map.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [map.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [map.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [map.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [map.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [map.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [map.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [map.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [map.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [map.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [map.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [map.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [map.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [map.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [map.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [map.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [map.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [map.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [map.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [map.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [map.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [map.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [map.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [map.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [map.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[map.lang: typeof IDL attribute]
expected: FAIL
@@ -22269,135 +20850,6 @@
[map.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [area.title: typeof IDL attribute]
- expected: FAIL
-
- [area.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [area.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [area.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [area.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [area.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [area.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [area.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [area.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [area.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [area.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [area.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [area.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [area.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [area.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [area.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [area.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [area.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [area.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [area.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [area.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [area.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [area.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [area.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [area.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [area.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [area.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [area.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [area.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [area.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [area.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [area.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [area.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [area.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [area.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [area.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [area.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [area.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [area.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [area.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [area.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [area.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [area.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[area.lang: typeof IDL attribute]
expected: FAIL
diff --git a/tests/wpt/metadata/html/dom/reflection-forms.html.ini b/tests/wpt/metadata/html/dom/reflection-forms.html.ini
index 2722ff4e4ab..a8f88f767b7 100644
--- a/tests/wpt/metadata/html/dom/reflection-forms.html.ini
+++ b/tests/wpt/metadata/html/dom/reflection-forms.html.ini
@@ -1,134 +1,5 @@
[reflection-forms.html]
type: testharness
- [form.title: typeof IDL attribute]
- expected: FAIL
-
- [form.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [form.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [form.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [form.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [form.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [form.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [form.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [form.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [form.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [form.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [form.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [form.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [form.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [form.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [form.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [form.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [form.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [form.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [form.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [form.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [form.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [form.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [form.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [form.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [form.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [form.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [form.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [form.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [form.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [form.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [form.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [form.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [form.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [form.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [form.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [form.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [form.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [form.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [form.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [form.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [form.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [form.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[form.lang: typeof IDL attribute]
expected: FAIL
@@ -1104,135 +975,6 @@
[form.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [fieldset.title: typeof IDL attribute]
- expected: FAIL
-
- [fieldset.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [fieldset.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [fieldset.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [fieldset.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [fieldset.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [fieldset.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [fieldset.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [fieldset.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [fieldset.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [fieldset.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [fieldset.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [fieldset.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [fieldset.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [fieldset.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [fieldset.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [fieldset.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [fieldset.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [fieldset.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [fieldset.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [fieldset.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [fieldset.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [fieldset.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [fieldset.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [fieldset.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [fieldset.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [fieldset.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [fieldset.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [fieldset.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [fieldset.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [fieldset.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [fieldset.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [fieldset.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [fieldset.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [fieldset.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [fieldset.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [fieldset.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [fieldset.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [fieldset.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [fieldset.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [fieldset.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [fieldset.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [fieldset.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[fieldset.lang: typeof IDL attribute]
expected: FAIL
@@ -2337,135 +2079,6 @@
[fieldset.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [legend.title: typeof IDL attribute]
- expected: FAIL
-
- [legend.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [legend.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [legend.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [legend.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [legend.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [legend.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [legend.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [legend.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [legend.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [legend.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [legend.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [legend.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [legend.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [legend.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [legend.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [legend.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [legend.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [legend.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [legend.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [legend.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [legend.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [legend.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [legend.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [legend.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [legend.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [legend.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [legend.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [legend.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [legend.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [legend.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [legend.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [legend.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [legend.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [legend.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [legend.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [legend.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [legend.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [legend.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [legend.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [legend.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [legend.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [legend.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[legend.lang: typeof IDL attribute]
expected: FAIL
@@ -3570,135 +3183,6 @@
[legend.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [label.title: typeof IDL attribute]
- expected: FAIL
-
- [label.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [label.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [label.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [label.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [label.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [label.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [label.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [label.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [label.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [label.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [label.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [label.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [label.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [label.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [label.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [label.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [label.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [label.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [label.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [label.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [label.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [label.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [label.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [label.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [label.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [label.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [label.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [label.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [label.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [label.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [label.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [label.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [label.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [label.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [label.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [label.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [label.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [label.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [label.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [label.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [label.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [label.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[label.lang: typeof IDL attribute]
expected: FAIL
@@ -4803,135 +4287,6 @@
[label.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [input.title: typeof IDL attribute]
- expected: FAIL
-
- [input.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [input.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [input.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [input.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [input.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [input.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [input.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [input.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [input.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [input.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [input.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [input.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [input.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [input.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [input.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [input.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [input.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [input.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [input.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [input.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [input.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [input.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [input.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [input.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [input.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [input.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [input.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [input.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [input.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [input.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [input.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [input.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [input.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [input.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [input.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [input.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [input.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [input.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [input.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [input.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [input.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [input.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[input.lang: typeof IDL attribute]
expected: FAIL
@@ -8967,135 +8322,6 @@
[input.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [button.title: typeof IDL attribute]
- expected: FAIL
-
- [button.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [button.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [button.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [button.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [button.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [button.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [button.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [button.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [button.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [button.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [button.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [button.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [button.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [button.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [button.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [button.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [button.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [button.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [button.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [button.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [button.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [button.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [button.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [button.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [button.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [button.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [button.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [button.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [button.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [button.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [button.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [button.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [button.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [button.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [button.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [button.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [button.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [button.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [button.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [button.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [button.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [button.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[button.lang: typeof IDL attribute]
expected: FAIL
@@ -11196,135 +10422,6 @@
[button.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [select.title: typeof IDL attribute]
- expected: FAIL
-
- [select.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [select.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [select.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [select.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [select.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [select.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [select.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [select.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [select.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [select.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [select.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [select.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [select.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [select.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [select.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [select.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [select.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [select.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [select.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [select.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [select.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [select.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [select.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [select.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [select.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [select.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [select.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [select.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [select.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [select.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [select.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [select.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [select.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [select.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [select.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [select.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [select.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [select.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [select.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [select.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [select.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [select.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[select.lang: typeof IDL attribute]
expected: FAIL
@@ -12939,135 +12036,6 @@
[select.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [datalist.title: typeof IDL attribute]
- expected: FAIL
-
- [datalist.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [datalist.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [datalist.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [datalist.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [datalist.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [datalist.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [datalist.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [datalist.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [datalist.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [datalist.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [datalist.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [datalist.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [datalist.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [datalist.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [datalist.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [datalist.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [datalist.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [datalist.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [datalist.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [datalist.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [datalist.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [datalist.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [datalist.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [datalist.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [datalist.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [datalist.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [datalist.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [datalist.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [datalist.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [datalist.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [datalist.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [datalist.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [datalist.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [datalist.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [datalist.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [datalist.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [datalist.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [datalist.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [datalist.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [datalist.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [datalist.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [datalist.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[datalist.lang: typeof IDL attribute]
expected: FAIL
@@ -14043,135 +13011,6 @@
[datalist.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [optgroup.title: typeof IDL attribute]
- expected: FAIL
-
- [optgroup.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [optgroup.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [optgroup.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [optgroup.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [optgroup.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [optgroup.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [optgroup.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [optgroup.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [optgroup.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [optgroup.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [optgroup.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [optgroup.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [optgroup.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [optgroup.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [optgroup.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [optgroup.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [optgroup.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [optgroup.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [optgroup.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [optgroup.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [optgroup.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [optgroup.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [optgroup.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [optgroup.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [optgroup.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [optgroup.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [optgroup.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [optgroup.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [optgroup.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [optgroup.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [optgroup.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [optgroup.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [optgroup.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [optgroup.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [optgroup.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [optgroup.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [optgroup.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [optgroup.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [optgroup.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [optgroup.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [optgroup.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [optgroup.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[optgroup.lang: typeof IDL attribute]
expected: FAIL
@@ -15276,135 +14115,6 @@
[optgroup.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [option.title: typeof IDL attribute]
- expected: FAIL
-
- [option.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [option.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [option.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [option.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [option.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [option.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [option.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [option.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [option.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [option.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [option.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [option.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [option.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [option.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [option.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [option.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [option.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [option.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [option.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [option.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [option.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [option.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [option.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [option.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [option.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [option.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [option.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [option.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [option.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [option.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [option.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [option.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [option.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [option.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [option.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [option.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [option.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [option.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [option.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [option.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [option.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [option.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[option.lang: typeof IDL attribute]
expected: FAIL
@@ -16662,135 +15372,6 @@
[option.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [textarea.title: typeof IDL attribute]
- expected: FAIL
-
- [textarea.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [textarea.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [textarea.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [textarea.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [textarea.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [textarea.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [textarea.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [textarea.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [textarea.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [textarea.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [textarea.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [textarea.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [textarea.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [textarea.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [textarea.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [textarea.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [textarea.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [textarea.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [textarea.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [textarea.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [textarea.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [textarea.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [textarea.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [textarea.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [textarea.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [textarea.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [textarea.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [textarea.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [textarea.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [textarea.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [textarea.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [textarea.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [textarea.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [textarea.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [textarea.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [textarea.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [textarea.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [textarea.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [textarea.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [textarea.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [textarea.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [textarea.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[textarea.lang: typeof IDL attribute]
expected: FAIL
@@ -19734,135 +18315,6 @@
[textarea.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [keygen.title: typeof IDL attribute]
- expected: FAIL
-
- [keygen.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [keygen.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [keygen.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [keygen.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [keygen.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [keygen.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [keygen.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [keygen.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [keygen.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [keygen.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [keygen.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [keygen.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [keygen.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [keygen.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [keygen.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [keygen.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [keygen.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [keygen.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [keygen.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [keygen.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [keygen.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [keygen.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [keygen.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [keygen.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [keygen.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [keygen.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [keygen.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [keygen.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [keygen.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [keygen.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [keygen.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [keygen.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [keygen.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [keygen.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [keygen.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [keygen.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [keygen.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [keygen.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [keygen.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [keygen.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [keygen.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [keygen.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[keygen.lang: typeof IDL attribute]
expected: FAIL
@@ -21378,135 +19830,6 @@
[keygen.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [output.title: typeof IDL attribute]
- expected: FAIL
-
- [output.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [output.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [output.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [output.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [output.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [output.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [output.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [output.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [output.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [output.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [output.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [output.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [output.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [output.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [output.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [output.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [output.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [output.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [output.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [output.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [output.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [output.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [output.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [output.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [output.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [output.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [output.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [output.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [output.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [output.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [output.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [output.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [output.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [output.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [output.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [output.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [output.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [output.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [output.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [output.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [output.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [output.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[output.lang: typeof IDL attribute]
expected: FAIL
@@ -22611,135 +20934,6 @@
[output.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [progress.title: typeof IDL attribute]
- expected: FAIL
-
- [progress.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [progress.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [progress.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [progress.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [progress.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [progress.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [progress.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [progress.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [progress.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [progress.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [progress.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [progress.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [progress.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [progress.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [progress.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [progress.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [progress.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [progress.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [progress.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [progress.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [progress.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [progress.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [progress.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [progress.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [progress.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [progress.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [progress.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [progress.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [progress.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [progress.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [progress.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [progress.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [progress.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [progress.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [progress.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [progress.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [progress.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [progress.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [progress.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [progress.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [progress.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [progress.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[progress.lang: typeof IDL attribute]
expected: FAIL
@@ -23715,135 +21909,6 @@
[progress.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [meter.title: typeof IDL attribute]
- expected: FAIL
-
- [meter.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [meter.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [meter.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [meter.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [meter.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [meter.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [meter.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [meter.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [meter.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [meter.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [meter.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [meter.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [meter.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [meter.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [meter.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [meter.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [meter.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [meter.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [meter.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [meter.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [meter.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [meter.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [meter.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [meter.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [meter.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [meter.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [meter.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [meter.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [meter.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [meter.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [meter.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [meter.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [meter.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [meter.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [meter.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [meter.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [meter.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [meter.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [meter.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [meter.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [meter.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [meter.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[meter.lang: typeof IDL attribute]
expected: FAIL
diff --git a/tests/wpt/metadata/html/dom/reflection-grouping.html.ini b/tests/wpt/metadata/html/dom/reflection-grouping.html.ini
index 30a67717e66..ba6f7e1d1dc 100644
--- a/tests/wpt/metadata/html/dom/reflection-grouping.html.ini
+++ b/tests/wpt/metadata/html/dom/reflection-grouping.html.ini
@@ -1,134 +1,5 @@
[reflection-grouping.html]
type: testharness
- [p.title: typeof IDL attribute]
- expected: FAIL
-
- [p.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [p.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [p.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [p.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [p.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [p.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [p.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [p.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [p.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [p.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [p.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [p.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [p.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [p.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [p.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [p.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [p.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [p.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [p.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [p.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [p.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [p.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [p.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [p.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [p.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [p.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [p.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [p.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [p.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [p.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [p.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [p.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [p.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [p.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [p.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [p.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [p.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [p.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [p.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [p.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [p.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [p.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[p.lang: typeof IDL attribute]
expected: FAIL
@@ -1233,135 +1104,6 @@
[p.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [hr.title: typeof IDL attribute]
- expected: FAIL
-
- [hr.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [hr.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [hr.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [hr.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [hr.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [hr.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [hr.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [hr.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [hr.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [hr.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [hr.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [hr.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [hr.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [hr.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [hr.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [hr.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [hr.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [hr.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [hr.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [hr.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [hr.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [hr.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [hr.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [hr.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [hr.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [hr.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [hr.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [hr.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [hr.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [hr.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [hr.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [hr.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [hr.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [hr.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [hr.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [hr.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [hr.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [hr.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [hr.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [hr.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [hr.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [hr.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[hr.lang: typeof IDL attribute]
expected: FAIL
@@ -2961,135 +2703,6 @@
[hr.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [pre.title: typeof IDL attribute]
- expected: FAIL
-
- [pre.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [pre.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [pre.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [pre.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [pre.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [pre.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [pre.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [pre.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [pre.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [pre.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [pre.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [pre.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [pre.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [pre.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [pre.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [pre.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [pre.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [pre.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [pre.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [pre.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [pre.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [pre.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [pre.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [pre.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [pre.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [pre.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [pre.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [pre.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [pre.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [pre.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [pre.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [pre.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [pre.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [pre.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [pre.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [pre.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [pre.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [pre.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [pre.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [pre.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [pre.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [pre.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[pre.lang: typeof IDL attribute]
expected: FAIL
@@ -4248,135 +3861,6 @@
[pre.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [blockquote.title: typeof IDL attribute]
- expected: FAIL
-
- [blockquote.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [blockquote.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [blockquote.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [blockquote.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [blockquote.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [blockquote.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [blockquote.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [blockquote.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [blockquote.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [blockquote.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [blockquote.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [blockquote.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [blockquote.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [blockquote.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [blockquote.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [blockquote.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [blockquote.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [blockquote.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [blockquote.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [blockquote.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [blockquote.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [blockquote.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [blockquote.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [blockquote.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [blockquote.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [blockquote.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [blockquote.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [blockquote.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [blockquote.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [blockquote.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [blockquote.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [blockquote.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [blockquote.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [blockquote.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [blockquote.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [blockquote.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [blockquote.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [blockquote.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [blockquote.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [blockquote.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [blockquote.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [blockquote.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[blockquote.lang: typeof IDL attribute]
expected: FAIL
@@ -5517,135 +5001,6 @@
[blockquote.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [ol.title: typeof IDL attribute]
- expected: FAIL
-
- [ol.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [ol.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [ol.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [ol.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [ol.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [ol.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [ol.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [ol.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [ol.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [ol.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [ol.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [ol.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [ol.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [ol.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [ol.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [ol.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [ol.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [ol.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [ol.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [ol.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [ol.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [ol.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [ol.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [ol.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [ol.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [ol.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [ol.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [ol.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [ol.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [ol.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [ol.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [ol.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [ol.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [ol.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [ol.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [ol.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [ol.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [ol.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [ol.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [ol.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [ol.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [ol.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[ol.lang: typeof IDL attribute]
expected: FAIL
@@ -7149,135 +6504,6 @@
[ol.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [ul.title: typeof IDL attribute]
- expected: FAIL
-
- [ul.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [ul.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [ul.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [ul.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [ul.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [ul.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [ul.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [ul.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [ul.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [ul.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [ul.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [ul.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [ul.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [ul.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [ul.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [ul.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [ul.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [ul.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [ul.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [ul.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [ul.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [ul.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [ul.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [ul.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [ul.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [ul.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [ul.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [ul.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [ul.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [ul.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [ul.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [ul.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [ul.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [ul.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [ul.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [ul.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [ul.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [ul.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [ul.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [ul.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [ul.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [ul.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[ul.lang: typeof IDL attribute]
expected: FAIL
@@ -8490,135 +7716,6 @@
[ul.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [li.title: typeof IDL attribute]
- expected: FAIL
-
- [li.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [li.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [li.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [li.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [li.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [li.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [li.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [li.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [li.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [li.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [li.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [li.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [li.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [li.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [li.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [li.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [li.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [li.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [li.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [li.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [li.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [li.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [li.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [li.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [li.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [li.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [li.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [li.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [li.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [li.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [li.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [li.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [li.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [li.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [li.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [li.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [li.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [li.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [li.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [li.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [li.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [li.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[li.lang: typeof IDL attribute]
expected: FAIL
@@ -9906,135 +9003,6 @@
[li.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [dl.title: typeof IDL attribute]
- expected: FAIL
-
- [dl.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [dl.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [dl.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [dl.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [dl.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [dl.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [dl.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [dl.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [dl.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [dl.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [dl.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [dl.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [dl.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [dl.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [dl.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [dl.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [dl.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [dl.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [dl.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [dl.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [dl.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [dl.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [dl.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [dl.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [dl.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [dl.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [dl.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [dl.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [dl.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [dl.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [dl.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [dl.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [dl.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [dl.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [dl.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [dl.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [dl.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [dl.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [dl.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [dl.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [dl.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [dl.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[dl.lang: typeof IDL attribute]
expected: FAIL
@@ -11118,135 +10086,6 @@
[dl.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [dt.title: typeof IDL attribute]
- expected: FAIL
-
- [dt.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [dt.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [dt.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [dt.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [dt.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [dt.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [dt.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [dt.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [dt.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [dt.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [dt.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [dt.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [dt.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [dt.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [dt.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [dt.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [dt.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [dt.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [dt.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [dt.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [dt.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [dt.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [dt.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [dt.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [dt.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [dt.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [dt.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [dt.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [dt.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [dt.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [dt.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [dt.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [dt.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [dt.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [dt.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [dt.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [dt.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [dt.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [dt.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [dt.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [dt.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [dt.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[dt.lang: typeof IDL attribute]
expected: FAIL
@@ -12222,135 +11061,6 @@
[dt.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [dd.title: typeof IDL attribute]
- expected: FAIL
-
- [dd.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [dd.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [dd.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [dd.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [dd.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [dd.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [dd.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [dd.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [dd.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [dd.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [dd.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [dd.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [dd.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [dd.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [dd.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [dd.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [dd.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [dd.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [dd.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [dd.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [dd.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [dd.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [dd.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [dd.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [dd.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [dd.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [dd.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [dd.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [dd.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [dd.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [dd.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [dd.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [dd.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [dd.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [dd.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [dd.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [dd.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [dd.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [dd.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [dd.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [dd.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [dd.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[dd.lang: typeof IDL attribute]
expected: FAIL
@@ -13326,135 +12036,6 @@
[dd.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [figure.title: typeof IDL attribute]
- expected: FAIL
-
- [figure.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [figure.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [figure.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [figure.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [figure.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [figure.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [figure.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [figure.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [figure.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [figure.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [figure.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [figure.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [figure.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [figure.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [figure.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [figure.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [figure.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [figure.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [figure.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [figure.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [figure.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [figure.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [figure.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [figure.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [figure.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [figure.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [figure.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [figure.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [figure.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [figure.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [figure.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [figure.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [figure.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [figure.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [figure.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [figure.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [figure.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [figure.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [figure.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [figure.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [figure.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [figure.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[figure.lang: typeof IDL attribute]
expected: FAIL
@@ -14430,135 +13011,6 @@
[figure.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [figcaption.title: typeof IDL attribute]
- expected: FAIL
-
- [figcaption.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [figcaption.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [figcaption.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [figcaption.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [figcaption.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [figcaption.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [figcaption.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [figcaption.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [figcaption.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [figcaption.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [figcaption.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [figcaption.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [figcaption.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [figcaption.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [figcaption.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [figcaption.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [figcaption.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [figcaption.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [figcaption.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [figcaption.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [figcaption.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [figcaption.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [figcaption.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [figcaption.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [figcaption.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [figcaption.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [figcaption.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [figcaption.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [figcaption.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [figcaption.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [figcaption.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [figcaption.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [figcaption.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [figcaption.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [figcaption.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [figcaption.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [figcaption.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [figcaption.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [figcaption.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [figcaption.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [figcaption.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [figcaption.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[figcaption.lang: typeof IDL attribute]
expected: FAIL
@@ -15534,135 +13986,6 @@
[figcaption.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [main.title: typeof IDL attribute]
- expected: FAIL
-
- [main.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [main.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [main.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [main.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [main.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [main.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [main.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [main.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [main.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [main.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [main.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [main.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [main.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [main.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [main.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [main.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [main.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [main.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [main.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [main.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [main.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [main.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [main.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [main.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [main.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [main.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [main.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [main.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [main.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [main.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [main.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [main.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [main.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [main.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [main.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [main.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [main.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [main.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [main.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [main.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [main.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [main.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[main.lang: typeof IDL attribute]
expected: FAIL
@@ -16638,135 +14961,6 @@
[main.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [div.title: typeof IDL attribute]
- expected: FAIL
-
- [div.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [div.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [div.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [div.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [div.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [div.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [div.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [div.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [div.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [div.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [div.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [div.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [div.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [div.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [div.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [div.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [div.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [div.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [div.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [div.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [div.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [div.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [div.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [div.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [div.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [div.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [div.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [div.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [div.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [div.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [div.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [div.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [div.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [div.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [div.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [div.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [div.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [div.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [div.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [div.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [div.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [div.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[div.lang: typeof IDL attribute]
expected: FAIL
diff --git a/tests/wpt/metadata/html/dom/reflection-metadata.html.ini b/tests/wpt/metadata/html/dom/reflection-metadata.html.ini
index c6a6787e7a7..996c66e678f 100644
--- a/tests/wpt/metadata/html/dom/reflection-metadata.html.ini
+++ b/tests/wpt/metadata/html/dom/reflection-metadata.html.ini
@@ -1,134 +1,5 @@
[reflection-metadata.html]
type: testharness
- [head.title: typeof IDL attribute]
- expected: FAIL
-
- [head.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [head.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [head.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [head.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [head.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [head.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [head.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [head.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [head.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [head.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [head.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [head.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [head.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [head.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [head.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [head.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [head.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [head.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [head.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [head.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [head.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [head.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [head.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [head.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [head.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [head.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [head.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [head.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [head.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [head.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [head.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [head.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [head.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [head.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [head.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [head.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [head.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [head.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [head.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [head.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [head.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [head.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[head.lang: typeof IDL attribute]
expected: FAIL
@@ -1089,135 +960,6 @@
[head.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [title.title: typeof IDL attribute]
- expected: FAIL
-
- [title.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [title.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [title.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [title.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [title.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [title.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [title.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [title.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [title.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [title.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [title.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [title.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [title.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [title.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [title.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [title.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [title.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [title.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [title.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [title.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [title.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [title.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [title.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [title.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [title.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [title.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [title.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [title.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [title.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [title.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [title.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [title.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [title.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [title.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [title.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [title.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [title.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [title.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [title.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [title.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [title.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [title.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[title.lang: typeof IDL attribute]
expected: FAIL
@@ -2178,135 +1920,6 @@
[title.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [base.title: typeof IDL attribute]
- expected: FAIL
-
- [base.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [base.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [base.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [base.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [base.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [base.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [base.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [base.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [base.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [base.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [base.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [base.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [base.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [base.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [base.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [base.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [base.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [base.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [base.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [base.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [base.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [base.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [base.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [base.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [base.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [base.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [base.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [base.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [base.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [base.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [base.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [base.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [base.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [base.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [base.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [base.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [base.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [base.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [base.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [base.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [base.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [base.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[base.lang: typeof IDL attribute]
expected: FAIL
@@ -3396,135 +3009,6 @@
[base.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [link.title: typeof IDL attribute]
- expected: FAIL
-
- [link.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [link.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [link.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [link.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [link.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [link.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [link.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [link.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [link.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [link.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [link.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [link.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [link.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [link.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [link.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [link.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [link.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [link.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [link.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [link.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [link.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [link.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [link.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [link.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [link.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [link.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [link.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [link.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [link.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [link.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [link.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [link.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [link.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [link.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [link.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [link.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [link.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [link.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [link.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [link.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [link.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [link.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[link.lang: typeof IDL attribute]
expected: FAIL
@@ -5772,135 +5256,6 @@
[link.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [meta.title: typeof IDL attribute]
- expected: FAIL
-
- [meta.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [meta.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [meta.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [meta.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [meta.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [meta.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [meta.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [meta.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [meta.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [meta.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [meta.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [meta.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [meta.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [meta.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [meta.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [meta.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [meta.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [meta.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [meta.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [meta.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [meta.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [meta.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [meta.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [meta.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [meta.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [meta.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [meta.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [meta.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [meta.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [meta.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [meta.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [meta.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [meta.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [meta.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [meta.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [meta.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [meta.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [meta.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [meta.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [meta.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [meta.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [meta.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[meta.lang: typeof IDL attribute]
expected: FAIL
@@ -7377,135 +6732,6 @@
[meta.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [style.title: typeof IDL attribute]
- expected: FAIL
-
- [style.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [style.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [style.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [style.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [style.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [style.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [style.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [style.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [style.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [style.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [style.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [style.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [style.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [style.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [style.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [style.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [style.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [style.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [style.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [style.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [style.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [style.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [style.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [style.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [style.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [style.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [style.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [style.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [style.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [style.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [style.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [style.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [style.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [style.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [style.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [style.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [style.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [style.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [style.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [style.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [style.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [style.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[style.lang: typeof IDL attribute]
expected: FAIL
diff --git a/tests/wpt/metadata/html/dom/reflection-misc.html.ini b/tests/wpt/metadata/html/dom/reflection-misc.html.ini
index a969e1bda86..fd11be9723b 100644
--- a/tests/wpt/metadata/html/dom/reflection-misc.html.ini
+++ b/tests/wpt/metadata/html/dom/reflection-misc.html.ini
@@ -1,134 +1,5 @@
[reflection-misc.html]
type: testharness
- [html.title: typeof IDL attribute]
- expected: FAIL
-
- [html.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [html.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [html.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [html.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [html.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [html.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [html.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [html.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [html.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [html.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [html.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [html.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [html.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [html.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [html.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [html.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [html.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [html.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [html.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [html.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [html.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [html.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [html.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [html.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [html.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [html.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [html.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [html.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [html.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [html.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [html.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [html.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [html.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [html.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [html.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [html.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [html.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [html.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [html.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [html.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [html.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [html.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[html.lang: typeof IDL attribute]
expected: FAIL
@@ -1233,135 +1104,6 @@
[html.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [script.title: typeof IDL attribute]
- expected: FAIL
-
- [script.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [script.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [script.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [script.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [script.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [script.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [script.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [script.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [script.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [script.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [script.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [script.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [script.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [script.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [script.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [script.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [script.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [script.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [script.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [script.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [script.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [script.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [script.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [script.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [script.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [script.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [script.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [script.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [script.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [script.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [script.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [script.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [script.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [script.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [script.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [script.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [script.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [script.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [script.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [script.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [script.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [script.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[script.lang: typeof IDL attribute]
expected: FAIL
@@ -3081,135 +2823,6 @@
[script.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [noscript.title: typeof IDL attribute]
- expected: FAIL
-
- [noscript.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [noscript.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [noscript.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [noscript.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [noscript.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [noscript.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [noscript.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [noscript.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [noscript.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [noscript.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [noscript.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [noscript.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [noscript.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [noscript.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [noscript.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [noscript.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [noscript.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [noscript.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [noscript.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [noscript.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [noscript.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [noscript.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [noscript.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [noscript.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [noscript.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [noscript.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [noscript.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [noscript.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [noscript.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [noscript.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [noscript.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [noscript.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [noscript.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [noscript.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [noscript.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [noscript.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [noscript.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [noscript.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [noscript.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [noscript.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [noscript.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [noscript.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[noscript.lang: typeof IDL attribute]
expected: FAIL
@@ -4185,135 +3798,6 @@
[noscript.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [ins.title: typeof IDL attribute]
- expected: FAIL
-
- [ins.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [ins.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [ins.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [ins.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [ins.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [ins.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [ins.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [ins.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [ins.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [ins.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [ins.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [ins.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [ins.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [ins.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [ins.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [ins.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [ins.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [ins.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [ins.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [ins.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [ins.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [ins.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [ins.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [ins.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [ins.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [ins.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [ins.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [ins.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [ins.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [ins.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [ins.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [ins.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [ins.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [ins.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [ins.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [ins.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [ins.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [ins.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [ins.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [ins.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [ins.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [ins.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[ins.lang: typeof IDL attribute]
expected: FAIL
@@ -5583,135 +5067,6 @@
[ins.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [del.title: typeof IDL attribute]
- expected: FAIL
-
- [del.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [del.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [del.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [del.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [del.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [del.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [del.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [del.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [del.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [del.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [del.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [del.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [del.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [del.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [del.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [del.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [del.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [del.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [del.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [del.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [del.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [del.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [del.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [del.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [del.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [del.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [del.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [del.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [del.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [del.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [del.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [del.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [del.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [del.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [del.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [del.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [del.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [del.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [del.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [del.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [del.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [del.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[del.lang: typeof IDL attribute]
expected: FAIL
@@ -6981,135 +6336,6 @@
[del.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [details.title: typeof IDL attribute]
- expected: FAIL
-
- [details.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [details.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [details.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [details.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [details.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [details.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [details.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [details.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [details.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [details.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [details.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [details.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [details.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [details.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [details.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [details.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [details.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [details.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [details.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [details.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [details.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [details.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [details.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [details.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [details.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [details.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [details.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [details.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [details.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [details.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [details.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [details.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [details.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [details.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [details.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [details.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [details.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [details.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [details.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [details.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [details.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [details.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[details.lang: typeof IDL attribute]
expected: FAIL
@@ -8193,135 +7419,6 @@
[details.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [summary.title: typeof IDL attribute]
- expected: FAIL
-
- [summary.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [summary.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [summary.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [summary.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [summary.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [summary.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [summary.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [summary.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [summary.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [summary.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [summary.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [summary.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [summary.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [summary.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [summary.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [summary.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [summary.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [summary.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [summary.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [summary.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [summary.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [summary.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [summary.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [summary.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [summary.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [summary.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [summary.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [summary.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [summary.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [summary.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [summary.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [summary.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [summary.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [summary.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [summary.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [summary.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [summary.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [summary.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [summary.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [summary.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [summary.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [summary.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[summary.lang: typeof IDL attribute]
expected: FAIL
@@ -9297,135 +8394,6 @@
[summary.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [menu.title: typeof IDL attribute]
- expected: FAIL
-
- [menu.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [menu.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [menu.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [menu.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [menu.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [menu.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [menu.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [menu.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [menu.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [menu.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [menu.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [menu.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [menu.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [menu.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [menu.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [menu.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [menu.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [menu.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [menu.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [menu.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [menu.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [menu.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [menu.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [menu.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [menu.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [menu.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [menu.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [menu.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [menu.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [menu.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [menu.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [menu.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [menu.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [menu.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [menu.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [menu.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [menu.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [menu.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [menu.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [menu.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [menu.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [menu.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[menu.lang: typeof IDL attribute]
expected: FAIL
@@ -10638,135 +9606,6 @@
[menu.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [menuitem.title: typeof IDL attribute]
- expected: FAIL
-
- [menuitem.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [menuitem.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [menuitem.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [menuitem.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [menuitem.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [menuitem.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [menuitem.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [menuitem.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [menuitem.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [menuitem.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [menuitem.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [menuitem.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [menuitem.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [menuitem.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [menuitem.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [menuitem.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [menuitem.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [menuitem.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [menuitem.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [menuitem.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [menuitem.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [menuitem.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [menuitem.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [menuitem.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [menuitem.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [menuitem.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [menuitem.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [menuitem.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [menuitem.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [menuitem.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [menuitem.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [menuitem.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [menuitem.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [menuitem.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [menuitem.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [menuitem.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [menuitem.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [menuitem.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [menuitem.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [menuitem.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [menuitem.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [menuitem.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[menuitem.lang: typeof IDL attribute]
expected: FAIL
@@ -12750,135 +11589,6 @@
[menuitem.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [undefinedelement.title: typeof IDL attribute]
- expected: FAIL
-
- [undefinedelement.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [undefinedelement.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [undefinedelement.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [undefinedelement.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [undefinedelement.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [undefinedelement.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [undefinedelement.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [undefinedelement.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [undefinedelement.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [undefinedelement.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [undefinedelement.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [undefinedelement.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [undefinedelement.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [undefinedelement.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [undefinedelement.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [undefinedelement.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [undefinedelement.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[undefinedelement.lang: typeof IDL attribute]
expected: FAIL
diff --git a/tests/wpt/metadata/html/dom/reflection-obsolete.html.ini b/tests/wpt/metadata/html/dom/reflection-obsolete.html.ini
index e634fb06fec..dea47dd45e0 100644
--- a/tests/wpt/metadata/html/dom/reflection-obsolete.html.ini
+++ b/tests/wpt/metadata/html/dom/reflection-obsolete.html.ini
@@ -1,134 +1,5 @@
[reflection-obsolete.html]
type: testharness
- [applet.title: typeof IDL attribute]
- expected: FAIL
-
- [applet.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [applet.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [applet.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [applet.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [applet.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [applet.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [applet.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [applet.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [applet.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [applet.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [applet.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [applet.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [applet.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [applet.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [applet.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [applet.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [applet.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [applet.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [applet.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [applet.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [applet.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [applet.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [applet.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [applet.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [applet.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [applet.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [applet.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [applet.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [applet.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [applet.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [applet.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [applet.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [applet.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [applet.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [applet.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [applet.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [applet.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [applet.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [applet.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [applet.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [applet.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [applet.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[applet.lang: typeof IDL attribute]
expected: FAIL
@@ -2544,135 +2415,6 @@
[applet.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [marquee.title: typeof IDL attribute]
- expected: FAIL
-
- [marquee.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [marquee.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [marquee.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [marquee.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [marquee.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [marquee.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [marquee.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [marquee.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [marquee.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [marquee.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [marquee.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [marquee.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [marquee.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [marquee.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [marquee.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [marquee.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [marquee.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [marquee.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [marquee.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [marquee.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [marquee.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [marquee.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [marquee.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [marquee.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [marquee.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [marquee.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [marquee.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [marquee.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [marquee.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [marquee.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [marquee.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [marquee.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [marquee.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [marquee.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [marquee.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [marquee.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [marquee.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [marquee.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [marquee.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [marquee.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [marquee.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [marquee.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[marquee.lang: typeof IDL attribute]
expected: FAIL
@@ -4830,135 +4572,6 @@
[marquee.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [frameset.title: typeof IDL attribute]
- expected: FAIL
-
- [frameset.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [frameset.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [frameset.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [frameset.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [frameset.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [frameset.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [frameset.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [frameset.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [frameset.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [frameset.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [frameset.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [frameset.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [frameset.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [frameset.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [frameset.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [frameset.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [frameset.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [frameset.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [frameset.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [frameset.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [frameset.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [frameset.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [frameset.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [frameset.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [frameset.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [frameset.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [frameset.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [frameset.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [frameset.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [frameset.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [frameset.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [frameset.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [frameset.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [frameset.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [frameset.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [frameset.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [frameset.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [frameset.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [frameset.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [frameset.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [frameset.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [frameset.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[frameset.lang: typeof IDL attribute]
expected: FAIL
@@ -6177,135 +5790,6 @@
[frameset.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [frame.title: typeof IDL attribute]
- expected: FAIL
-
- [frame.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [frame.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [frame.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [frame.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [frame.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [frame.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [frame.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [frame.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [frame.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [frame.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [frame.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [frame.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [frame.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [frame.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [frame.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [frame.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [frame.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [frame.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [frame.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [frame.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [frame.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [frame.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [frame.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [frame.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [frame.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [frame.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [frame.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [frame.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [frame.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [frame.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [frame.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [frame.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [frame.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [frame.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [frame.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [frame.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [frame.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [frame.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [frame.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [frame.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [frame.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [frame.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[frame.lang: typeof IDL attribute]
expected: FAIL
@@ -8349,135 +7833,6 @@
[frame.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [dir.title: typeof IDL attribute]
- expected: FAIL
-
- [dir.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [dir.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [dir.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [dir.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [dir.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [dir.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [dir.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [dir.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [dir.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [dir.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [dir.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [dir.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [dir.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [dir.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [dir.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [dir.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [dir.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [dir.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [dir.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [dir.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [dir.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [dir.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [dir.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [dir.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [dir.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [dir.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [dir.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [dir.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [dir.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [dir.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [dir.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [dir.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [dir.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [dir.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [dir.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [dir.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [dir.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [dir.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [dir.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [dir.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [dir.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [dir.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[dir.lang: typeof IDL attribute]
expected: FAIL
@@ -9546,135 +8901,6 @@
[dir.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [font.title: typeof IDL attribute]
- expected: FAIL
-
- [font.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [font.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [font.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [font.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [font.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [font.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [font.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [font.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [font.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [font.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [font.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [font.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [font.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [font.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [font.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [font.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [font.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [font.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [font.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [font.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [font.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [font.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [font.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [font.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [font.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [font.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [font.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [font.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [font.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [font.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [font.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [font.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [font.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [font.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [font.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [font.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [font.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [font.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [font.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [font.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [font.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [font.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[font.lang: typeof IDL attribute]
expected: FAIL
diff --git a/tests/wpt/metadata/html/dom/reflection-sections.html.ini b/tests/wpt/metadata/html/dom/reflection-sections.html.ini
index 7dc55291b67..2654112ef70 100644
--- a/tests/wpt/metadata/html/dom/reflection-sections.html.ini
+++ b/tests/wpt/metadata/html/dom/reflection-sections.html.ini
@@ -1,134 +1,5 @@
[reflection-sections.html]
type: testharness
- [body.title: typeof IDL attribute]
- expected: FAIL
-
- [body.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [body.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [body.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [body.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [body.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [body.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [body.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [body.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [body.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [body.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [body.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [body.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [body.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [body.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [body.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [body.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [body.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [body.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [body.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [body.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [body.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [body.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [body.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [body.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [body.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [body.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [body.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [body.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [body.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [body.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [body.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [body.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [body.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [body.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [body.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [body.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [body.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [body.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [body.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [body.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [body.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [body.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[body.lang: typeof IDL attribute]
expected: FAIL
@@ -1878,135 +1749,6 @@
[body.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [article.title: typeof IDL attribute]
- expected: FAIL
-
- [article.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [article.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [article.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [article.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [article.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [article.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [article.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [article.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [article.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [article.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [article.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [article.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [article.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [article.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [article.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [article.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [article.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [article.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [article.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [article.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [article.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [article.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [article.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [article.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [article.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [article.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [article.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [article.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [article.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [article.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [article.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [article.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [article.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [article.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [article.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [article.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [article.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [article.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [article.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [article.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [article.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [article.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[article.lang: typeof IDL attribute]
expected: FAIL
@@ -2982,135 +2724,6 @@
[article.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [section.title: typeof IDL attribute]
- expected: FAIL
-
- [section.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [section.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [section.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [section.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [section.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [section.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [section.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [section.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [section.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [section.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [section.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [section.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [section.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [section.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [section.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [section.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [section.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [section.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [section.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [section.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [section.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [section.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [section.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [section.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [section.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [section.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [section.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [section.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [section.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [section.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [section.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [section.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [section.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [section.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [section.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [section.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [section.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [section.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [section.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [section.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [section.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [section.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[section.lang: typeof IDL attribute]
expected: FAIL
@@ -4086,135 +3699,6 @@
[section.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [nav.title: typeof IDL attribute]
- expected: FAIL
-
- [nav.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [nav.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [nav.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [nav.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [nav.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [nav.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [nav.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [nav.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [nav.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [nav.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [nav.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [nav.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [nav.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [nav.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [nav.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [nav.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [nav.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [nav.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [nav.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [nav.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [nav.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [nav.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [nav.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [nav.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [nav.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [nav.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [nav.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [nav.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [nav.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [nav.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [nav.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [nav.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [nav.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [nav.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [nav.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [nav.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [nav.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [nav.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [nav.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [nav.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [nav.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [nav.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[nav.lang: typeof IDL attribute]
expected: FAIL
@@ -5190,135 +4674,6 @@
[nav.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [aside.title: typeof IDL attribute]
- expected: FAIL
-
- [aside.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [aside.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [aside.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [aside.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [aside.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [aside.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [aside.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [aside.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [aside.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [aside.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [aside.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [aside.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [aside.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [aside.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [aside.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [aside.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [aside.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [aside.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [aside.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [aside.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [aside.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [aside.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [aside.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [aside.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [aside.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [aside.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [aside.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [aside.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [aside.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [aside.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [aside.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [aside.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [aside.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [aside.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [aside.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [aside.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [aside.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [aside.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [aside.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [aside.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [aside.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [aside.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[aside.lang: typeof IDL attribute]
expected: FAIL
@@ -6294,135 +5649,6 @@
[aside.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [h1.title: typeof IDL attribute]
- expected: FAIL
-
- [h1.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [h1.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [h1.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [h1.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [h1.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [h1.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [h1.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [h1.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [h1.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [h1.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [h1.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [h1.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [h1.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [h1.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [h1.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [h1.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [h1.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [h1.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [h1.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [h1.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [h1.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [h1.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [h1.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [h1.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [h1.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [h1.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [h1.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [h1.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [h1.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [h1.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [h1.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [h1.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [h1.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [h1.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [h1.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [h1.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [h1.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [h1.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [h1.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [h1.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [h1.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [h1.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[h1.lang: typeof IDL attribute]
expected: FAIL
@@ -7527,135 +6753,6 @@
[h1.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [h2.title: typeof IDL attribute]
- expected: FAIL
-
- [h2.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [h2.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [h2.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [h2.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [h2.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [h2.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [h2.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [h2.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [h2.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [h2.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [h2.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [h2.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [h2.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [h2.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [h2.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [h2.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [h2.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [h2.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [h2.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [h2.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [h2.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [h2.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [h2.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [h2.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [h2.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [h2.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [h2.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [h2.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [h2.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [h2.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [h2.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [h2.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [h2.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [h2.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [h2.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [h2.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [h2.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [h2.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [h2.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [h2.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [h2.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [h2.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[h2.lang: typeof IDL attribute]
expected: FAIL
@@ -8760,135 +7857,6 @@
[h2.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [h3.title: typeof IDL attribute]
- expected: FAIL
-
- [h3.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [h3.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [h3.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [h3.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [h3.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [h3.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [h3.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [h3.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [h3.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [h3.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [h3.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [h3.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [h3.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [h3.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [h3.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [h3.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [h3.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [h3.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [h3.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [h3.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [h3.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [h3.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [h3.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [h3.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [h3.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [h3.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [h3.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [h3.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [h3.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [h3.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [h3.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [h3.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [h3.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [h3.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [h3.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [h3.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [h3.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [h3.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [h3.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [h3.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [h3.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [h3.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[h3.lang: typeof IDL attribute]
expected: FAIL
@@ -9993,135 +8961,6 @@
[h3.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [h4.title: typeof IDL attribute]
- expected: FAIL
-
- [h4.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [h4.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [h4.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [h4.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [h4.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [h4.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [h4.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [h4.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [h4.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [h4.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [h4.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [h4.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [h4.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [h4.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [h4.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [h4.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [h4.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [h4.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [h4.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [h4.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [h4.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [h4.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [h4.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [h4.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [h4.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [h4.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [h4.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [h4.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [h4.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [h4.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [h4.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [h4.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [h4.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [h4.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [h4.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [h4.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [h4.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [h4.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [h4.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [h4.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [h4.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [h4.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[h4.lang: typeof IDL attribute]
expected: FAIL
@@ -11226,135 +10065,6 @@
[h4.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [h5.title: typeof IDL attribute]
- expected: FAIL
-
- [h5.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [h5.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [h5.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [h5.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [h5.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [h5.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [h5.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [h5.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [h5.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [h5.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [h5.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [h5.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [h5.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [h5.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [h5.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [h5.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [h5.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [h5.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [h5.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [h5.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [h5.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [h5.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [h5.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [h5.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [h5.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [h5.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [h5.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [h5.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [h5.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [h5.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [h5.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [h5.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [h5.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [h5.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [h5.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [h5.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [h5.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [h5.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [h5.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [h5.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [h5.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [h5.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[h5.lang: typeof IDL attribute]
expected: FAIL
@@ -12459,135 +11169,6 @@
[h5.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [h6.title: typeof IDL attribute]
- expected: FAIL
-
- [h6.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [h6.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [h6.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [h6.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [h6.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [h6.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [h6.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [h6.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [h6.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [h6.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [h6.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [h6.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [h6.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [h6.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [h6.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [h6.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [h6.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [h6.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [h6.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [h6.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [h6.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [h6.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [h6.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [h6.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [h6.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [h6.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [h6.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [h6.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [h6.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [h6.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [h6.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [h6.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [h6.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [h6.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [h6.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [h6.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [h6.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [h6.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [h6.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [h6.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [h6.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [h6.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[h6.lang: typeof IDL attribute]
expected: FAIL
@@ -13692,135 +12273,6 @@
[h6.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [hgroup.title: typeof IDL attribute]
- expected: FAIL
-
- [hgroup.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [hgroup.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [hgroup.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [hgroup.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [hgroup.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [hgroup.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [hgroup.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [hgroup.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [hgroup.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [hgroup.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [hgroup.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [hgroup.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [hgroup.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [hgroup.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [hgroup.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [hgroup.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [hgroup.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [hgroup.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [hgroup.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [hgroup.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [hgroup.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [hgroup.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [hgroup.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [hgroup.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [hgroup.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [hgroup.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [hgroup.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [hgroup.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [hgroup.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [hgroup.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [hgroup.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [hgroup.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [hgroup.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [hgroup.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [hgroup.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [hgroup.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [hgroup.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [hgroup.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [hgroup.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [hgroup.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [hgroup.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [hgroup.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[hgroup.lang: typeof IDL attribute]
expected: FAIL
@@ -14796,135 +13248,6 @@
[hgroup.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [header.title: typeof IDL attribute]
- expected: FAIL
-
- [header.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [header.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [header.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [header.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [header.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [header.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [header.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [header.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [header.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [header.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [header.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [header.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [header.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [header.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [header.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [header.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [header.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [header.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [header.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [header.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [header.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [header.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [header.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [header.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [header.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [header.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [header.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [header.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [header.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [header.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [header.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [header.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [header.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [header.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [header.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [header.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [header.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [header.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [header.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [header.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [header.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [header.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[header.lang: typeof IDL attribute]
expected: FAIL
@@ -15900,135 +14223,6 @@
[header.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [footer.title: typeof IDL attribute]
- expected: FAIL
-
- [footer.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [footer.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [footer.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [footer.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [footer.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [footer.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [footer.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [footer.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [footer.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [footer.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [footer.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [footer.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [footer.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [footer.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [footer.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [footer.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [footer.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [footer.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [footer.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [footer.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [footer.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [footer.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [footer.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [footer.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [footer.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [footer.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [footer.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [footer.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [footer.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [footer.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [footer.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [footer.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [footer.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [footer.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [footer.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [footer.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [footer.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [footer.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [footer.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [footer.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [footer.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [footer.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[footer.lang: typeof IDL attribute]
expected: FAIL
@@ -17004,135 +15198,6 @@
[footer.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [address.title: typeof IDL attribute]
- expected: FAIL
-
- [address.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [address.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [address.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [address.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [address.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [address.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [address.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [address.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [address.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [address.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [address.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [address.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [address.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [address.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [address.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [address.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [address.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [address.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [address.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [address.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [address.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [address.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [address.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [address.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [address.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [address.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [address.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [address.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [address.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [address.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [address.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [address.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [address.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [address.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [address.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [address.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [address.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [address.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [address.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [address.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [address.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [address.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[address.lang: typeof IDL attribute]
expected: FAIL
diff --git a/tests/wpt/metadata/html/dom/reflection-tabular.html.ini b/tests/wpt/metadata/html/dom/reflection-tabular.html.ini
index 63c2530b051..de974443dd8 100644
--- a/tests/wpt/metadata/html/dom/reflection-tabular.html.ini
+++ b/tests/wpt/metadata/html/dom/reflection-tabular.html.ini
@@ -1,134 +1,5 @@
[reflection-tabular.html]
type: testharness
- [table.title: typeof IDL attribute]
- expected: FAIL
-
- [table.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [table.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [table.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [table.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [table.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [table.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [table.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [table.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [table.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [table.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [table.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [table.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [table.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [table.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [table.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [table.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [table.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [table.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [table.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [table.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [table.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [table.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [table.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [table.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [table.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [table.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [table.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [table.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [table.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [table.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [table.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [table.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [table.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [table.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [table.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [table.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [table.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [table.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [table.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [table.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [table.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [table.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[table.lang: typeof IDL attribute]
expected: FAIL
@@ -2373,135 +2244,6 @@
[table.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [caption.title: typeof IDL attribute]
- expected: FAIL
-
- [caption.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [caption.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [caption.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [caption.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [caption.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [caption.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [caption.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [caption.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [caption.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [caption.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [caption.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [caption.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [caption.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [caption.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [caption.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [caption.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [caption.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [caption.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [caption.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [caption.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [caption.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [caption.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [caption.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [caption.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [caption.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [caption.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [caption.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [caption.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [caption.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [caption.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [caption.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [caption.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [caption.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [caption.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [caption.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [caption.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [caption.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [caption.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [caption.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [caption.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [caption.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [caption.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[caption.lang: typeof IDL attribute]
expected: FAIL
@@ -3606,135 +3348,6 @@
[caption.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [colgroup.title: typeof IDL attribute]
- expected: FAIL
-
- [colgroup.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [colgroup.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [colgroup.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [colgroup.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [colgroup.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [colgroup.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [colgroup.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [colgroup.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [colgroup.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [colgroup.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [colgroup.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [colgroup.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [colgroup.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [colgroup.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [colgroup.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [colgroup.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [colgroup.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [colgroup.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [colgroup.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [colgroup.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [colgroup.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [colgroup.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [colgroup.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [colgroup.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [colgroup.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [colgroup.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [colgroup.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [colgroup.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [colgroup.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [colgroup.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [colgroup.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [colgroup.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [colgroup.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [colgroup.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [colgroup.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [colgroup.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [colgroup.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [colgroup.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [colgroup.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [colgroup.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [colgroup.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [colgroup.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[colgroup.lang: typeof IDL attribute]
expected: FAIL
@@ -5529,135 +5142,6 @@
[colgroup.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [col.title: typeof IDL attribute]
- expected: FAIL
-
- [col.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [col.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [col.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [col.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [col.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [col.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [col.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [col.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [col.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [col.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [col.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [col.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [col.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [col.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [col.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [col.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [col.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [col.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [col.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [col.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [col.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [col.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [col.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [col.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [col.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [col.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [col.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [col.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [col.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [col.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [col.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [col.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [col.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [col.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [col.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [col.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [col.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [col.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [col.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [col.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [col.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [col.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[col.lang: typeof IDL attribute]
expected: FAIL
@@ -7452,135 +6936,6 @@
[col.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [tbody.title: typeof IDL attribute]
- expected: FAIL
-
- [tbody.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [tbody.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [tbody.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [tbody.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [tbody.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [tbody.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [tbody.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [tbody.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [tbody.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [tbody.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [tbody.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [tbody.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [tbody.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [tbody.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [tbody.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [tbody.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [tbody.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [tbody.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [tbody.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [tbody.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [tbody.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [tbody.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [tbody.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [tbody.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [tbody.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [tbody.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [tbody.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [tbody.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [tbody.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [tbody.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [tbody.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [tbody.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [tbody.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [tbody.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [tbody.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [tbody.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [tbody.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [tbody.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [tbody.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [tbody.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [tbody.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [tbody.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[tbody.lang: typeof IDL attribute]
expected: FAIL
@@ -9072,135 +8427,6 @@
[tbody.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [thead.title: typeof IDL attribute]
- expected: FAIL
-
- [thead.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [thead.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [thead.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [thead.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [thead.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [thead.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [thead.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [thead.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [thead.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [thead.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [thead.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [thead.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [thead.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [thead.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [thead.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [thead.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [thead.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [thead.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [thead.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [thead.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [thead.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [thead.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [thead.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [thead.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [thead.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [thead.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [thead.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [thead.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [thead.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [thead.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [thead.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [thead.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [thead.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [thead.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [thead.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [thead.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [thead.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [thead.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [thead.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [thead.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [thead.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [thead.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[thead.lang: typeof IDL attribute]
expected: FAIL
@@ -10692,135 +9918,6 @@
[thead.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [tfoot.title: typeof IDL attribute]
- expected: FAIL
-
- [tfoot.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [tfoot.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [tfoot.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [tfoot.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [tfoot.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [tfoot.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [tfoot.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [tfoot.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [tfoot.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [tfoot.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [tfoot.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [tfoot.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [tfoot.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [tfoot.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [tfoot.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [tfoot.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [tfoot.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [tfoot.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [tfoot.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [tfoot.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [tfoot.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [tfoot.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [tfoot.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [tfoot.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [tfoot.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [tfoot.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [tfoot.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [tfoot.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [tfoot.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [tfoot.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [tfoot.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [tfoot.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [tfoot.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [tfoot.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [tfoot.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [tfoot.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [tfoot.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [tfoot.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [tfoot.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [tfoot.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [tfoot.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [tfoot.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[tfoot.lang: typeof IDL attribute]
expected: FAIL
@@ -12312,135 +11409,6 @@
[tfoot.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [tr.title: typeof IDL attribute]
- expected: FAIL
-
- [tr.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [tr.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [tr.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [tr.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [tr.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [tr.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [tr.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [tr.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [tr.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [tr.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [tr.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [tr.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [tr.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [tr.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [tr.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [tr.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [tr.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [tr.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [tr.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [tr.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [tr.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [tr.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [tr.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [tr.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [tr.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [tr.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [tr.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [tr.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [tr.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [tr.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [tr.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [tr.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [tr.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [tr.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [tr.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [tr.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [tr.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [tr.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [tr.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [tr.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [tr.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [tr.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[tr.lang: typeof IDL attribute]
expected: FAIL
@@ -14061,135 +13029,6 @@
[tr.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [td.title: typeof IDL attribute]
- expected: FAIL
-
- [td.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [td.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [td.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [td.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [td.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [td.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [td.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [td.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [td.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [td.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [td.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [td.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [td.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [td.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [td.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [td.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [td.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [td.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [td.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [td.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [td.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [td.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [td.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [td.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [td.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [td.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [td.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [td.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [td.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [td.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [td.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [td.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [td.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [td.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [td.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [td.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [td.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [td.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [td.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [td.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [td.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [td.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[td.lang: typeof IDL attribute]
expected: FAIL
@@ -16806,135 +15645,6 @@
[td.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [th.title: typeof IDL attribute]
- expected: FAIL
-
- [th.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [th.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [th.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [th.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [th.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [th.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [th.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [th.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [th.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [th.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [th.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [th.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [th.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [th.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [th.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [th.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [th.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [th.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [th.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [th.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [th.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [th.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [th.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [th.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [th.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [th.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [th.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [th.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [th.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [th.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [th.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [th.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [th.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [th.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [th.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [th.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [th.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [th.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [th.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [th.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [th.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [th.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[th.lang: typeof IDL attribute]
expected: FAIL
diff --git a/tests/wpt/metadata/html/dom/reflection-text.html.ini b/tests/wpt/metadata/html/dom/reflection-text.html.ini
index a983c2117c5..c12c8b2b458 100644
--- a/tests/wpt/metadata/html/dom/reflection-text.html.ini
+++ b/tests/wpt/metadata/html/dom/reflection-text.html.ini
@@ -1,134 +1,5 @@
[reflection-text.html]
type: testharness
- [a.title: typeof IDL attribute]
- expected: FAIL
-
- [a.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [a.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [a.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [a.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [a.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [a.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [a.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [a.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [a.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [a.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [a.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [a.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [a.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [a.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [a.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [a.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [a.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [a.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [a.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [a.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [a.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [a.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [a.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [a.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [a.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [a.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [a.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [a.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [a.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [a.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [a.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [a.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [a.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [a.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [a.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [a.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [a.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [a.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [a.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [a.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [a.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [a.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[a.lang: typeof IDL attribute]
expected: FAIL
@@ -2706,135 +2577,6 @@
[a.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [em.title: typeof IDL attribute]
- expected: FAIL
-
- [em.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [em.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [em.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [em.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [em.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [em.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [em.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [em.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [em.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [em.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [em.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [em.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [em.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [em.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [em.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [em.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [em.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [em.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [em.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [em.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [em.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [em.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [em.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [em.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [em.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [em.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [em.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [em.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [em.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [em.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [em.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [em.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [em.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [em.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [em.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [em.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [em.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [em.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [em.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [em.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [em.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [em.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[em.lang: typeof IDL attribute]
expected: FAIL
@@ -3795,135 +3537,6 @@
[em.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [strong.title: typeof IDL attribute]
- expected: FAIL
-
- [strong.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [strong.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [strong.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [strong.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [strong.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [strong.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [strong.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [strong.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [strong.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [strong.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [strong.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [strong.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [strong.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [strong.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [strong.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [strong.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [strong.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [strong.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [strong.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [strong.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [strong.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [strong.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [strong.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [strong.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [strong.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [strong.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [strong.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [strong.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [strong.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [strong.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [strong.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [strong.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [strong.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [strong.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [strong.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [strong.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [strong.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [strong.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [strong.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [strong.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [strong.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [strong.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[strong.lang: typeof IDL attribute]
expected: FAIL
@@ -4884,135 +4497,6 @@
[strong.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [small.title: typeof IDL attribute]
- expected: FAIL
-
- [small.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [small.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [small.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [small.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [small.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [small.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [small.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [small.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [small.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [small.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [small.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [small.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [small.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [small.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [small.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [small.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [small.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [small.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [small.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [small.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [small.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [small.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [small.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [small.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [small.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [small.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [small.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [small.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [small.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [small.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [small.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [small.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [small.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [small.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [small.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [small.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [small.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [small.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [small.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [small.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [small.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [small.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[small.lang: typeof IDL attribute]
expected: FAIL
@@ -5973,135 +5457,6 @@
[small.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [s.title: typeof IDL attribute]
- expected: FAIL
-
- [s.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [s.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [s.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [s.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [s.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [s.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [s.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [s.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [s.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [s.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [s.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [s.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [s.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [s.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [s.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [s.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [s.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [s.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [s.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [s.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [s.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [s.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [s.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [s.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [s.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [s.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [s.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [s.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [s.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [s.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [s.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [s.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [s.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [s.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [s.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [s.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [s.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [s.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [s.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [s.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [s.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [s.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[s.lang: typeof IDL attribute]
expected: FAIL
@@ -7062,135 +6417,6 @@
[s.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [cite.title: typeof IDL attribute]
- expected: FAIL
-
- [cite.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [cite.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [cite.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [cite.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [cite.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [cite.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [cite.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [cite.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [cite.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [cite.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [cite.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [cite.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [cite.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [cite.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [cite.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [cite.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [cite.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [cite.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [cite.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [cite.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [cite.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [cite.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [cite.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [cite.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [cite.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [cite.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [cite.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [cite.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [cite.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [cite.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [cite.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [cite.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [cite.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [cite.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [cite.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [cite.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [cite.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [cite.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [cite.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [cite.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [cite.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [cite.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[cite.lang: typeof IDL attribute]
expected: FAIL
@@ -8151,135 +7377,6 @@
[cite.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [q.title: typeof IDL attribute]
- expected: FAIL
-
- [q.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [q.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [q.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [q.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [q.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [q.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [q.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [q.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [q.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [q.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [q.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [q.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [q.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [q.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [q.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [q.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [q.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [q.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [q.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [q.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [q.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [q.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [q.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [q.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [q.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [q.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [q.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [q.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [q.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [q.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [q.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [q.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [q.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [q.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [q.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [q.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [q.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [q.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [q.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [q.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [q.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [q.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[q.lang: typeof IDL attribute]
expected: FAIL
@@ -9405,135 +8502,6 @@
[q.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [dfn.title: typeof IDL attribute]
- expected: FAIL
-
- [dfn.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [dfn.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [dfn.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [dfn.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [dfn.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [dfn.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [dfn.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [dfn.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [dfn.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [dfn.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [dfn.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [dfn.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [dfn.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [dfn.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [dfn.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [dfn.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [dfn.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [dfn.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [dfn.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [dfn.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [dfn.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [dfn.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [dfn.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [dfn.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [dfn.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [dfn.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [dfn.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [dfn.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [dfn.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [dfn.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [dfn.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [dfn.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [dfn.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [dfn.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [dfn.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [dfn.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [dfn.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [dfn.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [dfn.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [dfn.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [dfn.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [dfn.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[dfn.lang: typeof IDL attribute]
expected: FAIL
@@ -10494,135 +9462,6 @@
[dfn.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [abbr.title: typeof IDL attribute]
- expected: FAIL
-
- [abbr.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [abbr.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [abbr.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [abbr.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [abbr.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [abbr.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [abbr.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [abbr.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [abbr.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [abbr.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [abbr.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [abbr.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [abbr.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [abbr.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [abbr.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [abbr.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [abbr.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [abbr.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [abbr.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [abbr.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [abbr.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [abbr.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [abbr.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [abbr.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [abbr.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [abbr.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [abbr.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [abbr.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [abbr.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [abbr.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [abbr.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [abbr.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [abbr.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [abbr.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [abbr.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [abbr.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [abbr.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [abbr.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [abbr.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [abbr.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [abbr.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [abbr.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[abbr.lang: typeof IDL attribute]
expected: FAIL
@@ -11583,135 +10422,6 @@
[abbr.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [data.title: typeof IDL attribute]
- expected: FAIL
-
- [data.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [data.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [data.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [data.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [data.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [data.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [data.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [data.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [data.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [data.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [data.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [data.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [data.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [data.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [data.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [data.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [data.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [data.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [data.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [data.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [data.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [data.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [data.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [data.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [data.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [data.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [data.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [data.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [data.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [data.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [data.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [data.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [data.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [data.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [data.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [data.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [data.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [data.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [data.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [data.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [data.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [data.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[data.lang: typeof IDL attribute]
expected: FAIL
@@ -12801,135 +11511,6 @@
[data.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [time.title: typeof IDL attribute]
- expected: FAIL
-
- [time.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [time.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [time.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [time.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [time.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [time.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [time.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [time.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [time.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [time.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [time.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [time.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [time.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [time.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [time.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [time.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [time.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [time.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [time.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [time.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [time.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [time.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [time.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [time.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [time.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [time.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [time.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [time.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [time.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [time.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [time.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [time.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [time.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [time.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [time.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [time.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [time.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [time.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [time.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [time.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [time.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [time.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[time.lang: typeof IDL attribute]
expected: FAIL
@@ -14019,135 +12600,6 @@
[time.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [code.title: typeof IDL attribute]
- expected: FAIL
-
- [code.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [code.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [code.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [code.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [code.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [code.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [code.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [code.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [code.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [code.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [code.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [code.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [code.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [code.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [code.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [code.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [code.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [code.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [code.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [code.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [code.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [code.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [code.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [code.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [code.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [code.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [code.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [code.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [code.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [code.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [code.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [code.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [code.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [code.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [code.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [code.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [code.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [code.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [code.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [code.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [code.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [code.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[code.lang: typeof IDL attribute]
expected: FAIL
@@ -15108,135 +13560,6 @@
[code.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [var.title: typeof IDL attribute]
- expected: FAIL
-
- [var.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [var.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [var.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [var.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [var.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [var.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [var.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [var.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [var.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [var.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [var.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [var.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [var.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [var.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [var.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [var.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [var.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [var.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [var.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [var.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [var.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [var.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [var.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [var.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [var.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [var.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [var.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [var.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [var.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [var.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [var.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [var.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [var.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [var.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [var.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [var.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [var.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [var.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [var.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [var.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [var.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [var.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[var.lang: typeof IDL attribute]
expected: FAIL
@@ -16197,135 +14520,6 @@
[var.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [samp.title: typeof IDL attribute]
- expected: FAIL
-
- [samp.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [samp.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [samp.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [samp.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [samp.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [samp.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [samp.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [samp.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [samp.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [samp.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [samp.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [samp.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [samp.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [samp.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [samp.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [samp.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [samp.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [samp.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [samp.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [samp.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [samp.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [samp.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [samp.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [samp.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [samp.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [samp.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [samp.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [samp.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [samp.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [samp.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [samp.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [samp.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [samp.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [samp.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [samp.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [samp.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [samp.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [samp.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [samp.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [samp.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [samp.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [samp.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[samp.lang: typeof IDL attribute]
expected: FAIL
@@ -17286,135 +15480,6 @@
[samp.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [kbd.title: typeof IDL attribute]
- expected: FAIL
-
- [kbd.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [kbd.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [kbd.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [kbd.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [kbd.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [kbd.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [kbd.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [kbd.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [kbd.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [kbd.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [kbd.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [kbd.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [kbd.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [kbd.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [kbd.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [kbd.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [kbd.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [kbd.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [kbd.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [kbd.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [kbd.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [kbd.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [kbd.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [kbd.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [kbd.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [kbd.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [kbd.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [kbd.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [kbd.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [kbd.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [kbd.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [kbd.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [kbd.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [kbd.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [kbd.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [kbd.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [kbd.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [kbd.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [kbd.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [kbd.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [kbd.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [kbd.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[kbd.lang: typeof IDL attribute]
expected: FAIL
@@ -18375,135 +16440,6 @@
[kbd.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [sub.title: typeof IDL attribute]
- expected: FAIL
-
- [sub.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [sub.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [sub.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [sub.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [sub.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [sub.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [sub.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [sub.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [sub.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [sub.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [sub.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [sub.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [sub.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [sub.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [sub.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [sub.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [sub.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [sub.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [sub.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [sub.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [sub.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [sub.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [sub.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [sub.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [sub.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [sub.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [sub.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [sub.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [sub.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [sub.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [sub.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [sub.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [sub.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [sub.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [sub.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [sub.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [sub.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [sub.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [sub.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [sub.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [sub.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [sub.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[sub.lang: typeof IDL attribute]
expected: FAIL
@@ -19464,135 +17400,6 @@
[sub.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [sup.title: typeof IDL attribute]
- expected: FAIL
-
- [sup.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [sup.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [sup.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [sup.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [sup.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [sup.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [sup.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [sup.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [sup.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [sup.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [sup.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [sup.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [sup.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [sup.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [sup.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [sup.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [sup.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [sup.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [sup.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [sup.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [sup.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [sup.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [sup.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [sup.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [sup.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [sup.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [sup.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [sup.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [sup.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [sup.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [sup.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [sup.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [sup.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [sup.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [sup.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [sup.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [sup.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [sup.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [sup.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [sup.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [sup.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [sup.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[sup.lang: typeof IDL attribute]
expected: FAIL
@@ -20553,135 +18360,6 @@
[sup.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [i.title: typeof IDL attribute]
- expected: FAIL
-
- [i.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [i.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [i.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [i.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [i.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [i.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [i.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [i.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [i.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [i.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [i.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [i.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [i.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [i.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [i.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [i.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [i.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [i.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [i.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [i.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [i.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [i.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [i.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [i.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [i.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [i.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [i.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [i.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [i.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [i.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [i.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [i.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [i.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [i.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [i.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [i.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [i.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [i.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [i.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [i.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [i.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [i.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[i.lang: typeof IDL attribute]
expected: FAIL
@@ -21642,135 +19320,6 @@
[i.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [b.title: typeof IDL attribute]
- expected: FAIL
-
- [b.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [b.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [b.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [b.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [b.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [b.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [b.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [b.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [b.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [b.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [b.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [b.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [b.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [b.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [b.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [b.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [b.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [b.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [b.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [b.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [b.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [b.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [b.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [b.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [b.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [b.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [b.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [b.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [b.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [b.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [b.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [b.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [b.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [b.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [b.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [b.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [b.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [b.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [b.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [b.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [b.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [b.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[b.lang: typeof IDL attribute]
expected: FAIL
@@ -22731,135 +20280,6 @@
[b.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [u.title: typeof IDL attribute]
- expected: FAIL
-
- [u.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [u.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [u.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [u.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [u.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [u.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [u.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [u.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [u.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [u.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [u.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [u.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [u.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [u.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [u.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [u.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [u.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [u.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [u.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [u.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [u.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [u.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [u.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [u.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [u.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [u.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [u.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [u.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [u.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [u.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [u.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [u.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [u.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [u.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [u.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [u.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [u.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [u.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [u.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [u.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [u.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [u.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[u.lang: typeof IDL attribute]
expected: FAIL
@@ -23820,135 +21240,6 @@
[u.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [mark.title: typeof IDL attribute]
- expected: FAIL
-
- [mark.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [mark.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [mark.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [mark.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [mark.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [mark.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [mark.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [mark.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [mark.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [mark.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [mark.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [mark.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [mark.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [mark.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [mark.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [mark.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [mark.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [mark.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [mark.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [mark.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [mark.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [mark.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [mark.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [mark.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [mark.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [mark.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [mark.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [mark.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [mark.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [mark.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [mark.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [mark.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [mark.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [mark.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [mark.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [mark.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [mark.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [mark.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [mark.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [mark.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [mark.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [mark.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[mark.lang: typeof IDL attribute]
expected: FAIL
@@ -24909,135 +22200,6 @@
[mark.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [ruby.title: typeof IDL attribute]
- expected: FAIL
-
- [ruby.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [ruby.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [ruby.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [ruby.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [ruby.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [ruby.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [ruby.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [ruby.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [ruby.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [ruby.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [ruby.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [ruby.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [ruby.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [ruby.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [ruby.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [ruby.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [ruby.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [ruby.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [ruby.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [ruby.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [ruby.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [ruby.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [ruby.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [ruby.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [ruby.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [ruby.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [ruby.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [ruby.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [ruby.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [ruby.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [ruby.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [ruby.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [ruby.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [ruby.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [ruby.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [ruby.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [ruby.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [ruby.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [ruby.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [ruby.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [ruby.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [ruby.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[ruby.lang: typeof IDL attribute]
expected: FAIL
@@ -25998,135 +23160,6 @@
[ruby.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [rt.title: typeof IDL attribute]
- expected: FAIL
-
- [rt.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [rt.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [rt.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [rt.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [rt.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [rt.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [rt.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [rt.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [rt.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [rt.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [rt.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [rt.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [rt.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [rt.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [rt.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [rt.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [rt.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [rt.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [rt.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [rt.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [rt.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [rt.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [rt.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [rt.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [rt.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [rt.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [rt.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [rt.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [rt.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [rt.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [rt.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [rt.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [rt.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [rt.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [rt.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [rt.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [rt.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [rt.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [rt.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [rt.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [rt.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [rt.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[rt.lang: typeof IDL attribute]
expected: FAIL
@@ -27087,135 +24120,6 @@
[rt.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [rp.title: typeof IDL attribute]
- expected: FAIL
-
- [rp.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [rp.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [rp.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [rp.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [rp.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [rp.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [rp.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [rp.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [rp.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [rp.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [rp.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [rp.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [rp.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [rp.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [rp.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [rp.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [rp.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [rp.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [rp.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [rp.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [rp.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [rp.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [rp.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [rp.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [rp.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [rp.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [rp.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [rp.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [rp.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [rp.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [rp.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [rp.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [rp.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [rp.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [rp.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [rp.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [rp.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [rp.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [rp.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [rp.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [rp.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [rp.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[rp.lang: typeof IDL attribute]
expected: FAIL
@@ -28176,135 +25080,6 @@
[rp.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [bdi.title: typeof IDL attribute]
- expected: FAIL
-
- [bdi.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [bdi.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [bdi.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [bdi.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [bdi.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [bdi.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [bdi.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [bdi.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [bdi.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [bdi.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [bdi.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [bdi.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [bdi.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [bdi.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [bdi.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [bdi.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [bdi.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [bdi.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [bdi.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [bdi.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [bdi.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [bdi.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [bdi.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [bdi.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [bdi.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [bdi.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [bdi.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [bdi.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [bdi.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [bdi.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [bdi.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [bdi.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [bdi.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [bdi.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [bdi.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [bdi.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [bdi.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [bdi.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [bdi.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [bdi.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [bdi.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [bdi.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[bdi.lang: typeof IDL attribute]
expected: FAIL
@@ -29265,135 +26040,6 @@
[bdi.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [bdo.title: typeof IDL attribute]
- expected: FAIL
-
- [bdo.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [bdo.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [bdo.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [bdo.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [bdo.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [bdo.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [bdo.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [bdo.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [bdo.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [bdo.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [bdo.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [bdo.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [bdo.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [bdo.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [bdo.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [bdo.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [bdo.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [bdo.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [bdo.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [bdo.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [bdo.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [bdo.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [bdo.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [bdo.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [bdo.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [bdo.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [bdo.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [bdo.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [bdo.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [bdo.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [bdo.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [bdo.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [bdo.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [bdo.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [bdo.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [bdo.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [bdo.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [bdo.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [bdo.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [bdo.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [bdo.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [bdo.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[bdo.lang: typeof IDL attribute]
expected: FAIL
@@ -30354,135 +27000,6 @@
[bdo.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [span.title: typeof IDL attribute]
- expected: FAIL
-
- [span.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [span.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [span.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [span.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [span.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [span.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [span.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [span.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [span.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [span.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [span.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [span.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [span.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [span.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [span.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [span.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [span.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [span.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [span.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [span.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [span.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [span.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [span.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [span.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [span.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [span.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [span.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [span.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [span.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [span.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [span.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [span.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [span.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [span.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [span.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [span.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [span.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [span.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [span.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [span.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [span.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [span.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[span.lang: typeof IDL attribute]
expected: FAIL
@@ -31443,135 +27960,6 @@
[span.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [br.title: typeof IDL attribute]
- expected: FAIL
-
- [br.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [br.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [br.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [br.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [br.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [br.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [br.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [br.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [br.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [br.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [br.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [br.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [br.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [br.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [br.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [br.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [br.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [br.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [br.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [br.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [br.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [br.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [br.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [br.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [br.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [br.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [br.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [br.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [br.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [br.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [br.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [br.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [br.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [br.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [br.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [br.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [br.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [br.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [br.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [br.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [br.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [br.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[br.lang: typeof IDL attribute]
expected: FAIL
@@ -32661,135 +29049,6 @@
[br.itemId: IDL set to object "test-valueOf" followed by IDL get]
expected: FAIL
- [wbr.title: typeof IDL attribute]
- expected: FAIL
-
- [wbr.title: IDL get with DOM attribute unset]
- expected: FAIL
-
- [wbr.title: setAttribute() to "" followed by IDL get]
- expected: FAIL
-
- [wbr.title: setAttribute() to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by IDL get]
- expected: FAIL
-
- [wbr.title: setAttribute() to undefined followed by IDL get]
- expected: FAIL
-
- [wbr.title: setAttribute() to 7 followed by IDL get]
- expected: FAIL
-
- [wbr.title: setAttribute() to 1.5 followed by IDL get]
- expected: FAIL
-
- [wbr.title: setAttribute() to true followed by IDL get]
- expected: FAIL
-
- [wbr.title: setAttribute() to false followed by IDL get]
- expected: FAIL
-
- [wbr.title: setAttribute() to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [wbr.title: setAttribute() to NaN followed by IDL get]
- expected: FAIL
-
- [wbr.title: setAttribute() to Infinity followed by IDL get]
- expected: FAIL
-
- [wbr.title: setAttribute() to -Infinity followed by IDL get]
- expected: FAIL
-
- [wbr.title: setAttribute() to "\\0" followed by IDL get]
- expected: FAIL
-
- [wbr.title: setAttribute() to null followed by IDL get]
- expected: FAIL
-
- [wbr.title: setAttribute() to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [wbr.title: setAttribute() to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
- [wbr.title: IDL set to "" followed by getAttribute()]
- expected: FAIL
-
- [wbr.title: IDL set to " \\0\\x01\\x02\\x03\\x04\\x05\\x06\\x07 \\b\\t\\n\\v\\f\\r\\x0e\\x0f \\x10\\x11\\x12\\x13\\x14\\x15\\x16\\x17 \\x18\\x19\\x1a\\x1b\\x1c\\x1d\\x1e\\x1f foo " followed by getAttribute()]
- expected: FAIL
-
- [wbr.title: IDL set to undefined followed by getAttribute()]
- expected: FAIL
-
- [wbr.title: IDL set to undefined followed by IDL get]
- expected: FAIL
-
- [wbr.title: IDL set to 7 followed by getAttribute()]
- expected: FAIL
-
- [wbr.title: IDL set to 7 followed by IDL get]
- expected: FAIL
-
- [wbr.title: IDL set to 1.5 followed by getAttribute()]
- expected: FAIL
-
- [wbr.title: IDL set to 1.5 followed by IDL get]
- expected: FAIL
-
- [wbr.title: IDL set to true followed by getAttribute()]
- expected: FAIL
-
- [wbr.title: IDL set to true followed by IDL get]
- expected: FAIL
-
- [wbr.title: IDL set to false followed by getAttribute()]
- expected: FAIL
-
- [wbr.title: IDL set to false followed by IDL get]
- expected: FAIL
-
- [wbr.title: IDL set to object "[object Object\]" followed by getAttribute()]
- expected: FAIL
-
- [wbr.title: IDL set to object "[object Object\]" followed by IDL get]
- expected: FAIL
-
- [wbr.title: IDL set to NaN followed by getAttribute()]
- expected: FAIL
-
- [wbr.title: IDL set to NaN followed by IDL get]
- expected: FAIL
-
- [wbr.title: IDL set to Infinity followed by getAttribute()]
- expected: FAIL
-
- [wbr.title: IDL set to Infinity followed by IDL get]
- expected: FAIL
-
- [wbr.title: IDL set to -Infinity followed by getAttribute()]
- expected: FAIL
-
- [wbr.title: IDL set to -Infinity followed by IDL get]
- expected: FAIL
-
- [wbr.title: IDL set to "\\0" followed by getAttribute()]
- expected: FAIL
-
- [wbr.title: IDL set to null followed by getAttribute()]
- expected: FAIL
-
- [wbr.title: IDL set to null followed by IDL get]
- expected: FAIL
-
- [wbr.title: IDL set to object "test-toString" followed by getAttribute()]
- expected: FAIL
-
- [wbr.title: IDL set to object "test-toString" followed by IDL get]
- expected: FAIL
-
- [wbr.title: IDL set to object "test-valueOf" followed by IDL get]
- expected: FAIL
-
[wbr.lang: typeof IDL attribute]
expected: FAIL
diff --git a/tests/wpt/metadata/html/semantics/document-metadata/styling/LinkStyle.html.ini b/tests/wpt/metadata/html/semantics/document-metadata/styling/LinkStyle.html.ini
index 5d4198b43a2..073d9c65b92 100644
--- a/tests/wpt/metadata/html/semantics/document-metadata/styling/LinkStyle.html.ini
+++ b/tests/wpt/metadata/html/semantics/document-metadata/styling/LinkStyle.html.ini
@@ -9,9 +9,6 @@
[The LinkStyle interface\'s sheet attribute must return StyleSheet object; the disabled attribute must be same as the StyleSheet\'s disabled attribute]
expected: FAIL
- [The title must be the same as the value of the element\'s title content attribute]
- expected: FAIL
-
[The media must be the same as the value of the element\'s media content attribute, or the empty string if it is omitted]
expected: FAIL