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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/frames/deep-nested-about-blank.html

Issue 1410093006: Exempt about: URLs from self-reference check for nested frames (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 | « no previous file | third_party/WebKit/LayoutTests/fast/frames/srcdoc/srcdoc-deep-nested-frames.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../../resources/testharness.js"></script>
3 <script src="../../resources/testharnessreport.js"></script>
4 <script>
5 window.onload = function() {
6 test(function() {
7 var doc = document;
8 for (i = 0; i < 10; i++) {
9 var frame = doc.createElement('iframe');
10 frame.src = 'about:blank';
11 doc.body.appendChild(frame);
12 assert_not_equals(frame.contentDocument, null);
13 assert_not_equals(frame.clientHeight, 0);
14 doc = frame.contentDocument;
15 }
16 }, 'Nested about:blank iframes should not be blocked as self-referential ifr ames.');
17 }
18 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/frames/srcdoc/srcdoc-deep-nested-frames.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698