Changeset 46769 in webkit


Ignore:
Timestamp:
Aug 4, 2009 10:28:16 AM (15 years ago)
Author:
Nate Chapin
Message:

2009-08-04 Nate Chapin <Nate Chapin>

Reviewed by Dimitri Glazkov.

Missed a place that expects window.event to be hidden when it shouldn't be.

https://bugs.webkit.org/show_bug.cgi?id=27719

Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r46768 r46769  
     12009-08-04  Nate Chapin  <japhet@chromium.org>
     2
     3        Reviewed by Dimitri Glazkov.
     4
     5        Missed a place that expects window.event to be hidden when it shouldn't be.
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=27719
     8
     9        * bindings/v8/custom/V8DOMWindowCustom.cpp:
     10        (WebCore::ACCESSOR_GETTER): window.event is no longer hidden.
     11
    1122009-08-03  Chris Fleizach  <cfleizach@apple.com>
    213
  • trunk/WebCore/bindings/v8/custom/V8DOMWindowCustom.cpp

    r46383 r46769  
    148148    v8::Local<v8::String> eventSymbol = v8::String::NewSymbol("event");
    149149    v8::Local<v8::Context> context = v8::Context::GetCurrent();
    150     v8::Handle<v8::Value> jsEvent = context->Global()->GetHiddenValue(eventSymbol);
     150    v8::Handle<v8::Value> jsEvent = context->Global()->Get(eventSymbol);
    151151    if (jsEvent.IsEmpty())
    152152        return v8::Undefined();
Note: See TracChangeset for help on using the changeset viewer.