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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/domstring-attribute-reflection-expected.txt

Issue 1746293002: Adding Deprecation Message for <keygen> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2623
Patch Set: Undoing change. Created 4 years, 9 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 CONSOLE WARNING: The <keygen> element is deprecated and will be removed in M54, around October 2016. See https://www.chromestatus.com/features/5716060992962560 for more details.
1 Reflected DOMString attribute test for button/@name 2 Reflected DOMString attribute test for button/@name
2 Initial value: 3 Initial value:
3 PASS element.name is "" 4 PASS element.name is ""
4 PASS element.getAttribute("name") is null 5 PASS element.getAttribute("name") is null
5 Setting a value via the IDL attribute: 6 Setting a value via the IDL attribute:
6 PASS element.name = "foo"; element.name is "foo" 7 PASS element.name = "foo"; element.name is "foo"
7 PASS element.getAttribute("name") is "foo" 8 PASS element.getAttribute("name") is "foo"
8 Setting a value via the content attribute: 9 Setting a value via the content attribute:
9 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n" 10 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n"
10 PASS element.getAttribute("name") is " bar\n" 11 PASS element.getAttribute("name") is " bar\n"
(...skipping 944 matching lines...) Expand 10 before | Expand all | Expand 10 after
955 PASS element.getAttribute("bgcolor") is "123" 956 PASS element.getAttribute("bgcolor") is "123"
956 Setting non-string via the content attribute: 957 Setting non-string via the content attribute:
957 PASS element.setAttribute("bgcolor", 456); element.bgColor is "456" 958 PASS element.setAttribute("bgcolor", 456); element.bgColor is "456"
958 PASS element.getAttribute("bgcolor") is "456" 959 PASS element.getAttribute("bgcolor") is "456"
959 960
960 961
961 PASS successfullyParsed is true 962 PASS successfullyParsed is true
962 963
963 TEST COMPLETE 964 TEST COMPLETE
964 965
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698