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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-crash-out-of-flow-positioned-element.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
« no previous file with comments | « no previous file | LayoutTests/fast/css-grid-layout/grid-crash-out-of-flow-positioned-element-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <body style="display: inline-grid;"> 2 <body style="display: inline-grid;">
3 <style> 3 <style>
4 .absolutelyPositioned { position: absolute; } 4 .absolutelyPositioned { position: absolute; }
5 </style> 5 </style>
6 crbug.com/280451 - Heap-use-after-free in WebCore::RenderGrid::computePreferredT rackWidth</br> 6 crbug.com/280451 - Heap-use-after-free in WebCore::LayoutGrid::computePreferredT rackWidth</br>
7 This test has passed if it didn't crash. 7 This test has passed if it didn't crash.
8 <script> 8 <script>
9 if (window.testRunner) 9 if (window.testRunner)
10 testRunner.dumpAsText(); 10 testRunner.dumpAsText();
11 11
12 var cell = document.createElement("cell"); 12 var cell = document.createElement("cell");
13 cell.setAttribute("class", "absolutelyPositioned"); 13 cell.setAttribute("class", "absolutelyPositioned");
14 document.body.appendChild(cell); 14 document.body.appendChild(cell);
15 window.scrollBy(98, 28); 15 window.scrollBy(98, 28);
16 cell.setAttribute("class", "nonExistent"); 16 cell.setAttribute("class", "nonExistent");
17 </script> 17 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css-grid-layout/grid-crash-out-of-flow-positioned-element-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698