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

Side by Side 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, 2 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 unified diff | Download patch
OLDNEW
1 Tests the DOM bindings for the ping attribute 1 Tests the DOM bindings for the ping attribute
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS anchor.ping is "" 6 PASS anchor.ping is []
7 PASS anchor.ping is "p1" 7 PASS anchor.ping is ["p1"]
8 PASS anchor.getAttribute("ping") is "p2" 8 PASS anchor.getAttribute("ping") is "p2"
9 PASS anchor.ping is ["p2","p3"]
10 PASS anchor.ping.contains("p3") is true
11 PASS anchor.ping is ["p3"]
9 PASS anchor.getAttribute("ping") is "null" 12 PASS anchor.getAttribute("ping") is "null"
10 PASS anchor.ping is "null" 13 PASS anchor.ping is ["null"]
11 PASS area.ping is "" 14 PASS area.ping is []
12 PASS area.ping is "p1" 15 PASS area.ping is ["p1"]
13 PASS area.getAttribute("ping") is "p2" 16 PASS area.getAttribute("ping") is "p2"
17 PASS area.ping is ["p2","p3"]
18 PASS area.ping.contains("p3") is true
19 PASS area.ping is ["p3"]
14 PASS area.getAttribute("ping") is "null" 20 PASS area.getAttribute("ping") is "null"
15 PASS area.ping is "null" 21 PASS area.ping is ["null"]
16 PASS successfullyParsed is true 22 PASS successfullyParsed is true
17 23
18 TEST COMPLETE 24 TEST COMPLETE
19 25
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698