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

Side by Side Diff: LayoutTests/fast/text-autosizing/grid-dbcat.html

Issue 948343003: Move rendering/RenderGrid to layout/LayoutGrid (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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 <meta name="viewport" content="width=800"> 4 <meta name="viewport" content="width=800">
5 <style> 5 <style>
6 html { font-size: 16px; } 6 html { font-size: 16px; }
7 body { width: 800px; margin: 0; overflow-y: hidden; } 7 body { width: 800px; margin: 0; overflow-y: hidden; }
8 </style> 8 </style>
9 <script src="resources/autosizingTest.js"></script> 9 <script src="resources/autosizingTest.js"></script>
10 </head> 10 </head>
11 <body> 11 <body>
12 <div style="display: grid"> 12 <div style="display: grid">
13 <div> 13 <div>
14 This tests that RenderGrid creates an autosizing layout scope. 14 This tests that LayoutGrid creates an autosizing layout scope.
15 The test passes if it does not crash. 15 The test passes if it does not crash.
16 </div> 16 </div>
17 <div> 17 <div>
18 Lorem ipsum dolor sit amet, consectetur adipisicing elit, 18 Lorem ipsum dolor sit amet, consectetur adipisicing elit,
19 sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. 19 sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
20 </div> 20 </div>
21 </div> 21 </div>
22 <script> 22 <script>
23 if (window.testRunner) 23 if (window.testRunner)
24 testRunner.dumpAsText(); 24 testRunner.dumpAsText();
25 </script> 25 </script>
26 </body> 26 </body>
27 </html> 27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698