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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/frames/expand-grid-with-zero-size-child-frameset-crash.html

Issue 1848033004: Initialize child framesets when they become part of the parent frameset grid. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 <script>
2 if (window.testRunner)
3 testRunner.dumpAsText();
4 onload = ()=> {
5 // Force layout first.
6 document.documentElement.offsetTop;
7
8 // Then expand the root frameset grid from 2x1 to 2x2.
9 document.getElementById("rootSet").setAttribute("rows", "*, 0");
10 }
11 </script>
12 <frameset id="rootSet" cols="0, *">
13 <frame id="firstChild"></frame>
14 <frame src="data:text/html,PASS if no crash or assertion failure."></frame>
15 <frameset>
16 <frame src="data:text/html,3"></frame>
17 </frameset>
18 </frameset>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698