Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css-grid-layout / grid-item-before-anonymous-child-crash.html
blob7d77de9f305419c654ae1b553f3a11105cc869df
1 <body>
2 <p>This test checks that adding a new grid item before an already existing item wrapped by an anonymous block does not crash under ASAN.</p>
3 <div id=grid style="display: grid; grid-auto-flow: stack;">X</div>
4 </body>
5 <script type="text/javascript">
6 if (window.testRunner)
7 testRunner.dumpAsText();
9 document.addEventListener("DOMContentLoaded", crash, false);
11 function crash() {
12 document.designMode = 'on';
13 window.getSelection().selectAllChildren(grid);
14 document.execCommand("Italic", null);
16 </script>