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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/backgrounds/composite-highlight-is-invalid.html

Issue 1734863003: Remove webkit-background-composite (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
(Empty)
1 <style>
2 #test1 { -webkit-background-composite: highlight; }
3 #test2 { -webkit-background-composite: invalid; }
4 </style>
5 Tests that highlight is treated the same as an invalid value for a composite ope ration:<br>
6 <div id="result"></div>
7 <span id="test1"></span>
8 <span id="test2"></span>
9 <script>
10 value1 = window.getComputedStyle(document.getElementById('test1')).webkitBackgro undComposite;
11 value2 = window.getComputedStyle(document.getElementById('test2')).webkitBackgro undComposite;
12 result.innerText = value1 === value2 ? "PASS" : "FAIL";
13 if (window.testRunner)
14 testRunner.dumpAsText();
15 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698