Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(688)

Unified Diff: third_party/WebKit/LayoutTests/imported/wpt/dom/nodes/attributes.html

Issue 2273143002: Update web-platform-tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update baseline Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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() {

Powered by Google App Engine
This is Rietveld 408576698