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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/ping-attribute-dom-binding-expected.txt

Issue 1235603003: Use DOMSettableTokenList for {HTMLAnchorElement, HTMLAreaElement}.ping. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase it(2). Created 5 years, 3 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/fast/dom/ping-attribute-dom-binding-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/dom/ping-attribute-dom-binding-expected.txt b/third_party/WebKit/LayoutTests/fast/dom/ping-attribute-dom-binding-expected.txt
index c93e75304e4d2668f2acdba5d0dd4e05426f8740..4b4316719b299dd986a0ed6443aabc5a0000f714 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/ping-attribute-dom-binding-expected.txt
+++ b/third_party/WebKit/LayoutTests/fast/dom/ping-attribute-dom-binding-expected.txt
@@ -3,16 +3,22 @@ Tests the DOM bindings for the ping attribute
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-PASS anchor.ping is ""
-PASS anchor.ping is "p1"
+PASS anchor.ping is []
+PASS anchor.ping is ["p1"]
PASS anchor.getAttribute("ping") is "p2"
+PASS anchor.ping is ["p2","p3"]
+PASS anchor.ping.contains("p3") is true
+PASS anchor.ping is ["p3"]
PASS anchor.getAttribute("ping") is "null"
-PASS anchor.ping is "null"
-PASS area.ping is ""
-PASS area.ping is "p1"
+PASS anchor.ping is ["null"]
+PASS area.ping is []
+PASS area.ping is ["p1"]
PASS area.getAttribute("ping") is "p2"
+PASS area.ping is ["p2","p3"]
+PASS area.ping.contains("p3") is true
+PASS area.ping is ["p3"]
PASS area.getAttribute("ping") is "null"
-PASS area.ping is "null"
+PASS area.ping is ["null"]
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698