Title: [150218] trunk/Source/WebCore
Revision
150218
Author
commit-qu...@webkit.org
Date
2013-05-16 17:12:39 -0700 (Thu, 16 May 2013)

Log Message

Web Inspector: Fix optional value of promptText in Inspector.json
https://bugs.webkit.org/show_bug.cgi?id=116203

Patch by Seokju Kwon <seokju.k...@gmail.com> on 2013-05-16
Reviewed by Joseph Pecoraro.

Merge from https://chromiumcodereview.appspot.com/14672031.

No new tests needed.

* inspector/Inspector.json:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (150217 => 150218)


--- trunk/Source/WebCore/ChangeLog	2013-05-17 00:11:54 UTC (rev 150217)
+++ trunk/Source/WebCore/ChangeLog	2013-05-17 00:12:39 UTC (rev 150218)
@@ -1,3 +1,16 @@
+2013-05-16  Seokju Kwon  <seokju.k...@gmail.com>
+
+        Web Inspector: Fix optional value of promptText in Inspector.json
+        https://bugs.webkit.org/show_bug.cgi?id=116203
+
+        Reviewed by Joseph Pecoraro.
+
+        Merge from https://chromiumcodereview.appspot.com/14672031.
+
+        No new tests needed.
+
+        * inspector/Inspector.json:
+
 2013-05-16  Mary Wu  <mary...@torchmobile.com.cn>
 
         [BlackBerry] Unable to download blob resource

Modified: trunk/Source/WebCore/inspector/Inspector.json (150217 => 150218)


--- trunk/Source/WebCore/inspector/Inspector.json	2013-05-17 00:11:54 UTC (rev 150217)
+++ trunk/Source/WebCore/inspector/Inspector.json	2013-05-17 00:12:39 UTC (rev 150218)
@@ -458,7 +458,7 @@
                 "description": "Accepts or dismisses a _javascript_ initiated dialog (alert, confirm, prompt, or onbeforeunload).",
                 "parameters": [
                     { "name": "accept", "type": "boolean", "description": "Whether to accept or dismiss the dialog." },
-                    { "name": "promptText", "type": "string", "optional": "true", "description": "The text to enter into the dialog prompt before accepting. Used only if this is a prompt dialog." }
+                    { "name": "promptText", "type": "string", "optional": true, "description": "The text to enter into the dialog prompt before accepting. Used only if this is a prompt dialog." }
                 ],
                 "hidden": true
             }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to