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

Side by Side Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-dynamic-nested-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 .container { 5 .container {
10 position: relative; 6 position: relative;
11 width: 200px; 7 width: 200px;
12 height: 200px; 8 height: 200px;
13 overflow-wrap: break-word; 9 overflow-wrap: break-word;
14 border: 2px solid blue; 10 border: 2px solid blue;
15 font: 40px/1 Ahem, sans-serif; 11 font: 40px/1 Ahem, sans-serif;
16 color: green; 12 color: green;
17 } 13 }
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 <p>Setting outside-shape with no prior entry</p> 49 <p>Setting outside-shape with no prior entry</p>
54 <div id='set-outside-shape' class='container shape outside'><div><div>xxxxxx xxxx</div></div></div> 50 <div id='set-outside-shape' class='container shape outside'><div><div>xxxxxx xxxx</div></div></div>
55 51
56 <p>Setting outside-shape with a prior entry</p> 52 <p>Setting outside-shape with a prior entry</p>
57 <div id='reset-outside-shape' class='container shape outside'><div><div>xxxx xxxxxx</div></div></div> 53 <div id='reset-outside-shape' class='container shape outside'><div><div>xxxx xxxxxx</div></div></div>
58 54
59 <p>Removing shape-outside with a prior entry</p> 55 <p>Removing shape-outside with a prior entry</p>
60 <div id='remove-outside-shape' class='container'><div><div>xxxxxxxxxx</div>< /div></div> 56 <div id='remove-outside-shape' class='container'><div><div>xxxxxxxxxx</div>< /div></div>
61 </body> 57 </body>
62 </html> 58 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698