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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/svg/svg-in-object-in-sandboxed-iframe.html

Issue 1645313002: Don't apply the SandboxPlugins flag until we know a plugin will be used (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Side-effecting assert == bad Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/http/tests/svg/svg-in-object-in-sandboxed-iframe.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/svg/svg-in-object-in-sandboxed-iframe.html b/third_party/WebKit/LayoutTests/http/tests/svg/svg-in-object-in-sandboxed-iframe.html
new file mode 100644
index 0000000000000000000000000000000000000000..dbcad5bc3633443890273c54afeee6473ce3c2f3
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/http/tests/svg/svg-in-object-in-sandboxed-iframe.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<script>
+if (window.testRunner)
+ testRunner.waitUntilDone();
+function finishTest() {
+ if (window.testRunner)
+ testRunner.notifyDone();
+}
Mike West 2016/02/24 13:30:55 You could turn this into a `testharness`-style tes
fs 2016/02/24 17:57:16 Done.
+</script>
+<iframe sandbox src="resources/object-svg.html"
Mike West 2016/02/24 13:30:55 You'd need to add `allow-same-origin` to do so.
fs 2016/02/24 17:57:16 And 'allow-scripts' too I guess.
+ style="border: none; margin: 0"
+ scrolling="no"
+ onload="finishTest()"></iframe>

Powered by Google App Engine
This is Rietveld 408576698