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

Side by Side Diff: LayoutTests/http/tests/security/javascriptURL/javascriptURL-execution-context-iframe-src-setAttributeNodeNS.html

Issue 143173003: Remove unused feature ElementSetAttributeNodeNS (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed failing test case expectation Created 6 years, 10 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 <html>
3 <head>
4 <script src="resources/javascriptURL-execution-context.js"></script>
5 <script>
6 function setter(frame, url) {
7 var newNode = document.createAttribute('src');
8 newNode.value = url;
9 frame.setAttributeNodeNS(newNode);
10 }
11 </script>
12 </head>
13 <body>
14 <p>This test passes as long as the word 'FAIL' and an accompanying message d o not appear in the subframe.</p>
15 <pre id='console'></pre>
16 <iframe id='aFrame' src='http://localhost:8000/security/resources/cross-fram e-iframe.html'></iframe>
17 </body>
18 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698