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

Unified Diff: third_party/WebKit/LayoutTests/installedapp/getinstalledrelatedapps-iframe.html

Issue 2800523004: Restrict navigator.getInstalledRelatedApps() to top-level frames (Closed)
Patch Set: update error (top-level frames -> top-level browing contexts) Created 3 years, 8 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/installedapp/NavigatorInstalledApp.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/installedapp/getinstalledrelatedapps-iframe.html
diff --git a/third_party/WebKit/LayoutTests/installedapp/getinstalledrelatedapps-iframe.html b/third_party/WebKit/LayoutTests/installedapp/getinstalledrelatedapps-iframe.html
new file mode 100644
index 0000000000000000000000000000000000000000..015604a3af69e3e414c13af63d25314ee6f6cd73
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/installedapp/getinstalledrelatedapps-iframe.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<script src="../resources/testharness.js"></script>
+<script src="../resources/testharnessreport.js"></script>
+<iframe srcdoc="
+<!DOCTYPE html>
+<script>
+window.top.promise_test(function() {
+ var expectedError = 'InvalidStateError';
+ var promise = navigator.getInstalledRelatedApps();
+ return window.top.promise_rejects(this, expectedError, promise);
+}, 'getInstalledRelatedApps() should error when called in an iframe.');
+</script>
+"></iframe>
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/installedapp/NavigatorInstalledApp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698