Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / file / file-crash-by-runin-parent.html
blobf2283eb8b8f203d08fea54ceb3ea983e07b40006
1 <style>
2 .c0 {
3 display: list-item;
5 .c7 {
6 -webkit-wrap-flow: auto;
7 display: run-in;
9 </style>
10 <script>
11 // This test requires ASAN to detect a regression.
12 onload = function() {
13 document.body.innerHTML += '<nav class="c0"></nav>';
14 document.designMode = 'on';
15 window.getSelection().setBaseAndExtent(document.createElement('q'), 1, document.querySelector('nav'), 6);
16 document.designMode = 'off';
17 document.querySelector('nav').classList.add('c7');
19 if (window.testRunner)
20 testRunner.dumpAsText();
21 document.body.innerHTML += 'PASS if not crash.';
23 </script>
24 <body><rp class="c7"><input type="file"></rp></body>