Changeset 49433 in webkit


Ignore:
Timestamp:
Oct 11, 2009 9:17:43 PM (15 years ago)
Author:
mitz@apple.com
Message:

WebKit/mac: <rdar://problem/7294267> REGRESSION (r48492): Gmail voice and video chat
doesn't work
https://bugs.webkit.org/show_bug.cgi?id=30295

Reviewed by Darin Adler.

Test: plugins/setProperty.html

  • Plugins/Hosted/ProxyInstance.mm:

(WebKit::ProxyInstance::setFieldValue): Fixed a typo. The function
should return early if m_instanceProxy is null.

LayoutTests: Test for <rdar://problem/7294267> REGRESSION (r48492): Gmail voice and
video chat doesn't work
https://bugs.webkit.org/show_bug.cgi?id=30295

Reviewed by Darin Adler.

  • plugins/setProperty-expected.txt: Added.
  • plugins/setProperty.html: Added.
Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r49424 r49433  
     12009-10-11  Dan Bernstein  <mitz@apple.com>
     2
     3        Reviewed by Darin Adler.
     4
     5        Test for <rdar://problem/7294267> REGRESSION (r48492): Gmail voice and
     6        video chat doesn’t work
     7        https://bugs.webkit.org/show_bug.cgi?id=30295
     8
     9        * plugins/setProperty-expected.txt: Added.
     10        * plugins/setProperty.html: Added.
     11
    1122009-10-10  Cameron McCormack  <cam@mcc.id.au>
    213
  • trunk/WebKit/mac/ChangeLog

    r49413 r49433  
     12009-10-11  Dan Bernstein  <mitz@apple.com>
     2
     3        Reviewed by Darin Adler.
     4
     5        <rdar://problem/7294267> REGRESSION (r48492): Gmail voice and video chat
     6        doesn’t work
     7        https://bugs.webkit.org/show_bug.cgi?id=30295
     8
     9        Test: plugins/setProperty.html
     10
     11        * Plugins/Hosted/ProxyInstance.mm:
     12        (WebKit::ProxyInstance::setFieldValue): Fixed a typo. The function
     13        should return early if m_instanceProxy is null.
     14
    1152009-10-09  Adam Barth  <abarth@webkit.org>
    216
  • trunk/WebKit/mac/Plugins/Hosted/ProxyInstance.mm

    r48492 r49433  
    371371void ProxyInstance::setFieldValue(ExecState* exec, const Field* field, JSValue value) const
    372372{
    373     if (m_instanceProxy)
     373    if (!m_instanceProxy)
    374374        return;
    375375   
Note: See TracChangeset for help on using the changeset viewer.