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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/css/opacity-not-supporting-percentage.html

Issue 1441233006: Move remaining SVG properties into CSSPropertyParser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add tests for opacity+percentage combination 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/svg/css/opacity-not-supporting-percentage-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <script src="../../resources/js-test.js"></script>
5 </head>
6 <body>
7 <script>
8 description("Test opacity properties combined with percentage.");
9
10 shouldBeFalse('CSS.supports("stroke-opacity", "0%")');
11 shouldBeFalse('CSS.supports("stroke-opacity", "100%")');
12
13 shouldBeFalse('CSS.supports("flood-opacity", "0%")');
14 shouldBeFalse('CSS.supports("flood-opacity", "100%")');
15
16 shouldBeFalse('CSS.supports("stop-opacity", "0%")');
17 shouldBeFalse('CSS.supports("stop-opacity", "100%")');
18
19 shouldBeFalse('CSS.supports("opacity", "0%")');
20 shouldBeFalse('CSS.supports("opacity", "100%")');
21 </script>
22 </body>
23 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/svg/css/opacity-not-supporting-percentage-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698