Title: [92247] trunk/Source/WebCore
Revision
92247
Author
[email protected]
Date
2011-08-02 16:47:26 -0700 (Tue, 02 Aug 2011)

Log Message

Remove LegacyDefaultOptionalArguments flag from History.idl
https://bugs.webkit.org/show_bug.cgi?id=65572

Patch by Mark Pilgrim <[email protected]> on 2011-08-02
Reviewed by Adam Barth.

No new tests, all existing tests pass.

* page/History.idl:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (92246 => 92247)


--- trunk/Source/WebCore/ChangeLog	2011-08-02 23:41:25 UTC (rev 92246)
+++ trunk/Source/WebCore/ChangeLog	2011-08-02 23:47:26 UTC (rev 92247)
@@ -1,5 +1,16 @@
 2011-08-02  Mark Pilgrim  <[email protected]>
 
+        Remove LegacyDefaultOptionalArguments flag from History.idl
+        https://bugs.webkit.org/show_bug.cgi?id=65572
+
+        Reviewed by Adam Barth.
+
+        No new tests, all existing tests pass.
+
+        * page/History.idl:
+
+2011-08-02  Mark Pilgrim  <[email protected]>
+
         Remove LegacyDefaultOptionalArguments flag from WebKitAnimationList.idl
         https://bugs.webkit.org/show_bug.cgi?id=65571
 

Modified: trunk/Source/WebCore/page/History.idl (92246 => 92247)


--- trunk/Source/WebCore/page/History.idl	2011-08-02 23:41:25 UTC (rev 92246)
+++ trunk/Source/WebCore/page/History.idl	2011-08-02 23:47:26 UTC (rev 92247)
@@ -26,7 +26,6 @@
 module window {
 
     interface [
-        LegacyDefaultOptionalArguments,
 #if defined(V8_BINDING) && V8_BINDING
         CheckDomainSecurity,
 #endif
@@ -41,7 +40,7 @@
 
         [DoNotCheckDomainSecurity, CallWith=ScriptExecutionContext] void back();
         [DoNotCheckDomainSecurity, CallWith=ScriptExecutionContext] void forward();
-        [DoNotCheckDomainSecurity, CallWith=ScriptExecutionContext] void go(in long distance);
+        [DoNotCheckDomainSecurity, CallWith=ScriptExecutionContext] void go(in [Optional=CallWithDefaultValue] long distance);
         
         [Custom, EnabledAtRuntime] void pushState(in any data, in DOMString title, in optional DOMString url)
             raises(DOMException);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to