Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / custom / imports-custom-element-abort.html
blob397d4e8985ab718297a5522c93d85721c10a0fa4
1 <!DOCTYPE html>
2 <script src="../../../resources/testharness.js"></script>
3 <script src="../../../resources/testharnessreport.js"></script>
4 <body>
5 <script>
6 t = async_test('Abort page inside custom element callback inside import');
8 function checkLater() {
9 window.setTimeout(check, 0);
12 function check() {
13 t.done();
15 </script>
16 <iframe src="resources/import-custom-element-abort-parent.html"></iframe>
17 </body>