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

Side by Side Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-sibling-block-dimension-change-needs-relayout-expected.html

Issue 20806004: Remove Explicit Shapes Enablement in Tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Enabled by default, no need to call internals Created 7 years, 4 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 | Annotate | Revision Log
OLDNEW
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 <style> 4 <style>
9 .content{ 5 .content{
10 width: 400px; 6 width: 400px;
11 height: 800px; 7 height: 800px;
12 -webkit-shape-inside: polygon(0 0, 100% 0, 100% 100%); 8 -webkit-shape-inside: polygon(0 0, 100% 0, 100% 100%);
13 outline: 2px solid black; 9 outline: 2px solid black;
14 } 10 }
15 #firstParagraph { padding-top: 100px; } 11 #firstParagraph { padding-top: 100px; }
16 </style> 12 </style>
17 </head> 13 </head>
(...skipping 10 matching lines...) Expand all
28 of making a daisy-chain would be worth the trouble of getting up and 24 of making a daisy-chain would be worth the trouble of getting up and
29 picking the daisies, when suddenly a White Rabbit with pink eyes ran 25 picking the daisies, when suddenly a White Rabbit with pink eyes ran
30 close by her.</p> 26 close by her.</p>
31 </div> 27 </div>
32 <p> 28 <p>
33 A triangle shape is defined through the left-top, right-top, right-bottom points of the rectangle. 29 A triangle shape is defined through the left-top, right-top, right-bottom points of the rectangle.
34 The content should respect the shape-inside polygon boundaries after we applied the padding.</p> 30 The content should respect the shape-inside polygon boundaries after we applied the padding.</p>
35 <p>Bug <a href="http://webkit.org/b/112929 ">112929</a>: [CSS Exclusions] Increa sing padding does not correctly layout child blocks</p> 31 <p>Bug <a href="http://webkit.org/b/112929 ">112929</a>: [CSS Exclusions] Increa sing padding does not correctly layout child blocks</p>
36 </body> 32 </body>
37 </html> 33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698