WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
62099
createEvent("PopStateEvent") raises NOT_SUPPORTED_ERR: DOM Exception 9
https://bugs.webkit.org/show_bug.cgi?id=62099
Summary
createEvent("PopStateEvent") raises NOT_SUPPORTED_ERR: DOM Exception 9
Paul Kinlan
Reported
2011-06-04 14:03:59 PDT
It is not possible to create a PopStateEvent using: document.createEvent("PopStateEvent"); It raises a: Error: NOT_SUPPORTED_ERR: DOM Exception 9 Therefore it is not possible to test applications that respond to History API changes (nav back for example) without invoking a navigation. I have a fix for this that I should be able to land pretty soon.
Attachments
A test case for createEvent and dispatch.
(338 bytes, text/html)
2011-06-04 14:05 PDT
,
Paul Kinlan
no flags
Details
My proposed patch and test
(4.33 KB, patch)
2011-06-04 15:29 PDT
,
Paul Kinlan
no flags
Details
Formatted Diff
Diff
My proposed patch and test +ChangeLog Fix
(4.33 KB, patch)
2011-06-04 15:39 PDT
,
Paul Kinlan
jorlow
: review-
Details
Formatted Diff
Diff
Fixes based on feedback from previous review.
(5.11 KB, patch)
2011-06-05 11:02 PDT
,
Paul Kinlan
sam
: review-
Details
Formatted Diff
Diff
Fixes based on feedback from previous review.
(5.57 KB, patch)
2011-06-06 08:23 PDT
,
Paul Kinlan
no flags
Details
Formatted Diff
Diff
Show Obsolete
(3)
View All
Add attachment
proposed patch, testcase, etc.
Paul Kinlan
Comment 1
2011-06-04 14:05:36 PDT
Created
attachment 96033
[details]
A test case for createEvent and dispatch.
Paul Kinlan
Comment 2
2011-06-04 15:29:52 PDT
Created
attachment 96036
[details]
My proposed patch and test Added support for letting developers createEvent("PopStateEvent"). Added tests.
WebKit Review Bot
Comment 3
2011-06-04 15:32:07 PDT
Attachment 96036
[details]
did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'ChangeLog', u'LayoutTests/fast/events/fire..." exit_code: 1 ChangeLog:8: Line contains tab character. [whitespace/tab] [5] Total errors found: 1 in 6 files If any of these errors are false positives, please file a bug against check-webkit-style.
Paul Kinlan
Comment 4
2011-06-04 15:39:19 PDT
Created
attachment 96037
[details]
My proposed patch and test +ChangeLog Fix Fixing the ChangeLog so that it should pass the style check. Adds support for createEvent("PopStateEvent") and associated dispatch. Adds tests.
Jeremy Orlow
Comment 5
2011-06-04 15:56:54 PDT
Comment on
attachment 96037
[details]
My proposed patch and test +ChangeLog Fix View in context:
https://bugs.webkit.org/attachment.cgi?id=96037&action=review
Looks pretty good.
> Source/WebCore/dom/PopStateEvent.cpp:34 > +PopStateEvent::PopStateEvent()
You need to call Event's consturctor and initialize m_stateObject
> Source/WebCore/dom/PopStateEvent.h:40 > + static PassRefPtr<PopStateEvent> create()
Would slightly prefer these factory methods being moved inside the .cpp
> Source/WebCore/dom/PopStateEvent.h:54 > +protected:
Does anythign sub-class this? If not, put it inside "private:"
Paul Kinlan
Comment 6
2011-06-05 11:02:25 PDT
Created
attachment 96053
[details]
Fixes based on feedback from previous review.
Paul Kinlan
Comment 7
2011-06-05 11:02:45 PDT
Comment on
attachment 96053
[details]
Fixes based on feedback from previous review. (In reply to
comment #5
)
> (From update of
attachment 96037
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=96037&action=review
> > Looks pretty good. > > > Source/WebCore/dom/PopStateEvent.cpp:34 > > +PopStateEvent::PopStateEvent() > > You need to call Event's consturctor and initialize m_stateObject
Done
> > > Source/WebCore/dom/PopStateEvent.h:40 > > + static PassRefPtr<PopStateEvent> create()
I was following the guidance from another Event, however I then checked some others and it is inconsistent. I have moved the implementation to PopStateEvent.cpp for both create's.
> > Would slightly prefer these factory methods being moved inside the .cpp > > > Source/WebCore/dom/PopStateEvent.h:54 > > +protected: > > Does anythign sub-class this? If not, put it inside "private:"
Done. Given that nothing sub-classes this and it is new for this bug fix it makes sense.
Sam Weinig
Comment 8
2011-06-05 17:19:44 PDT
Comment on
attachment 96053
[details]
Fixes based on feedback from previous review. View in context:
https://bugs.webkit.org/attachment.cgi?id=96053&action=review
Otherwise it looks fine. Lets go another round.
> ChangeLog:13 > + > + * ../LayoutTests/fast/events/fire-popstate-event-expected.txt: Added. > + * ../LayoutTests/fast/events/fire-popstate-event.html: Added. > + * ../Source/WebCore/dom/Document.cpp: > + * ../Source/WebCore/dom/PopStateEvent.cpp: > + * ../Source/WebCore/dom/PopStateEvent.h:
This ChangeLog should not be here. Please use the ones in /Source/WebCore and /LayouTests
> Source/WebCore/dom/PopStateEvent.cpp:36 > + , m_stateObject()
This line is not necessary, the construction is implicit.
> Source/WebCore/dom/PopStateEvent.h:41 > + static PassRefPtr<PopStateEvent> create(PassRefPtr<SerializedScriptValue> stateObject);
I don't think the parameter name adds much here.
Paul Kinlan
Comment 9
2011-06-06 08:23:44 PDT
Created
attachment 96094
[details]
Fixes based on feedback from previous review. Moved the ChangeLogs to the two individual sections + removed the paramter name from the 2nd create method.
Jeremy Orlow
Comment 10
2011-06-06 13:30:25 PDT
Comment on
attachment 96094
[details]
Fixes based on feedback from previous review. View in context:
https://bugs.webkit.org/attachment.cgi?id=96094&action=review
> Source/WebCore/dom/PopStateEvent.h:-53 > -
This space didn't need to be removed.
Jeremy Orlow
Comment 11
2011-06-06 13:30:34 PDT
r=me
WebKit Review Bot
Comment 12
2011-06-06 14:15:57 PDT
Comment on
attachment 96094
[details]
Fixes based on feedback from previous review. Clearing flags on attachment: 96094 Committed
r88187
: <
http://trac.webkit.org/changeset/88187
>
WebKit Review Bot
Comment 13
2011-06-06 14:16:02 PDT
All reviewed patches have been landed. Closing bug.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug