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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/parser/disable-frameset-ok-flag-inside-template.html

Issue 2135203002: A frameset tag inside template should be simply ignored. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | « no previous file | third_party/WebKit/LayoutTests/fast/parser/resources/frameset-inside-template.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 <link rel=help href="https://html.spec.whatwg.org/multipage/syntax.html#parsing- main-inhead">
3 <script src="../../resources/testharness.js"></script>
4 <script src="../../resources/testharnessreport.js"></script>
5 <body>
6 <script>
7 var test = async_test("A frameset tag inside template should be simply ignored." );
8
9 var iframe = document.createElement("iframe");
10 iframe.onload = function() {
11 document.body.removeChild(iframe);
12 test.done();
13 };
14 iframe.src = './resources/frameset-inside-template.html';
15 document.body.appendChild(iframe);
16 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/parser/resources/frameset-inside-template.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698