Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / number / number-spinbutton-crash-on-detach.html
blob0c6c4c807d852395dd629f244467ba1a593cb380
1 <!DOCTYPE html>
2 <body>
3 <style>
4 body, iframe {
5 margin: 0;
6 padding: 0;
7 border: 0;
9 </style>
10 <iframe src="resources/number-spinbutton-crash-on-detach-frame.html"></iframe>
11 <input id="num1" type="number" value="0">
12 <script>
13 if (window.testRunner) {
14 testRunner.dumpAsText();
15 testRunner.waitUntilDone();
17 window.onload = function() {
18 var iframe = document.querySelector('iframe');
19 iframe.src = '';
20 iframe.srcdoc = '<script>gc(); alert("alert"); parent.finish();</' + 'script>';
23 function finish() {
24 document.body.innerHTML = 'PASS if not crashed.';
25 testRunner.notifyDone();
27 </script>