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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/CSSStyleDeclaration/css-properties-case-sensitive-expected.txt

Issue 1533913003: Add willBeRemoved and replacedWillBeRemoved deprecation message helpers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add missing return Created 5 years 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: 'getComputedStyle(e).cssXx' (except .cssFloat) is deprecated an d will be removed in M50, around April 2016. Please use 'getComputedStyle(e).xx' instead. 1 CONSOLE WARNING: 'getComputedStyle(e).cssXx' (except .cssFloat) is deprecated an d will be removed in M50, around April 2016. Please use 'getComputedStyle(e).xx' instead. See https://www.chromestatus.com/features/5006796888473600 for more de tails.
2 This test checks that access to the CSS float property via JavaScript properties on DOM elements is case sensitive. The use of .CssFloat is deprecated and will be removed in M50. 2 This test checks that access to the CSS float property via JavaScript properties on DOM elements is case sensitive. The use of .CssFloat is deprecated and will be removed in M50.
3 3
4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
5 5
6 6
7 normal cases 7 normal cases
8 8
9 PASS element.style.float is 'left' 9 PASS element.style.float is 'left'
10 PASS element.style.Float is undefined. 10 PASS element.style.Float is undefined.
11 11
12 "css" prefix 12 "css" prefix
13 13
14 PASS element.style.cssFloat is 'left' 14 PASS element.style.cssFloat is 'left'
15 PASS element.style.CssFloat is 'left' 15 PASS element.style.CssFloat is 'left'
16 PASS element.style.Cssfloat is undefined. 16 PASS element.style.Cssfloat is undefined.
17 PASS element.style.cssfloat is undefined. 17 PASS element.style.cssfloat is undefined.
18 PASS successfullyParsed is true 18 PASS successfullyParsed is true
19 19
20 TEST COMPLETE 20 TEST COMPLETE
21 21
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698