Ignore:
Timestamp:
Nov 26, 2002, 1:31:46 PM (23 years ago)
Author:
rjw
Message:

JavaScriptCore

Remove debugging code. Could be cause of performance regresssion.

  • kjs/nodes.cpp: (FunctionCallNode::evaluate):

Restire attributes correctly.

  • kjs/property_map.cpp:

WebKit Only cache page if the load has completed.

  • WebView.subproj/WebFramePrivate.m: (-[WebFrame _setState:]):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/property_map.cpp

    r2874 r2881  
    6767    Identifier key;
    6868    Value value;
     69    int attributes;
    6970};
    7071
     
    474475                prop->key = Identifier(_table->entries[i].key);
    475476                prop->value = Value(_table->entries[i].value);
     477                prop->attributes = _table->entries[i].attributes;
    476478                ++prop;
    477479            }
     
    483485{
    484486    for (int i = 0; i != p._count; ++i){
    485         put(p._properties[i].key, p._properties[i].value.imp(), 0);
     487        put(p._properties[i].key, p._properties[i].value.imp(), p._properties[i].attributes);
    486488    }
    487489}
Note: See TracChangeset for help on using the changeset viewer.