Ignore:
Timestamp:
Feb 23, 2015, 11:27:24 PM (10 years ago)
Author:
[email protected]
Message:

Unreviewed, rolling out r180547 and r180550.
https://bugs.webkit.org/show_bug.cgi?id=141957

Broke 10 Windows tests. (Requested by bfulgham_ on #webkit).

Reverted changesets:

"REGRESSION(r179429): Can't type comments in Facebook"
https://bugs.webkit.org/show_bug.cgi?id=141859
http://trac.webkit.org/changeset/180547

"Constructor returning null should construct an object instead
of null"
https://bugs.webkit.org/show_bug.cgi?id=141640
http://trac.webkit.org/changeset/180550

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/bytecode/PutByIdStatus.cpp

    r180550 r180551  
    361361        // If the structure corresponds to something that isn't an object, then give up, since
    362362        // we don't want to be adding properties to strings.
    363         if (!structure->typeInfo().isObject())
     363        if (structure->typeInfo().type() == StringType)
    364364            return PutByIdStatus(TakesSlowPath);
    365365   
Note: See TracChangeset for help on using the changeset viewer.