Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / frames / resources / detach-frame-nested-subframe.html
blob189cd4899491593a84c7732a6ebc593bf1509fe8
1 <!DOCTYPE html>
2 <html>
3 <script>
4 function createXHR(url) {
5 var x = new XMLHttpRequest();
6 x.onabort = window.parent.removeFrame;
7 x.open('GET', url);
8 return x;
11 function runTest () {
12 var x1 = createXHR('resources/not-there.txt');
13 var x2 = createXHR('resources/not-there-either.txt');
14 x1.send();
15 x2.send();
17 window.onload = runTest;
18 </script>
19 </html>