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

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

Issue 2266283002: Updating deprecation message for <keygen>. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 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 unified diff | Download patch
OLDNEW
1 CONSOLE WARNING: line 10: The <keygen> element is deprecated and will be removed in M54, around October 2016. See https://www.chromestatus.com/features/57160609 92962560 for more details. 1 CONSOLE WARNING: line 10: The <keygen> element is deprecated and will be removed in M56, around January 2017. See https://www.chromestatus.com/features/57160609 92962560 for more details.
2 Reflected DOMString attribute test for button/@name 2 Reflected DOMString attribute test for button/@name
3 Initial value: 3 Initial value:
4 PASS element.name is "" 4 PASS element.name is ""
5 PASS element.getAttribute("name") is null 5 PASS element.getAttribute("name") is null
6 Setting a value via the IDL attribute: 6 Setting a value via the IDL attribute:
7 PASS element.name = "foo"; element.name is "foo" 7 PASS element.name = "foo"; element.name is "foo"
8 PASS element.getAttribute("name") is "foo" 8 PASS element.getAttribute("name") is "foo"
9 Setting a value via the content attribute: 9 Setting a value via the content attribute:
10 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n" 10 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n"
11 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
956 PASS element.getAttribute("bgcolor") is "123" 956 PASS element.getAttribute("bgcolor") is "123"
957 Setting non-string via the content attribute: 957 Setting non-string via the content attribute:
958 PASS element.setAttribute("bgcolor", 456); element.bgColor is "456" 958 PASS element.setAttribute("bgcolor", 456); element.bgColor is "456"
959 PASS element.getAttribute("bgcolor") is "456" 959 PASS element.getAttribute("bgcolor") is "456"
960 960
961 961
962 PASS successfullyParsed is true 962 PASS successfullyParsed is true
963 963
964 TEST COMPLETE 964 TEST COMPLETE
965 965
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698