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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/Window/resources/file-origin-window-open-frame.html

Issue 1799423003: Apply WebSettings before initializing the main frame. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix comment. Created 4 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
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/dom/Window/file-origin-window-open-expected.txt ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <script>
2 window.addEventListener('message', function () {
3 var exc = null;
4 try {
5 newWindow.document;
6 } catch (e) {
7 exc = e;
8 }
9 top.postMessage(exc ? '' + exc : null, '*');
10 });
11 newWindow = window.open('data:text/html,<script>opener.postMessage("runTest","*" );</scr' + 'ipt>');
12 </script>
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/dom/Window/file-origin-window-open-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698