OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script> | |
5 if (window.internals) | |
6 window.internals.settings.setCSSExclusionsEnabled(true); | |
7 </script> | |
8 | |
9 <!-- | 4 <!-- |
10 Test test creates a rectilinear polygon with this shape: | 5 Test test creates a rectilinear polygon with this shape: |
11 XXXX | 6 XXXX |
12 XXXX | 7 XXXX |
13 XXXX | 8 XXXX |
14 --> | 9 --> |
15 | 10 |
16 <style id="stylesheet"> | 11 <style id="stylesheet"> |
17 #shape-inside, #shape-outline { | 12 #shape-inside, #shape-outline { |
18 position: absolute; | 13 position: absolute; |
(...skipping 27 matching lines...) Expand all Loading... |
46 <body> | 41 <body> |
47 <div id="shape-inside">XXXX XXXX XXXX</div> | 42 <div id="shape-inside">XXXX XXXX XXXX</div> |
48 <svg id="shape-outline" xmlns="http://www.w3.org/2000/svg"> | 43 <svg id="shape-outline" xmlns="http://www.w3.org/2000/svg"> |
49 <polygon points="200,0 400,0 400,50 300,50 300,100 200,100 200,150 0,150 0
,100 100,100 100,50 200,50"/> | 44 <polygon points="200,0 400,0 400,50 300,50 300,100 200,100 200,150 0,150 0
,100 100,100 100,50 200,50"/> |
50 </svg> | 45 </svg> |
51 <p id="informative-text"> | 46 <p id="informative-text"> |
52 This test requires the Ahem font. It creates a rectilinear polygonal shape
-inside and a | 47 This test requires the Ahem font. It creates a rectilinear polygonal shape
-inside and a |
53 matching stroked SVG polygon. The content should just fill the shape with
solid green.</p> | 48 matching stroked SVG polygon. The content should just fill the shape with
solid green.</p> |
54 </html> | 49 </html> |
55 | 50 |
OLD | NEW |