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

Unified Diff: LayoutTests/wake_lock/wakelock-in-nested-frame.html

Issue 1084923002: Wake Lock API implementation (Blink part) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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
Index: LayoutTests/wake_lock/wakelock-in-nested-frame.html
diff --git a/LayoutTests/wake_lock/wakelock-in-nested-frame.html b/LayoutTests/wake_lock/wakelock-in-nested-frame.html
new file mode 100644
index 0000000000000000000000000000000000000000..dd765f366c6674a720cc593a34399b0b04b69f89
--- /dev/null
+++ b/LayoutTests/wake_lock/wakelock-in-nested-frame.html
@@ -0,0 +1,39 @@
+<!DOCTYPE html>
+<html>
+<body>
+<script src="../resources/js-test.js"></script>
mlamouri (slow - plz ping) 2015/04/28 08:00:25 Please use test-harness.js
+<script>
+description("Test WakeLock API in a nested context.");
+
+if (!window.testRunner)
+ debug('This test cannot be run without the TestRunner');
+
+gc();
+jsTestIsAsync = true;
+
+function callback(nestedDocument) {
+ if (nestedDocument.keepScreenAwake != false)
+ testFailed("On start keepScreenAwake should be false");
+ debug('keepScreenAwake should be initialized to false in the nested context');
+ nestedDocument.keepScreenAwake = true;
+ if (nestedDocument.keepScreenAwake != true)
+ testFailed("keepScreenAwake should be save value");
+ debug('keepScreenAwake save value in the nested context');
+ setTimeout(finishJSTest, 0);
+}
+
+// called from the nested context when it's loaded
+function startTest(nested) {
+ nested.runTest(callback);
+}
+// set keepScreenAwake to true in main frame
+document.keepScreenAwake = true;
+
+// Load the nested document
+var iframe = document.createElement("iframe");
+document.body.appendChild(iframe);
+iframe.src = "resources/nested-frame.html";
+
+</script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698