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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-crash-remove-positioned-item.html

Issue 2748983003: [css-grid] Fix crash removing positioned grid item (Closed)
Patch Set: Created 3 years, 9 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script>
3 if (window.testRunner)
4 testRunner.dumpAsText();
5 </script>
6 <p>crbug.com/700383 - [css-grid] Grid layouts go mostly blank</p>
7 <p>This test has PASSED if it does not CRASH on debug.</p>
8 <div id="grid" style="display: grid;">
9 <div>item</div>
10 <div id="abspositem" style="position: absolute;"></div>
11 </div>
12 <script>
13 document.body.offsetLeft;
14 document.getElementById("grid").removeChild(document.getElementById("absposite m"));
svillar 2017/03/15 10:03:54 Don't we need a test for the case of adding an abs
Manuel Rego 2017/03/15 10:59:26 Actually that part was not crashing before, but as
15 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698