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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/variables/custom-properties-in-object-model-expected.txt

Issue 1405293012: [Variables] Enable get/setProperty and similar APIs from the CSSOM (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix CSSPropertyMetadata::isEnabledProperty Created 5 years, 1 month 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
(Empty)
1 PASS style.getPropertyValue("--important") is "green"
2 PASS style.getPropertyValue("--not-important") is "red"
3 PASS style.getPropertyValue("color") is "var(--important)"
4 PASS style.getPropertyPriority("--important") is "important"
5 PASS style.getPropertyPriority("--not-important") is ""
6 PASS style.getPropertyValue("--foo") is "papayawhip"
7 PASS style.getPropertyPriority("--foo") is ""
8 PASS style.getPropertyPriority("--important-foo") is "important"
9 PASS style.getPropertyValue("--important-foo") is ""
10 PASS style.removeProperty("--foo") is "papayawhip"
11 PASS style.getPropertyValue("--foo") is ""
12 PASS successfullyParsed is true
13
14 TEST COMPLETE
15
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698