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

Side by Side Diff: LayoutTests/http/tests/xsl/resources/xslt-transform-with-javascript-disabled-mainframe.html

Issue 313173012: HTMLParser should use current value of scriptEnabled flag (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@WebKit-ADD
Patch Set: Created 6 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
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script>
4 function shouldNotBeExecuted()
5 {
6 var divElement = document.createElement("div");
7 divElement.innerHTML = "This text should not present";
8 document.body.appendChild(divElement);
9 }
10
11 </script>
12 </head>
13 <body>
14 <script>shouldNotBeExecuted()</script>
15 <iframe src="resources/xslt-transform-with-javascript-disabled.xml"></iframe>
16 </body>
17 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698