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

Unified Diff: LayoutTests/wake_lock/wakelock-api.html

Issue 1084923002: Wake Lock API implementation (Blink part) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Applied review comments Created 5 years, 7 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-api.html
diff --git a/LayoutTests/wake_lock/wakelock-api.html b/LayoutTests/wake_lock/wakelock-api.html
new file mode 100644
index 0000000000000000000000000000000000000000..5a92d51627d4af1767cfb231c4399ba205862339
--- /dev/null
+++ b/LayoutTests/wake_lock/wakelock-api.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<html>
+<body>
+<script src="../resources/testharness.js"></script>
+<script src="../resources/testharnessreport.js"></script>
+<script>
+
+test(function() {
+ assert_idl_attribute(document, 'keepScreenAwake');
+ assert_equals(typeof document.keepScreenAwake, 'boolean');
+}, 'Test that the WakeLock API is present.');
+
+test(function() {
+ document.keepScreenAwake = true;
+ assert_true(document.keepScreenAwake);
+
+ document.keepScreenAwake = false;
+ assert_false(document.keepScreenAwake);
+}, 'Test that document.keepScreenAwake preserves set value');
+
+</script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698