| Index: third_party/WebKit/LayoutTests/http/tests/xmlviewer/no-unique-origin.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/xmlviewer/no-unique-origin.html b/third_party/WebKit/LayoutTests/http/tests/xmlviewer/no-unique-origin.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..432f0ebb04bab06e9a2eac215766cfb978029797
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/xmlviewer/no-unique-origin.html
|
| @@ -0,0 +1,15 @@
|
| +<!doctype html>
|
| +<script src="/resources/testharness.js"></script>
|
| +<script src="/resources/testharnessreport.js"></script>
|
| +<title>Tests that a unique origin is NOT created for XML tree viewer when script is enabled</title>
|
| +<script>
|
| + function checkSourceXML() {
|
| + done();
|
| + }
|
| +
|
| + function onload() {
|
| + xmlWindow = window.open('resources/sample.xml');
|
| + xmlWindow.onload = checkSourceXML;
|
| + }
|
| +</script>
|
| +<body onload="onload();">
|
|
|