diff options
author | Abelardo E. Mendoza <abelardo22.9@gmail.com> | 2016-05-26 11:38:53 -0600 |
---|---|---|
committer | Abelardo E. Mendoza <abelardo22.9@gmail.com> | 2016-05-26 11:38:53 -0600 |
commit | d72dbb619893df2ec8059558e47e32f0847cc3c8 (patch) | |
tree | 3f91e7bad289b137f3662064fa1132fbcadc1d08 /components/script/dom/webidls/Window.webidl | |
parent | 116faa7617aa2cb648d57307505b23504900bc9f (diff) | |
download | servo-d72dbb619893df2ec8059558e47e32f0847cc3c8.tar.gz servo-d72dbb619893df2ec8059558e47e32f0847cc3c8.zip |
implement window alert with no params
Diffstat (limited to 'components/script/dom/webidls/Window.webidl')
-rw-r--r-- | components/script/dom/webidls/Window.webidl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/Window.webidl b/components/script/dom/webidls/Window.webidl index 8f3cbedcc8e..608f066ff11 100644 --- a/components/script/dom/webidls/Window.webidl +++ b/components/script/dom/webidls/Window.webidl @@ -48,8 +48,8 @@ //readonly attribute ApplicationCache applicationCache; // user prompts - //void alert(); void alert(DOMString message); + void alert(); //boolean confirm(optional DOMString message = ""); //DOMString? prompt(optional DOMString message = "", optional DOMString default = ""); //void print(); |