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

Side by Side Diff: LayoutTests/imported/csswg-test/css-shapes-1/shape-outside/values/shape-outside-ellipse-008.html

Issue 816533002: Import CSSWG Shapes tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: One more test expectations update Created 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Shape Outside Ellipse Invalid Position Argument Values</title>
5 <link rel="author" title="Adobe" href="http://html.adobe.com/">
6 <link rel="author" title="Rebecca Hauck" href="mailto:rhauck@adobe.com">
7 <link rel="reviewer" title="Alan Stearns" href="mailto:stearns@adobe.com "> <!-- 2014-03-04 -->
8 <link rel="help" href="http://www.w3.org/TR/css-shapes-1/#funcdef-ellips e">
9 <link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shape-outside- property">
10 <meta name="assert" content="This test verifies that invalid position ar guments on ellipse() don't parse">
11 <meta name="flags" content="dom">
12 <script src="../../../../../resources/testharness.js"></script>
13 <script src="../../../../../resources/testharnessreport.js"></script>
14 <script src="support/parsing-utils.js"></script>
15 </head>
16 <body>
17 <div id="log"></div>
18 <script type="text/javascript">
19 var invalid_ellipse_position_tests = [
20 {"name": "ellipse(at foo)"},
21 {"name": "ellipse(at 50)"},
22 {"name": "ellipse(at 10px 20px 30px)"},
23 {"name": "ellipse(at 20% 30% 40%)"},
24 {"name": "ellipse(at 20px, 30px)"},
25 {"name": "ellipse(at 20%, 30%)"},
26 {"name": "ellipse(at 20px, 30px, 40px)"},
27 {"name": "ellipse(at 20%, 30%, 40%)"},
28 {"name": "ellipse(at closest-side)"},
29 {"name": "ellipse(at farthest-side)"},
30 {"name": "ellipse(at 20px 30px closest-side)"},
31 {"name": "ellipse(at 20px 30px farthest-side)"},
32 {"name": "ellipse(at 20px 30px foo)"},
33 {"name": "ellipse(at closest-side 20px 30px)"},
34 {"name": "ellipse(at farthest-side 20px 30px)"},
35 {"name": "ellipse(at 20% 30% closest-side)"},
36 {"name": "ellipse(at 20% 30% farthest-side)"},
37 {"name": "ellipse(at closest-side 20% 30%)"},
38 {"name": "ellipse(at farthest-side 20% 30%)"},
39 {"name": "ellipse(at closest-side farthest-side 20px)"},
40 {"name": "ellipse(at closest-side farthest-side 20%)"},
41 {"name": "ellipse(at farthest-side closest-side closest-side)"},
42 {"name": "ellipse(at farthest-side, closest-side, closest-side)" },
43 {"name": "ellipse(at left 50x top 50px bottom)"}
44 ];
45 generate_tests( ParsingUtils.testInlineStyle,
46 ParsingUtils.buildTestCases(invalid_ellipse_position _tests) );
47 </script>
48 </body>
49 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698