OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>Shape Outside Circle Valid Positions</title> | 4 <title>Shape Outside Circle Valid Positions</title> |
5 <link rel="author" title="Adobe" href="http://html.adobe.com/"> | 5 <link rel="author" title="Adobe" href="http://html.adobe.com/"> |
6 <link rel="author" title="Bear Travis" href="mailto:betravis@adobe.com"> | 6 <link rel="author" title="Bear Travis" href="mailto:betravis@adobe.com"> |
7 <link rel="author" title="Rebecca Hauck" href="mailto:rhauck@adobe.com"> | 7 <link rel="author" title="Rebecca Hauck" href="mailto:rhauck@adobe.com"> |
8 <link rel="reviewer" title="Alan Stearns" href="mailto:stearns@adobe.com
"> <!-- 2014-03-04 --> | 8 <link rel="reviewer" title="Alan Stearns" href="mailto:stearns@adobe.com
"> <!-- 2014-03-04 --> |
9 <link rel="help" href="http://www.w3.org/TR/css-shapes-1/#funcdef-circle
"> | 9 <link rel="help" href="http://www.w3.org/TR/css-shapes-1/#funcdef-circle
"> |
10 <link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shape-outside-
property"> | 10 <link rel="help" href="http://www.w3.org/TR/css-shapes-1/#shape-outside-
property"> |
11 <link rel="help" href="http://www.w3.org/TR/css3-values/#lengths"> | 11 <link rel="help" href="http://www.w3.org/TR/css3-values/#lengths"> |
12 <meta name="assert" content="A circle's position argument may be any of
the valid combinations: | 12 <meta name="assert" content="A circle's position argument may be any of
the valid combinations: |
13 [ percentage|length left|center|right ] | 13 [ percentage|length left|center|right ] |
14 or [ percentage|length left|center|right ] [ p
ercentage|length top|center|bottom ] | 14 or [ percentage|length left|center|right ] [ p
ercentage|length top|center|bottom ] |
15 or [ left|center|right ] | 15 or [ left|center|right ] |
16 or [ left|center|right top|center|bottom ] | 16 or [ left|center|right top|center|bottom ] |
17 or [ top|center|bottom ]. "> | 17 or [ top|center|bottom ]. "> |
18 <meta name="flags" content="dom"> | 18 <meta name="flags" content="dom"> |
19 <script src="/resources/testharness.js"></script> | 19 <script src="/resources/testharness.js"></script> |
20 <script src="/resources/testharnessreport.js"></script> | 20 <script src="/resources/testharnessreport.js"></script> |
21 <script src="support/parsing-utils.js"></script> | 21 <script src="support/parsing-utils.js"></script> |
22 </head> | 22 </head> |
23 <body> | 23 <body> |
24 <div id="log"></div> | 24 <div id="log"></div> |
25 <script type="text/javascript"> | 25 <script type="text/javascript"> |
26 generate_tests(ParsingUtils.testInlineStyle, ParsingUtils.buildPosit
ionTests('circle', true, 'inline', 'px')); | 26 generate_tests(ParsingUtils.testInlineStyle, ParsingUtils.buildPosit
ionTests('circle', true, 'inline', 'px')); |
27 generate_tests(ParsingUtils.testComputedStyle, ParsingUtils.buildPos
itionTests('circle', true, 'computed', 'px')); | 27 generate_tests(ParsingUtils.testComputedStyle, ParsingUtils.buildPos
itionTests('circle', true, 'computed', 'px')); |
28 </script> | 28 </script> |
29 </body> | 29 </body> |
30 </html> | 30 </html> |
OLD | NEW |