Changeset 99389 in webkit
- Timestamp:
- Nov 6, 2011, 6:07:50 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 10 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/fast/dom/Window/window-properties-expected.txt (modified) (1 diff)
-
LayoutTests/platform/gtk/fast/dom/Window/window-properties-expected.txt (modified) (1 diff)
-
LayoutTests/platform/mac/fast/dom/Window/window-properties-expected.txt (modified) (1 diff)
-
LayoutTests/platform/qt-wk2/fast/dom/Window/window-properties-expected.txt (modified) (1 diff)
-
LayoutTests/platform/qt/fast/dom/Window/window-properties-expected.txt (modified) (1 diff)
-
LayoutTests/platform/win/fast/dom/Window/window-properties-expected.txt (modified) (1 diff)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/dom/BeforeLoadEvent.h (modified) (1 diff)
-
Source/WebCore/dom/BeforeLoadEvent.idl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r99388 r99389 1 2011-11-06 Dominic Cooney <dominicc@chromium.org> 2 3 Remove initBeforeLoadEvent method 4 https://bugs.webkit.org/show_bug.cgi?id=71636 5 6 Reviewed by Adam Barth. 7 8 * fast/dom/Window/window-properties-expected.txt: 9 * platform/gtk/fast/dom/Window/window-properties-expected.txt: 10 * platform/mac/fast/dom/Window/window-properties-expected.txt: 11 * platform/qt-wk2/fast/dom/Window/window-properties-expected.txt: 12 * platform/qt/fast/dom/Window/window-properties-expected.txt: 13 * platform/win/fast/dom/Window/window-properties-expected.txt: 14 1 15 2011-11-06 Ryosuke Niwa <rniwa@webkit.org> 2 16 -
trunk/LayoutTests/fast/dom/Window/window-properties-expected.txt
r97738 r99389 148 148 window.BeforeLoadEvent.prototype.MOUSEUP [number] 149 149 window.BeforeLoadEvent.prototype.SELECT [number] 150 window.BeforeLoadEvent.prototype.initBeforeLoadEvent [function]151 150 window.BeforeLoadEvent.prototype.initEvent [function] 152 151 window.BeforeLoadEvent.prototype.preventDefault [function] -
trunk/LayoutTests/platform/gtk/fast/dom/Window/window-properties-expected.txt
r99285 r99389 148 148 window.BeforeLoadEvent.prototype.MOUSEUP [number] 149 149 window.BeforeLoadEvent.prototype.SELECT [number] 150 window.BeforeLoadEvent.prototype.initBeforeLoadEvent [function]151 150 window.BeforeLoadEvent.prototype.initEvent [function] 152 151 window.BeforeLoadEvent.prototype.preventDefault [function] -
trunk/LayoutTests/platform/mac/fast/dom/Window/window-properties-expected.txt
r99021 r99389 173 173 window.BeforeLoadEvent.prototype.MOUSEUP [number] 174 174 window.BeforeLoadEvent.prototype.SELECT [number] 175 window.BeforeLoadEvent.prototype.initBeforeLoadEvent [function]176 175 window.BeforeLoadEvent.prototype.initEvent [function] 177 176 window.BeforeLoadEvent.prototype.preventDefault [function] -
trunk/LayoutTests/platform/qt-wk2/fast/dom/Window/window-properties-expected.txt
r97738 r99389 146 146 window.BeforeLoadEvent.prototype.MOUSEUP [number] 147 147 window.BeforeLoadEvent.prototype.SELECT [number] 148 window.BeforeLoadEvent.prototype.initBeforeLoadEvent [function]149 148 window.BeforeLoadEvent.prototype.initEvent [function] 150 149 window.BeforeLoadEvent.prototype.preventDefault [function] -
trunk/LayoutTests/platform/qt/fast/dom/Window/window-properties-expected.txt
r99021 r99389 146 146 window.BeforeLoadEvent.prototype.MOUSEUP [number] 147 147 window.BeforeLoadEvent.prototype.SELECT [number] 148 window.BeforeLoadEvent.prototype.initBeforeLoadEvent [function]149 148 window.BeforeLoadEvent.prototype.initEvent [function] 150 149 window.BeforeLoadEvent.prototype.preventDefault [function] -
trunk/LayoutTests/platform/win/fast/dom/Window/window-properties-expected.txt
r97738 r99389 148 148 window.BeforeLoadEvent.prototype.MOUSEUP [number] 149 149 window.BeforeLoadEvent.prototype.SELECT [number] 150 window.BeforeLoadEvent.prototype.initBeforeLoadEvent [function]151 150 window.BeforeLoadEvent.prototype.initEvent [function] 152 151 window.BeforeLoadEvent.prototype.preventDefault [function] -
trunk/Source/WebCore/ChangeLog
r99386 r99389 1 2011-11-06 Dominic Cooney <dominicc@chromium.org> 2 3 Remove initBeforeLoadEvent method 4 https://bugs.webkit.org/show_bug.cgi?id=71636 5 6 Reviewed by Adam Barth. 7 8 Test: fast/dom/Window/window-properties.html 9 10 * dom/BeforeLoadEvent.h: 11 * dom/BeforeLoadEvent.idl: 12 1 13 2011-11-06 Adam Barth <abarth@webkit.org> 2 14 -
trunk/Source/WebCore/dom/BeforeLoadEvent.h
r98146 r99389 58 58 } 59 59 60 void initBeforeLoadEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& url)61 {62 if (dispatched())63 return;64 65 initEvent(type, canBubble, cancelable);66 67 m_url = url;68 }69 70 60 const String& url() const { return m_url; } 71 61 -
trunk/Source/WebCore/dom/BeforeLoadEvent.idl
r97419 r99389 31 31 CustomConstructor 32 32 ] BeforeLoadEvent : Event { 33 void initBeforeLoadEvent(in [Optional=CallWithDefaultValue] DOMString type,34 in [Optional=CallWithDefaultValue] boolean canBubble,35 in [Optional=CallWithDefaultValue] boolean cancelable,36 in [Optional=CallWithDefaultValue] DOMString url);37 33 readonly attribute DOMString url; 38 34 };
Note:
See TracChangeset
for help on using the changeset viewer.