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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/misc/resources/iframe-big.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
Index: third_party/WebKit/LayoutTests/http/tests/misc/resources/iframe-big.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/misc/resources/iframe-big.html b/third_party/WebKit/LayoutTests/http/tests/misc/resources/iframe-big.html
new file mode 100644
index 0000000000000000000000000000000000000000..a3975d95435c1ba39fd22daccacbad2f5f62f613
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/http/tests/misc/resources/iframe-big.html
@@ -0,0 +1,9 @@
+<!DOCTYPE html>
+<p>need something shows here.</p>
+<p style="position: absolute; left: 1000px; top: 1000px;">make the iframe big enough</p>
+
+<script>
+window.addEventListener('message', (event) => {
+ event.source.postMessage({}, '*');
+});
+</script>

Powered by Google App Engine
This is Rietveld 408576698