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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/misc/iframe-script-modify-attr.html

Issue 2507023002: Support script modify iframe scrolling, marginWidth and marginHeight attr (Closed)
Patch Set: remove using namespace Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/misc/iframe-script-modify-attr-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/http/tests/misc/iframe-script-modify-attr.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/misc/iframe-script-modify-attr.html b/third_party/WebKit/LayoutTests/http/tests/misc/iframe-script-modify-attr.html
new file mode 100644
index 0000000000000000000000000000000000000000..d4d0223396c1d67575a665afae4d5426498eb537
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/http/tests/misc/iframe-script-modify-attr.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+
+<script>
+window.addEventListener("message", (event) => {
+ if (testRunner)
+ testRunner.notifyDone();
+});
+
+window.onload = () => {
+ if (testRunner)
+ testRunner.waitUntilDone();
+ var ifr = document.getElementById('ifr');
+ ifr.scrolling = 'no';
+ ifr.marginWidth = '50';
+ ifr.marginHeight = '100';
+ ifr.contentWindow.postMessage({}, '*');
+};
+</script>
+
+<iframe id="ifr" scrolling="yes" style="width:200px;height:200px;"
+ src="http://localhost:8000/misc/resources/iframe-big.html">
+</iframe>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/misc/iframe-script-modify-attr-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698