Index: third_party/WebKit/LayoutTests/imported/wpt/dom/nodes/attributes.html |
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/dom/nodes/attributes.html b/third_party/WebKit/LayoutTests/imported/wpt/dom/nodes/attributes.html |
index 0f324ba42a192e9443d08ca68a7c1434d0f36477..8d983350df9df48f04801fb48a429477df3c4c19 100644 |
--- a/third_party/WebKit/LayoutTests/imported/wpt/dom/nodes/attributes.html |
+++ b/third_party/WebKit/LayoutTests/imported/wpt/dom/nodes/attributes.html |
@@ -20,23 +20,6 @@ |
var XML = "http://www.w3.org/XML/1998/namespace" |
var XMLNS = "http://www.w3.org/2000/xmlns/" |
-// AttrExodus |
-test(function() { |
- document.body.setAttribute("abc", "pass") |
- var attr = document.body.attributes[0] |
- assert_true(attr instanceof Attr, "should be an Attr") |
- assert_false(attr instanceof Node, "should not be a Node") |
- var removed_members = [ |
- "appendChild", |
- "insertBefore", |
- "childNodes", |
- ] |
- removed_members.forEach(function(m) { |
- assert_false(m in attr, m + " should not be supported") |
- }) |
- assert_equals(attr.value, "pass") |
-}, "AttrExodus") |
- |
// setAttribute exhaustive tests |
// Step 1 |
test(function() { |