Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(179)

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/xmlviewer/no-unique-origin.html

Issue 2744413002: Set view source without creating a unique origin in XMLDocumentParser (Closed)
Patch Set: Add test Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!doctype html>
2 <script src="/resources/testharness.js"></script>
3 <script src="/resources/testharnessreport.js"></script>
4 <title>Tests that a unique origin is NOT created for XML tree viewer when script is enabled</title>
5 <script>
6 function checkSourceXML() {
7 done();
8 }
9
10 function onload() {
11 xmlWindow = window.open('resources/sample.xml');
12 xmlWindow.onload = checkSourceXML;
13 }
14 </script>
15 <body onload="onload();">
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698