From dbe6cc8f35ab9979cc22350ce205f7abbdf00fe8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Philip=20J=C3=A4genstedt?=
Date: Sat, 14 Nov 2015 11:21:38 +0100
Subject: [PATCH] Remove navigator.yieldForStorageUpdates() due to lack of
implementation
Also rename NavigatorStorageUtils to NavigatorCookies.
Fixes https://github.com/whatwg/html/issues/334
---
source | 57 +++------------------------------------------------------
1 file changed, 3 insertions(+), 54 deletions(-)
diff --git a/source b/source
index be16d2e44ac..30e170caafb 100644
--- a/source
+++ b/source
@@ -637,11 +637,6 @@
be thought of as completely serialising the execution of all scripts in all browsing contexts.
- The navigator.yieldForStorageUpdates()
method, in
- this model, is equivalent to allowing other scripts to run while the calling script is
- blocked.
-
@@ -88860,10 +88855,6 @@ scheduleWork(); // queues a task to do lots of work
Displays a modal alert with the given message, and waits for the user to dismiss it.
- A call to the navigator.yieldForStorageUpdates()
method is
- implied when this method is invoked.
-
result = window . confirm
(message)
@@ -88872,10 +88863,6 @@ scheduleWork(); // queues a task to do lots of work
Displays a modal OK/Cancel prompt with the given message, waits for the user to dismiss it,
and returns true if the user clicks OK and false if the user clicks Cancel.
- A call to the navigator.yieldForStorageUpdates()
method is
- implied when this method is invoked.
-
result = window . prompt
(message [, default] )
@@ -88885,10 +88872,6 @@ scheduleWork(); // queues a task to do lots of work
and returns the value that the user entered. If the user cancels the prompt, then returns null
instead. If the second argument is present, then the given value is used as a default.
- A call to the navigator.yieldForStorageUpdates()
method is
- implied when this method is invoked.
-
@@ -89000,10 +88983,6 @@ scheduleWork(); // queues a task to do lots of work
Prompts the user to print the page.
- A call to the navigator.yieldForStorageUpdates()
method is
- implied when this method is invoked.
-
@@ -89116,10 +89095,6 @@ scheduleWork(); // queues a task to do lots of work
Prompts the user with the given page, waits for that page to close, and returns the return
value.
- A call to the navigator.yieldForStorageUpdates()
method
- is implied when this method is invoked.
-
@@ -89404,7 +89379,7 @@ interface WindowModal {
Navigator implements NavigatorLanguage;
Navigator implements NavigatorOnLine;
Navigator implements NavigatorContentUtils;
-Navigator implements NavigatorStorageUtils;
+Navigator implements NavigatorCookies;
Navigator implements NavigatorPlugins;