Changeset 143132 in webkit


Ignore:
Timestamp:
Feb 17, 2013 10:59:45 AM (11 years ago)
Author:
Christophe Dumez
Message:

Regression(r143124): Caused plugins/plugin-javascript-access.html to fail
https://bugs.webkit.org/show_bug.cgi?id=110053

Reviewed by Alexey Proskuryakov.

Source/WebKit2:

Clear m_plugins in loadPluginsIfNecessary() before populating the
vector again. We get duplicates otherwise.

  • UIProcess/Plugins/PluginInfoStore.cpp:

(WebKit::PluginInfoStore::loadPluginsIfNecessary):

LayoutTests:

Unskip plugins/plugin-javascript-access.html for WK2 EFL now that the
Test is passing again.

  • platform/efl-wk2/TestExpectations:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r143131 r143132  
     12013-02-17  Christophe Dumez  <ch.dumez@sisa.samsung.com>
     2
     3        Regression(r143124): Caused plugins/plugin-javascript-access.html to fail
     4        https://bugs.webkit.org/show_bug.cgi?id=110053
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        Unskip plugins/plugin-javascript-access.html for WK2 EFL now that the
     9        Test is passing again.
     10
     11        * platform/efl-wk2/TestExpectations:
     12
    1132013-02-17  Christophe Dumez  <ch.dumez@sisa.samsung.com>
    214
  • trunk/LayoutTests/platform/efl-wk2/TestExpectations

    r143131 r143132  
    496496webkit.org/b/106407 http/tests/xmlhttprequest/remember-bad-password.html [ Failure ]
    497497
    498 # Regression(r143124): Caused plugins/plugin-javascript-access.html to fail.
    499 webkit.org/b/110053 plugins/plugin-javascript-access.html [ Failure ]
    500 
    501498# Most probably failures are result of delay in scrolling caused by 'delegated scrolling' usage.
    502499webkit.org/b/107286 fast/css/sticky/sticky-margins.html [ ImageOnlyFailure ]
  • trunk/Source/WebKit2/ChangeLog

    r143124 r143132  
     12013-02-17  Christophe Dumez  <ch.dumez@sisa.samsung.com>
     2
     3        Regression(r143124): Caused plugins/plugin-javascript-access.html to fail
     4        https://bugs.webkit.org/show_bug.cgi?id=110053
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        Clear m_plugins in loadPluginsIfNecessary() before populating the
     9        vector again. We get duplicates otherwise.
     10
     11        * UIProcess/Plugins/PluginInfoStore.cpp:
     12        (WebKit::PluginInfoStore::loadPluginsIfNecessary):
     13
    1142013-02-16  Andreas Kling  <akling@apple.com>
    215
  • trunk/Source/WebKit2/UIProcess/Plugins/PluginInfoStore.cpp

    r143124 r143132  
    9191    addFromVector(uniquePluginPaths, individualPluginPaths());
    9292
     93    m_plugins.clear();
     94
    9395    PathHashSet::const_iterator end = uniquePluginPaths.end();
    9496    for (PathHashSet::const_iterator it = uniquePluginPaths.begin(); it != end; ++it)
Note: See TracChangeset for help on using the changeset viewer.