Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / cache / x-frame-options-304.html
blob984fcf3fb8d009ea5af8de57caa14e1e8e18b9f5
1 <body>
2 Test that a 304 response for a resource with an X-Frame-Options header doesn't cause us to crash.
3 <script>
4 if (window.testRunner) {
5 testRunner.dumpAsText();
6 testRunner.waitUntilDone();
9 testCalls = 0;
11 function test() {
12 testCalls++;
13 if (testCalls > 1) {
14 testRunner.notifyDone();
15 return;
18 document.body.removeChild(document.body.lastChild);
19 var iframe = document.createElement("iframe");
20 iframe.src = "resources/x-frame-options.php"
21 document.body.appendChild(iframe);
23 </script>
24 <iframe src="resources/x-frame-options.php"></iframe>
25 </body>