Timeline
Sep 8, 2008:
- 11:55 PM Changeset in webkit [36285] by
-
- 11 edits3 adds in trunk
2008-09-08 Sam Weinig <sam@webkit.org>
Reviewed by Maciej Stachowiak and Oliver Hunt.
Split storage of properties out of the PropertyMap and into the JSObject
to allow sharing PropertyMap on the StructureID. In order to get this
function correctly, the StructureID's transition mappings were changed to
transition based on property name and attribute pairs, instead of just
property name.
- Removes the single property optimization now that the PropertyMap is shared. This will be replaced by in-lining some values on the JSObject.
This is a wash on Sunspider and a 6.7% win on the v8 test suite.
- JavaScriptCore.base.exp:
- VM/CTI.cpp: (JSC::CTI::privateCompileGetByIdSelf): Get the storage directly off the JSObject. (JSC::CTI::privateCompileGetByIdProto): Ditto. (JSC::CTI::privateCompileGetByIdChain): Ditto. (JSC::CTI::privateCompilePutByIdReplace): Ditto.
- kjs/JSObject.cpp: (JSC::JSObject::mark): Mark the PropertyStorage. (JSC::JSObject::put): Update to get the propertyMap of the StructureID. (JSC::JSObject::deleteProperty): Ditto. (JSC::JSObject::defineGetter): Return early if the property is already a getter/setter. (JSC::JSObject::defineSetter): Ditto. (JSC::JSObject::getPropertyAttributes): Update to get the propertyMap of the StructureID (JSC::JSObject::getPropertyNames): Ditto. (JSC::JSObject::removeDirect): Ditto.
- kjs/JSObject.h: Remove PropertyMap and add PropertyStorage. (JSC::JSObject::propertyStorage): return the PropertyStorage. (JSC::JSObject::getDirect): Update to get the propertyMap of the StructureID. (JSC::JSObject::getDirectLocation): Ditto. (JSC::JSObject::offsetForLocation): Compute location directly. (JSC::JSObject::hasCustomProperties): Update to get the propertyMap of the StructureID. (JSC::JSObject::hasGetterSetterProperties): Ditto. (JSC::JSObject::getDirectOffset): Get by indexing into PropertyStorage. (JSC::JSObject::putDirectOffset): Put by indexing into PropertyStorage. (JSC::JSObject::getOwnPropertySlotForWrite): Update to get the propertyMap of the StructureID. (JSC::JSObject::getOwnPropertySlot): Ditto. (JSC::JSObject::putDirect): Move putting into the StructureID unless the property already exists.
- kjs/PropertyMap.cpp: Use the propertyStorage as the storage for the JSValues. (JSC::PropertyMap::checkConsistency): (JSC::PropertyMap::operator=): (JSC::PropertyMap::~PropertyMap): (JSC::PropertyMap::get): (JSC::PropertyMap::getLocation): (JSC::PropertyMap::put): (JSC::PropertyMap::getOffset): (JSC::PropertyMap::insert): (JSC::PropertyMap::expand): (JSC::PropertyMap::rehash): (JSC::PropertyMap::createTable): (JSC::PropertyMap::resizePropertyStorage): Resize the storage to match the size of the map (JSC::PropertyMap::remove): (JSC::PropertyMap::getEnumerablePropertyNames):
- kjs/PropertyMap.h: (JSC::PropertyMapEntry::PropertyMapEntry): (JSC::PropertyMap::isEmpty): (JSC::PropertyMap::size): (JSC::PropertyMap::makingCount): (JSC::PropertyMap::PropertyMap):
- kjs/StructureID.cpp: (JSC::StructureID::addPropertyTransition): Transitions now are based off the property name and attributes. (JSC::StructureID::toDictionaryTransition): Copy the map. (JSC::StructureID::changePrototypeTransition): Copy the map. (JSC::StructureID::getterSetterTransition): Copy the map. (JSC::StructureID::~StructureID):
- kjs/StructureID.h: (JSC::TransitionTableHash::hash): Custom hash for transition map. (JSC::TransitionTableHash::equal): Ditto. (JSC::TransitionTableHashTraits::emptyValue): Custom traits for transition map (JSC::TransitionTableHashTraits::constructDeletedValue): Ditto. (JSC::TransitionTableHashTraits::isDeletedValue): Ditto. (JSC::StructureID::propertyMap): Added.
JavaScriptGlue:
2008-09-08 Sam Weinig <sam@webkit.org>
Reviewed by Maciej Stachowiak and Oliver Hunt.
Add forwarding headers.
- ForwardingHeaders/wtf/HashFunctions.h: Added.
- ForwardingHeaders/wtf/HashTraits.h: Added.
WebCore:
2008-09-08 Sam Weinig <sam@webkit.org>
Reviewed by Maciej Stachowiak and Oliver Hunt.
Add forwarding headers.
- ForwardingHeaders/wtf/HashFunctions.h: Added.
- 11:20 PM Changeset in webkit [36284] by
-
- 2 edits in trunk/WebKit/win
Respect the font smoothing preference when drawing via WebKitGraphics
Reviewed by Dave Hyatt.
- WebKitGraphics.cpp: (makeFont): Check the font smoothing preference and update the FontDescription's rendering mode based on it.
- 10:01 PM Changeset in webkit [36283] by
-
- 1 edit in trunk/JavaScriptCore/ChangeLog
Update ChangeLog for previous fix to include bug#
- 9:43 PM Changeset in webkit [36282] by
-
- 3 edits in trunk/JavaScriptCore
Fix codegen for slow script dialog.
Reviewed by Mark Rowe
Correct error in timeout logic where execution tick count would
be reset to incorrect value due to incorrect offset and indirection.
Codegen for the slow script dialog was factored out into a separate
method (emitSlowScriptCheck) rather than having multiple copies of
the same code. Also added calls to generate slow script checks
for loop_if_less and loop_if_true opcodes.
- 8:08 PM Changeset in webkit [36281] by
-
- 3 edits in trunk/WebKitTools
Reviewed by Mark Rowe.
- add an option to run-webkit-tests to always use the complex text code path
- DumpRenderTree/mac/DumpRenderTree.mm: (initializeGlobalsFromCommandLineOptions): (dumpRenderTree):
- Scripts/run-webkit-tests:
- 6:37 PM Changeset in webkit [36280] by
-
- 3 edits in trunk/JavaScriptCore
2008-09-08 Cameron Zwarich <cwzwarich@uwaterloo.ca>
Reviewed by Maciej Stachowiak.
Remove references to the removed WRECompiler class.
- VM/Machine.h:
- wrec/WREC.h:
- 6:05 PM Changeset in webkit [36279] by
-
- 3 edits in trunk/JavaScriptCore
2008-09-08 Cameron Zwarich <cwzwarich@uwaterloo.ca>
Rubber-stamped by Mark Rowe.
Fix the build with CTI enabled but WREC disabled.
- VM/CTI.cpp:
- VM/CTI.h:
- 6:02 PM Changeset in webkit [36278] by
-
- 6 edits in trunk
2008-09-05 Dean Jackson <dino@apple.com>
Reviewed by Dan Bernstein.
Update grammar so that we can add a keyframe rule via the DOM.
https://bugs.webkit.org/show_bug.cgi?id=20613
- css/CSSGrammar.y:
- css/tokenizer.flex:
- 5:40 PM Changeset in webkit [36277] by
-
- 2 edits in trunk/WebCore
2008-09-08 Antti Koivisto <Antti Koivisto>
Reviewed by Dan Bernstein.
Allow <br> for simple UA stylesheet. Editing code generates them. It does not
actually show up in any of the default stylesheets.
- css/CSSStyleSelector.cpp: (WebCore::elementCanUseSimpleDefaultStyle):
- 5:35 PM Changeset in webkit [36276] by
-
- 2 edits in trunk/WebCore
2008-09-08 Dimitri Glazkov <dglazkov@google.com>
Reviewed by Dan Bernstein.
- fix https://bugs.webkit.org/show_bug.cgi?id=20237 Zero width and space characters are displayed incorrectly if not contained in a fallback font
Adds an extra check for Object Replacement Character (U+FFFC) to address
the issue with fast/text/zero-width-characters.html test when run
with Windows system default fonts.
- platform/graphics/Font.h: (WebCore::Font::treatAsZeroWidthSpace):
- 3:51 PM Changeset in webkit [36275] by
-
- 2 edits in trunk/WebCore
2008-09-08 Dean Jackson <dino@apple.com>
Reviewed by Sam Weinig.
Code style issue I forgot to fix from previous commit.
- platform/graphics/AffineTransform.cpp: (WebCore::AffineTransform::blend):
- 3:46 PM Changeset in webkit [36274] by
-
- 5 edits2 adds in trunk
2008-09-08 Chris Marrin <cmarrin@apple.com>
Reviewed by Sam Weinig
- Animation of -webkit-transform matrix() function should not do linear interpolation https://bugs.webkit.org/show_bug.cgi?id=20667
Test: animations/matrix-anim.html
- ChangeLog:
- platform/graphics/AffineTransform.cpp: (WebCore::affineTransformDecompose): (WebCore::affineTransformCompose): (WebCore::AffineTransform::blend):
- platform/graphics/AffineTransform.h:
- rendering/style/RenderStyle.cpp: (WebCore::MatrixTransformOperation::blend):
- 3:35 PM Changeset in webkit [36273] by
-
- 3 edits in trunk/WebKitTools
Another Windows nightly build fix.
Reviewed by Sam Weinig.
- FindSafari/FindSafari.cpp: (_tmain): Delete existing WebKitNightly directory in temp.
- FindSafari/Safari.exe.manifest: Add PROGIDs for each COM class. Remove non-production classes.
- 3:34 PM Changeset in webkit [36272] by
-
- 3 edits in trunk/WebKit/win
Another Windows nightly build fix.
Remove non-production versions of CLSIDs since we'll use registry free COM with
an embedded manifest now in all cases to find COM classes.
Reviewed by Sam Weinig.
- ForEachCoClass.cpp: (setUseOpenSourceWebKit): Remove COM registration code.
- Interfaces/WebKit.idl: Remove non-production COM classes
- 1:42 PM Changeset in webkit [36271] by
-
- 2 edits in trunk/JavaScriptCore
- build fix
- kjs/nodes.h: (JSC::StatementNode::): (JSC::BlockNode::):
- 1:26 PM Changeset in webkit [36270] by
-
- 3 edits in trunk/JavaScriptCore
2008-09-08 Kevin McCullough <kmccullough@apple.com>
Reviewed by Geoff.
<rdar://problem/6134407> Breakpoints in for loops, while loops or
conditions without curly braces don't break. (19306)
-Statement Lists already emit debug hooks but conditionals without
brackets are not lists.
- kjs/nodes.cpp: (KJS::IfNode::emitCode): (KJS::IfElseNode::emitCode): (KJS::DoWhileNode::emitCode): (KJS::WhileNode::emitCode): (KJS::ForNode::emitCode): (KJS::ForInNode::emitCode):
- kjs/nodes.h: (KJS::StatementNode::): (KJS::BlockNode::):
- 9:21 AM Changeset in webkit [36269] by
-
- 2 edits in trunk/WebCore
Reviewed by Darin Adler.
https://bugs.webkit.org/show_bug.cgi?id=20668
multipart/form-data does not always include Content-type for submitted files
Cannot be tested with DRT or manual tests.
- platform/MIMETypeRegistry.cpp: (WebCore::initializeSupportedNonImageMimeTypes): Fix spacing. (WebCore::MIMETypeRegistry::getMIMETypeForPath): Default to application/octet-stream for unknown extensions, not just missing ones.
- 6:00 AM Changeset in webkit [36268] by
-
- 2 edits in trunk/WebCore
2008-09-08 Simon Hausmann <Simon Hausmann>
Build fix for the Qt/Windows build, define USE_JSC to
enable the WebCore::String -> JSC::UString operator that
MSVC insists on seeing
- 5:17 AM Changeset in webkit [36267] by
-
- 5 edits3 adds in trunk
2008-09-08 Maciej Stachowiak <mjs@apple.com>
Reviewed by Anders Carlsson.
- Cache the code generated for eval to speed up SunSpider and web sites https://bugs.webkit.org/show_bug.cgi?id=20718
1.052x on SunSpider
2.29x on date-format-tofte
Lots of real sites seem to get many hits on this cache as well,
including GMail, Google Spreadsheets, Slate and Digg (the last of
these gets over 100 hits on initial page load).
- VM/CodeBlock.h: (JSC::EvalCodeCache::get):
- VM/Machine.cpp: (JSC::Machine::callEval): (JSC::Machine::privateExecute): (JSC::Machine::cti_op_call_eval):
- VM/Machine.h:
LayoutTests:
2008-09-08 Maciej Stachowiak <mjs@apple.com>
Reviewed by Anders Carlsson.
- Test for potential bug found while fixing "Cache the code generated for eval to speed up SunSpider and web sites" https://bugs.webkit.org/show_bug.cgi?id=20718
- fast/js/eval-cache-crash-expected.txt: Added.
- fast/js/eval-cache-crash.html: Added.
- fast/js/resources/eval-cache-crash.js: Added.
- 4:39 AM Changeset in webkit [36266] by
-
- 3 edits in trunk/WebCore
2008-09-08 Anders Carlsson <andersca@apple.com>
Reviewed by Maciej.
<rdar://problem/5850387> Showing bookmarks reloads Google Reader instead.
In some cases, timeouts scheduled by a page in the onunload handler could fire even when the
page had been unloaded and replaced by a non-HTML representation based view (such as the bookmarks view).
Fix this by clearing timeouts for pages that aren't cached when the provisional load is committed.
- bindings/js/JSDOMWindowBase.h:
- loader/FrameLoader.cpp: (WebCore::FrameLoader::commitProvisionalLoad):
- 12:01 AM Changeset in webkit [36265] by
-
- 2 edits in trunk/WebCore
2008-09-07 Antti Koivisto <Antti Koivisto>
Reviewed by Dave Hyatt.
Don't leak the simple stylesheet.
Also call RenderTheme::adjustDefaultStyleSheet() in right place.
- css/CSSStyleSelector.cpp: (WebCore::loadFullDefaultStyle): (WebCore::loadSimpleDefaultStyle): (WebCore::CSSStyleSelector::styleForElement):
Sep 7, 2008:
- 9:25 PM Changeset in webkit [36264] by
-
- 12 edits in trunk
2008-09-07 Cameron Zwarich <cwzwarich@uwaterloo.ca>
Reviewed by Oliver Hunt.
Bug 20711: Change KJS prefix on preprocessor macros to JSC
<https://bugs.webkit.org/show_bug.cgi?id=20711>
- kjs/CommonIdentifiers.cpp: (JSC::CommonIdentifiers::CommonIdentifiers):
- kjs/CommonIdentifiers.h:
- kjs/PropertySlot.h: (JSC::PropertySlot::getValue): (JSC::PropertySlot::putValue): (JSC::PropertySlot::setValueSlot): (JSC::PropertySlot::setValue): (JSC::PropertySlot::setRegisterSlot):
- kjs/lookup.h:
- kjs/nodes.cpp:
- kjs/nodes.h: (JSC::Node::): (JSC::ExpressionNode::): (JSC::StatementNode::): (JSC::NullNode::): (JSC::BooleanNode::): (JSC::NumberNode::): (JSC::ImmediateNumberNode::): (JSC::StringNode::): (JSC::RegExpNode::): (JSC::ThisNode::): (JSC::ResolveNode::): (JSC::ElementNode::): (JSC::ArrayNode::): (JSC::PropertyNode::): (JSC::PropertyListNode::): (JSC::ObjectLiteralNode::): (JSC::BracketAccessorNode::): (JSC::DotAccessorNode::): (JSC::ArgumentListNode::): (JSC::ArgumentsNode::): (JSC::NewExprNode::): (JSC::EvalFunctionCallNode::): (JSC::FunctionCallValueNode::): (JSC::FunctionCallResolveNode::): (JSC::FunctionCallBracketNode::): (JSC::FunctionCallDotNode::): (JSC::PrePostResolveNode::): (JSC::PostfixResolveNode::): (JSC::PostfixBracketNode::): (JSC::PostfixDotNode::): (JSC::PostfixErrorNode::): (JSC::DeleteResolveNode::): (JSC::DeleteBracketNode::): (JSC::DeleteDotNode::): (JSC::DeleteValueNode::): (JSC::VoidNode::): (JSC::TypeOfResolveNode::): (JSC::TypeOfValueNode::): (JSC::PrefixResolveNode::): (JSC::PrefixBracketNode::): (JSC::PrefixDotNode::): (JSC::PrefixErrorNode::): (JSC::UnaryPlusNode::): (JSC::NegateNode::): (JSC::BitwiseNotNode::): (JSC::LogicalNotNode::): (JSC::MultNode::): (JSC::DivNode::): (JSC::ModNode::): (JSC::AddNode::): (JSC::SubNode::): (JSC::LeftShiftNode::): (JSC::RightShiftNode::): (JSC::UnsignedRightShiftNode::): (JSC::LessNode::): (JSC::GreaterNode::): (JSC::LessEqNode::): (JSC::GreaterEqNode::): (JSC::ThrowableBinaryOpNode::): (JSC::InstanceOfNode::): (JSC::InNode::): (JSC::EqualNode::): (JSC::NotEqualNode::): (JSC::StrictEqualNode::): (JSC::NotStrictEqualNode::): (JSC::BitAndNode::): (JSC::BitOrNode::): (JSC::BitXOrNode::): (JSC::LogicalOpNode::): (JSC::ConditionalNode::): (JSC::ReadModifyResolveNode::): (JSC::AssignResolveNode::): (JSC::ReadModifyBracketNode::): (JSC::AssignBracketNode::): (JSC::AssignDotNode::): (JSC::ReadModifyDotNode::): (JSC::AssignErrorNode::): (JSC::CommaNode::): (JSC::VarDeclCommaNode::): (JSC::ConstDeclNode::): (JSC::ConstStatementNode::): (JSC::EmptyStatementNode::): (JSC::DebuggerStatementNode::): (JSC::ExprStatementNode::): (JSC::VarStatementNode::): (JSC::IfNode::): (JSC::IfElseNode::): (JSC::DoWhileNode::): (JSC::WhileNode::): (JSC::ForNode::): (JSC::ContinueNode::): (JSC::BreakNode::): (JSC::ReturnNode::): (JSC::WithNode::): (JSC::LabelNode::): (JSC::ThrowNode::): (JSC::TryNode::): (JSC::ParameterNode::): (JSC::ScopeNode::): (JSC::ProgramNode::): (JSC::EvalNode::): (JSC::FunctionBodyNode::): (JSC::FuncExprNode::): (JSC::FuncDeclNode::): (JSC::CaseClauseNode::): (JSC::ClauseListNode::): (JSC::CaseBlockNode::): (JSC::SwitchNode::):
WebCore:
- bindings/js/JSEventTargetBase.h:
- bindings/js/JSHTMLInputElementBase.cpp:
- bindings/js/JSHTMLInputElementBase.h:
- bindings/scripts/CodeGeneratorJS.pm:
- 6:28 PM Changeset in webkit [36263] by
-
- 497 edits in trunk
2008-09-07 Cameron Zwarich <cwzwarich@uwaterloo.ca>
Reviewed by Maciej Stachowiak.
Bug 20704: Replace the KJS namespace
<https://bugs.webkit.org/show_bug.cgi?id=20704>
Rename the KJS namespace to JSC. There are still some uses of KJS in
preprocessor macros and comments, but these will also be changed some
time in the near future. There are also some uses in the names of JNI
functions, but I will check if these are safe to change as well.
- API/APICast.h: (toJS): (toRef): (toGlobalRef):
- API/JSBase.cpp:
- API/JSCallbackConstructor.cpp:
- API/JSCallbackConstructor.h:
- API/JSCallbackFunction.cpp:
- API/JSCallbackFunction.h:
- API/JSCallbackObject.cpp:
- API/JSCallbackObject.h:
- API/JSCallbackObjectFunctions.h:
- API/JSClassRef.cpp: (OpaqueJSClass::staticValues): (OpaqueJSClass::staticFunctions):
- API/JSClassRef.h:
- API/JSContextRef.cpp:
- API/JSObjectRef.cpp:
- API/JSProfilerPrivate.cpp:
- API/JSStringRef.cpp:
- API/JSValueRef.cpp: (JSValueGetType):
- API/OpaqueJSString.cpp:
- API/OpaqueJSString.h:
- JavaScriptCore.Debug.exp:
- JavaScriptCore.base.exp:
- VM/CTI.cpp: (JSC::):
- VM/CTI.h:
- VM/CodeBlock.cpp:
- VM/CodeBlock.h:
- VM/CodeGenerator.cpp:
- VM/CodeGenerator.h:
- VM/ExceptionHelpers.cpp:
- VM/ExceptionHelpers.h:
- VM/Instruction.h:
- VM/JSPropertyNameIterator.cpp:
- VM/JSPropertyNameIterator.h:
- VM/LabelID.h:
- VM/Machine.cpp:
- VM/Machine.h:
- VM/Opcode.cpp:
- VM/Opcode.h:
- VM/Register.h: (WTF::):
- VM/RegisterFile.cpp:
- VM/RegisterFile.h:
- VM/RegisterID.h: (WTF::):
- VM/SamplingTool.cpp:
- VM/SamplingTool.h:
- VM/SegmentedVector.h:
- kjs/ArgList.cpp:
- kjs/ArgList.h:
- kjs/Arguments.cpp:
- kjs/Arguments.h:
- kjs/ArrayConstructor.cpp:
- kjs/ArrayConstructor.h:
- kjs/ArrayPrototype.cpp:
- kjs/ArrayPrototype.h:
- kjs/BatchedTransitionOptimizer.h:
- kjs/BooleanConstructor.cpp:
- kjs/BooleanConstructor.h:
- kjs/BooleanObject.cpp:
- kjs/BooleanObject.h:
- kjs/BooleanPrototype.cpp:
- kjs/BooleanPrototype.h:
- kjs/CallData.cpp:
- kjs/CallData.h:
- kjs/ClassInfo.h:
- kjs/CommonIdentifiers.cpp:
- kjs/CommonIdentifiers.h:
- kjs/ConstructData.cpp:
- kjs/ConstructData.h:
- kjs/DateConstructor.cpp:
- kjs/DateConstructor.h:
- kjs/DateInstance.cpp: (JSC::DateInstance::msToGregorianDateTime):
- kjs/DateInstance.h:
- kjs/DateMath.cpp:
- kjs/DateMath.h:
- kjs/DatePrototype.cpp:
- kjs/DatePrototype.h:
- kjs/DebuggerCallFrame.cpp:
- kjs/DebuggerCallFrame.h:
- kjs/Error.cpp:
- kjs/Error.h:
- kjs/ErrorConstructor.cpp:
- kjs/ErrorConstructor.h:
- kjs/ErrorInstance.cpp:
- kjs/ErrorInstance.h:
- kjs/ErrorPrototype.cpp:
- kjs/ErrorPrototype.h:
- kjs/ExecState.cpp:
- kjs/ExecState.h:
- kjs/FunctionConstructor.cpp:
- kjs/FunctionConstructor.h:
- kjs/FunctionPrototype.cpp:
- kjs/FunctionPrototype.h:
- kjs/GetterSetter.cpp:
- kjs/GetterSetter.h:
- kjs/GlobalEvalFunction.cpp:
- kjs/GlobalEvalFunction.h:
- kjs/IndexToNameMap.cpp:
- kjs/IndexToNameMap.h:
- kjs/InitializeThreading.cpp:
- kjs/InitializeThreading.h:
- kjs/InternalFunction.cpp:
- kjs/InternalFunction.h: (JSC::InternalFunction::InternalFunction):
- kjs/JSActivation.cpp:
- kjs/JSActivation.h:
- kjs/JSArray.cpp:
- kjs/JSArray.h:
- kjs/JSCell.cpp:
- kjs/JSCell.h:
- kjs/JSFunction.cpp:
- kjs/JSFunction.h: (JSC::JSFunction::JSFunction):
- kjs/JSGlobalData.cpp: (JSC::JSGlobalData::JSGlobalData):
- kjs/JSGlobalData.h:
- kjs/JSGlobalObject.cpp:
- kjs/JSGlobalObject.h:
- kjs/JSGlobalObjectFunctions.cpp:
- kjs/JSGlobalObjectFunctions.h:
- kjs/JSImmediate.cpp:
- kjs/JSImmediate.h:
- kjs/JSLock.cpp:
- kjs/JSLock.h:
- kjs/JSNotAnObject.cpp:
- kjs/JSNotAnObject.h:
- kjs/JSNumberCell.cpp:
- kjs/JSNumberCell.h:
- kjs/JSObject.cpp:
- kjs/JSObject.h:
- kjs/JSStaticScopeObject.cpp:
- kjs/JSStaticScopeObject.h:
- kjs/JSString.cpp:
- kjs/JSString.h:
- kjs/JSType.h:
- kjs/JSValue.cpp:
- kjs/JSValue.h:
- kjs/JSVariableObject.cpp:
- kjs/JSVariableObject.h:
- kjs/JSWrapperObject.cpp:
- kjs/JSWrapperObject.h:
- kjs/LabelStack.cpp:
- kjs/LabelStack.h:
- kjs/MathObject.cpp:
- kjs/MathObject.h:
- kjs/NativeErrorConstructor.cpp:
- kjs/NativeErrorConstructor.h:
- kjs/NativeErrorPrototype.cpp:
- kjs/NativeErrorPrototype.h:
- kjs/NodeInfo.h:
- kjs/NumberConstructor.cpp:
- kjs/NumberConstructor.h:
- kjs/NumberObject.cpp:
- kjs/NumberObject.h:
- kjs/NumberPrototype.cpp:
- kjs/NumberPrototype.h:
- kjs/ObjectConstructor.cpp:
- kjs/ObjectConstructor.h:
- kjs/ObjectPrototype.cpp:
- kjs/ObjectPrototype.h:
- kjs/Parser.cpp:
- kjs/Parser.h:
- kjs/PropertyMap.cpp: (JSC::PropertyMapStatisticsExitLogger::~PropertyMapStatisticsExitLogger):
- kjs/PropertyMap.h:
- kjs/PropertyNameArray.cpp:
- kjs/PropertyNameArray.h:
- kjs/PropertySlot.cpp:
- kjs/PropertySlot.h:
- kjs/PrototypeFunction.cpp:
- kjs/PrototypeFunction.h:
- kjs/PutPropertySlot.h:
- kjs/RegExpConstructor.cpp:
- kjs/RegExpConstructor.h:
- kjs/RegExpObject.cpp:
- kjs/RegExpObject.h:
- kjs/RegExpPrototype.cpp:
- kjs/RegExpPrototype.h:
- kjs/ScopeChain.cpp:
- kjs/ScopeChain.h:
- kjs/ScopeChainMark.h:
- kjs/Shell.cpp: (jscmain):
- kjs/SmallStrings.cpp:
- kjs/SmallStrings.h:
- kjs/SourceProvider.h:
- kjs/SourceRange.h:
- kjs/StringConstructor.cpp:
- kjs/StringConstructor.h:
- kjs/StringObject.cpp:
- kjs/StringObject.h:
- kjs/StringObjectThatMasqueradesAsUndefined.h:
- kjs/StringPrototype.cpp:
- kjs/StringPrototype.h:
- kjs/StructureID.cpp:
- kjs/StructureID.h:
- kjs/SymbolTable.h:
- kjs/collector.cpp:
- kjs/collector.h:
- kjs/completion.h:
- kjs/create_hash_table:
- kjs/debugger.cpp:
- kjs/debugger.h:
- kjs/dtoa.cpp:
- kjs/dtoa.h:
- kjs/grammar.y:
- kjs/identifier.cpp:
- kjs/identifier.h: (JSC::Identifier::equal):
- kjs/interpreter.cpp:
- kjs/interpreter.h:
- kjs/lexer.cpp: (JSC::Lexer::Lexer): (JSC::Lexer::clear): (JSC::Lexer::makeIdentifier):
- kjs/lexer.h:
- kjs/lookup.cpp:
- kjs/lookup.h:
- kjs/nodes.cpp:
- kjs/nodes.h:
- kjs/nodes2string.cpp:
- kjs/operations.cpp:
- kjs/operations.h:
- kjs/protect.h:
- kjs/regexp.cpp:
- kjs/regexp.h:
- kjs/ustring.cpp:
- kjs/ustring.h: (JSC::operator!=): (JSC::IdentifierRepHash::hash): (WTF::):
- masm/MacroAssembler.h:
- masm/MacroAssemblerWin.cpp:
- masm/X86Assembler.h:
- pcre/pcre_exec.cpp:
- profiler/CallIdentifier.h: (WTF::):
- profiler/HeavyProfile.cpp:
- profiler/HeavyProfile.h:
- profiler/Profile.cpp:
- profiler/Profile.h:
- profiler/ProfileGenerator.cpp:
- profiler/ProfileGenerator.h:
- profiler/ProfileNode.cpp:
- profiler/ProfileNode.h:
- profiler/Profiler.cpp:
- profiler/Profiler.h:
- profiler/TreeProfile.cpp:
- profiler/TreeProfile.h:
- wrec/WREC.cpp:
- wrec/WREC.h:
- wtf/AVLTree.h:
WebCore:
- WebCore.base.exp:
- bindings/js/GCController.cpp:
- bindings/js/JSAttrCustom.cpp:
- bindings/js/JSAudioConstructor.cpp:
- bindings/js/JSAudioConstructor.h: (WebCore::JSAudioConstructor::classInfo):
- bindings/js/JSCSSRuleCustom.cpp:
- bindings/js/JSCSSStyleDeclarationCustom.cpp:
- bindings/js/JSCSSValueCustom.cpp:
- bindings/js/JSCanvasPixelArrayCustom.cpp:
- bindings/js/JSCanvasRenderingContext2DCustom.cpp:
- bindings/js/JSClipboardCustom.cpp:
- bindings/js/JSConsoleCustom.cpp:
- bindings/js/JSCustomSQLStatementCallback.cpp: (WebCore::JSCustomSQLStatementCallback::handleEvent):
- bindings/js/JSCustomSQLStatementCallback.h: (WebCore::JSCustomSQLStatementCallback::create):
- bindings/js/JSCustomSQLStatementErrorCallback.cpp: (WebCore::JSCustomSQLStatementErrorCallback::handleEvent):
- bindings/js/JSCustomSQLStatementErrorCallback.h: (WebCore::JSCustomSQLStatementErrorCallback::create):
- bindings/js/JSCustomSQLTransactionCallback.cpp: (WebCore::JSCustomSQLTransactionCallback::handleEvent):
- bindings/js/JSCustomSQLTransactionCallback.h: (WebCore::JSCustomSQLTransactionCallback::create):
- bindings/js/JSCustomSQLTransactionErrorCallback.cpp: (WebCore::JSCustomSQLTransactionErrorCallback::handleEvent):
- bindings/js/JSCustomSQLTransactionErrorCallback.h: (WebCore::JSCustomSQLTransactionErrorCallback::create):
- bindings/js/JSCustomVoidCallback.cpp: (WebCore::JSCustomVoidCallback::handleEvent):
- bindings/js/JSCustomVoidCallback.h: (WebCore::JSCustomVoidCallback::create):
- bindings/js/JSCustomXPathNSResolver.cpp: (WebCore::JSCustomXPathNSResolver::create):
- bindings/js/JSCustomXPathNSResolver.h:
- bindings/js/JSDOMApplicationCacheCustom.cpp: (WebCore::JSDOMApplicationCache::dispatchEvent):
- bindings/js/JSDOMBinding.cpp: (WebCore::jsOwnedStringOrNull):
- bindings/js/JSDOMBinding.h: (WebCore::DOMObject::DOMObject): (WebCore::cacheDOMObject): (WebCore::cacheSVGDOMObject): (WebCore::DOMExceptionTranslator::DOMExceptionTranslator): (WebCore::toJS):
- bindings/js/JSDOMWindowBase.cpp:
- bindings/js/JSDOMWindowBase.h: (WebCore::JSDOMWindowBase::classInfo): (WebCore::JSDOMWindowBase::d):
- bindings/js/JSDOMWindowCustom.cpp: (WebCore::JSDOMWindow::getPropertyAttributes):
- bindings/js/JSDOMWindowCustom.h: (WebCore::asJSDOMWindow): (WebCore::JSDOMWindow::customGetOwnPropertySlot): (WebCore::JSDOMWindow::customPut): (WebCore::JSDOMWindowBase::allowsAccessFrom): (WebCore::JSDOMWindowBase::allowsAccessFromNoErrorMessage):
- bindings/js/JSDOMWindowShell.cpp: (WebCore::JSDOMWindowShell::getPropertyAttributes):
- bindings/js/JSDOMWindowShell.h: (WebCore::JSDOMWindowShell::classInfo):
- bindings/js/JSDatabaseCustom.cpp:
- bindings/js/JSDocumentCustom.cpp:
- bindings/js/JSDocumentFragmentCustom.cpp:
- bindings/js/JSElementCustom.cpp:
- bindings/js/JSEventCustom.cpp:
- bindings/js/JSEventListener.cpp:
- bindings/js/JSEventListener.h: (WebCore::JSUnprotectedEventListener::create): (WebCore::JSEventListener::create):
- bindings/js/JSEventTargetBase.cpp:
- bindings/js/JSEventTargetBase.h: (WebCore::JSEventTargetBase::getValueProperty): (WebCore::JSEventTargetBase::putValueProperty): (WebCore::JSEventTargetBase::getOwnPropertySlot): (WebCore::JSEventTargetBase::put): (WebCore::JSEventTargetPrototype::JSEventTargetPrototype): (WebCore::JSEventTargetPrototype::self): (WebCore::JSEventTargetPrototype::getOwnPropertySlot): (WebCore::JSEventTargetPrototype::classInfo):
- bindings/js/JSEventTargetNode.cpp:
- bindings/js/JSEventTargetNode.h: (WebCore::JSEventTargetNode::getOwnPropertySlot): (WebCore::JSEventTargetNode::getValueProperty): (WebCore::JSEventTargetNode::put): (WebCore::JSEventTargetNode::putValueProperty):
- bindings/js/JSHTMLAllCollection.h: (WebCore::JSHTMLAllCollection::JSHTMLAllCollection): (WebCore::JSHTMLAllCollection::toBoolean):
- bindings/js/JSHTMLAppletElementCustom.cpp:
- bindings/js/JSHTMLCollectionCustom.cpp:
- bindings/js/JSHTMLDocumentCustom.cpp:
- bindings/js/JSHTMLElementCustom.cpp:
- bindings/js/JSHTMLEmbedElementCustom.cpp:
- bindings/js/JSHTMLFormElementCustom.cpp:
- bindings/js/JSHTMLFrameElementCustom.cpp:
- bindings/js/JSHTMLFrameSetElementCustom.cpp:
- bindings/js/JSHTMLIFrameElementCustom.cpp:
- bindings/js/JSHTMLInputElementBase.cpp: (WebCore::JSHTMLInputElementBase::JSHTMLInputElementBase): (WebCore::JSHTMLInputElementBase::getOwnPropertySlot):
- bindings/js/JSHTMLInputElementBase.h: (WebCore::JSHTMLInputElementBase::classInfo):
- bindings/js/JSHTMLObjectElementCustom.cpp:
- bindings/js/JSHTMLOptionElementConstructor.cpp:
- bindings/js/JSHTMLOptionElementConstructor.h: (WebCore::JSHTMLOptionElementConstructor::classInfo):
- bindings/js/JSHTMLOptionsCollectionCustom.cpp:
- bindings/js/JSHTMLSelectElementCustom.cpp: (WebCore::selectIndexSetter): (WebCore::JSHTMLSelectElement::indexSetter):
- bindings/js/JSHTMLSelectElementCustom.h:
- bindings/js/JSHistoryCustom.cpp:
- bindings/js/JSImageConstructor.cpp:
- bindings/js/JSImageConstructor.h: (WebCore::JSImageConstructor::classInfo):
- bindings/js/JSInspectedObjectWrapper.cpp:
- bindings/js/JSInspectedObjectWrapper.h: (WebCore::JSInspectedObjectWrapper::wrapOutgoingValue): (WebCore::JSInspectedObjectWrapper::classInfo):
- bindings/js/JSInspectorCallbackWrapper.cpp:
- bindings/js/JSInspectorCallbackWrapper.h: (WebCore::JSInspectorCallbackWrapper::classInfo): (WebCore::JSInspectorCallbackWrapper::wrapOutgoingValue):
- bindings/js/JSJavaScriptCallFrameCustom.cpp:
- bindings/js/JSLocationCustom.cpp:
- bindings/js/JSMimeTypeArrayCustom.cpp:
- bindings/js/JSNSResolver.cpp:
- bindings/js/JSNSResolver.h: (WebCore::JSNSResolver::create):
- bindings/js/JSNamedNodeMapCustom.cpp:
- bindings/js/JSNamedNodesCollection.cpp: (WebCore::JSNamedNodesCollection::JSNamedNodesCollection):
- bindings/js/JSNamedNodesCollection.h: (WebCore::JSNamedNodesCollection::classInfo):
- bindings/js/JSNavigatorCustom.cpp:
- bindings/js/JSNodeCustom.cpp:
- bindings/js/JSNodeFilterCondition.cpp: (WebCore::JSNodeFilterCondition::acceptNode):
- bindings/js/JSNodeFilterCondition.h: (WebCore::JSNodeFilterCondition::create):
- bindings/js/JSNodeFilterCustom.cpp:
- bindings/js/JSNodeIteratorCustom.cpp:
- bindings/js/JSNodeListCustom.cpp:
- bindings/js/JSPluginArrayCustom.cpp:
- bindings/js/JSPluginCustom.cpp:
- bindings/js/JSPluginElementFunctions.cpp: (WebCore::getRuntimeObject):
- bindings/js/JSPluginElementFunctions.h:
- bindings/js/JSQuarantinedObjectWrapper.cpp: (WebCore::JSQuarantinedObjectWrapper::construct): (WebCore::JSQuarantinedObjectWrapper::call):
- bindings/js/JSQuarantinedObjectWrapper.h: (WebCore::JSQuarantinedObjectWrapper::unwrappedObject): (WebCore::JSQuarantinedObjectWrapper::unwrappedGlobalObject): (WebCore::JSQuarantinedObjectWrapper::className):
- bindings/js/JSRGBColor.cpp:
- bindings/js/JSRGBColor.h: (WebCore::JSRGBColor::classInfo):
- bindings/js/JSSQLResultSetRowListCustom.cpp:
- bindings/js/JSSQLTransactionCustom.cpp:
- bindings/js/JSSVGLazyEventListener.cpp:
- bindings/js/JSSVGLazyEventListener.h:
- bindings/js/JSSVGLengthCustom.cpp:
- bindings/js/JSSVGMatrixCustom.cpp: (WebCore::JSSVGMatrix::inverse): (WebCore::JSSVGMatrix::rotateFromVector):
- bindings/js/JSSVGPathSegCustom.cpp:
- bindings/js/JSSVGPathSegListCustom.cpp: (WebCore::JSSVGPathSegList::initialize): (WebCore::JSSVGPathSegList::getItem): (WebCore::JSSVGPathSegList::insertItemBefore): (WebCore::JSSVGPathSegList::replaceItem): (WebCore::JSSVGPathSegList::removeItem): (WebCore::JSSVGPathSegList::appendItem):
- bindings/js/JSSVGPointListCustom.cpp:
- bindings/js/JSSVGTransformListCustom.cpp:
- bindings/js/JSStorageCustom.cpp:
- bindings/js/JSStyleSheetCustom.cpp:
- bindings/js/JSStyleSheetListCustom.cpp:
- bindings/js/JSTextCustom.cpp:
- bindings/js/JSTreeWalkerCustom.cpp:
- bindings/js/JSXMLHttpRequestConstructor.cpp:
- bindings/js/JSXMLHttpRequestConstructor.h: (WebCore::JSXMLHttpRequestConstructor::classInfo):
- bindings/js/JSXMLHttpRequestCustom.cpp:
- bindings/js/JSXMLHttpRequestUploadCustom.cpp:
- bindings/js/JSXSLTProcessorConstructor.cpp:
- bindings/js/JSXSLTProcessorConstructor.h: (WebCore::JSXSLTProcessorConstructor::classInfo):
- bindings/js/JSXSLTProcessorCustom.cpp:
- bindings/js/ScheduledAction.cpp:
- bindings/js/ScheduledAction.h:
- bindings/js/ScriptController.cpp: (WebCore::ScriptController::attachDebugger): (WebCore::ScriptController::windowScriptNPObject):
- bindings/js/ScriptController.h:
- bindings/js/ScriptControllerGtk.cpp: (WebCore::ScriptController::createScriptInstanceForWidget):
- bindings/js/ScriptControllerMac.mm: (WebCore::ScriptController::createScriptInstanceForWidget): (WebCore::ScriptController::windowScriptObject): (WebCore::ScriptController::clearPlatformScriptObjects): (WebCore::updateRenderingForBindings): (WebCore::ScriptController::initJavaJSBindings):
- bindings/js/ScriptControllerQt.cpp: (WebCore::ScriptController::createScriptInstanceForWidget):
- bindings/js/ScriptControllerWin.cpp: (WebCore::ScriptController::createScriptInstanceForWidget):
- bindings/js/ScriptControllerWx.cpp: (WebCore::ScriptController::createScriptInstanceForWidget):
- bindings/js/StringSourceProvider.h: (WebCore::StringSourceProvider::getRange):
- bindings/objc/DOM.mm: (-[DOMNode JSC::Bindings::]):
- bindings/objc/DOMInternal.h:
- bindings/objc/DOMInternal.mm: (-[WebScriptObject _initializeScriptDOMNodeImp]):
- bindings/objc/DOMUtility.mm: (JSC::createDOMWrapper): (WebCore::createDOMWrapper):
- bindings/objc/WebScriptObject.mm: (WebCore::createJSWrapper): (-[WebScriptObject _initWithJSObject:JSC::originRootObject:JSC::Bindings::rootObject:JSC::Bindings::]):
- bindings/objc/WebScriptObjectPrivate.h:
- bindings/scripts/CodeGeneratorJS.pm:
- bridge/NP_jsobject.cpp:
- bridge/NP_jsobject.h:
- bridge/c/c_class.cpp:
- bridge/c/c_class.h:
- bridge/c/c_instance.cpp:
- bridge/c/c_instance.h:
- bridge/c/c_runtime.cpp:
- bridge/c/c_runtime.h:
- bridge/c/c_utility.cpp:
- bridge/c/c_utility.h:
- bridge/jni/jni_class.cpp:
- bridge/jni/jni_class.h:
- bridge/jni/jni_instance.cpp:
- bridge/jni/jni_instance.h:
- bridge/jni/jni_jsobject.h:
- bridge/jni/jni_jsobject.mm: (JavaJSObject::call): (JavaJSObject::convertJObjectToValue):
- bridge/jni/jni_objc.mm: (JSC::Bindings::dispatchJNICall):
- bridge/jni/jni_runtime.cpp:
- bridge/jni/jni_runtime.h:
- bridge/jni/jni_utility.cpp:
- bridge/jni/jni_utility.h:
- bridge/npruntime.cpp: (_NPN_GetStringIdentifier):
- bridge/objc/WebScriptObject.h:
- bridge/objc/objc_class.h:
- bridge/objc/objc_class.mm:
- bridge/objc/objc_instance.h:
- bridge/objc/objc_instance.mm:
- bridge/objc/objc_runtime.h:
- bridge/objc/objc_runtime.mm:
- bridge/objc/objc_utility.h:
- bridge/objc/objc_utility.mm:
- bridge/qt/qt_class.cpp:
- bridge/qt/qt_class.h:
- bridge/qt/qt_instance.cpp:
- bridge/qt/qt_instance.h:
- bridge/qt/qt_runtime.cpp: (JSC::Bindings::convertQVariantToValue): (JSC::Bindings::):
- bridge/qt/qt_runtime.h:
- bridge/runtime.cpp:
- bridge/runtime.h:
- bridge/runtime_array.cpp:
- bridge/runtime_array.h:
- bridge/runtime_method.cpp:
- bridge/runtime_method.h:
- bridge/runtime_object.cpp:
- bridge/runtime_object.h:
- bridge/runtime_root.cpp: (JSC::Bindings::RootObject::invalidate): (JSC::Bindings::RootObject::gcProtect): (JSC::Bindings::RootObject::gcUnprotect):
- bridge/runtime_root.h:
- bridge/testbindings.cpp:
- bridge/testbindings.mm:
- bridge/testqtbindings.cpp:
- dom/Document.cpp: (WebCore::Document::~Document):
- dom/NSResolver.h:
- dom/Node.cpp: (WebCore::Node::setDocument): (WebCore::ResolveNamespaceFunctor::ResolveNamespaceFunctor): (WebCore::resolveNamespacesForSelector): (WebCore::Node::querySelector): (WebCore::Node::querySelectorAll):
- dom/Node.h:
- dom/NodeFilter.cpp:
- dom/NodeFilter.h:
- dom/NodeFilterCondition.cpp:
- dom/NodeFilterCondition.h:
- dom/NodeIterator.cpp:
- dom/NodeIterator.h:
- dom/Traversal.cpp:
- dom/Traversal.h:
- dom/TreeWalker.cpp:
- dom/TreeWalker.h:
- dom/make_names.pl:
- history/CachedPage.cpp:
- history/CachedPage.h:
- html/HTMLPlugInElement.cpp: (WebCore::HTMLPlugInElement::getInstance):
- html/HTMLPlugInElement.h:
- loader/FrameLoader.cpp:
- loader/FrameLoader.h:
- loader/icon/IconDatabase.cpp: (WebCore::iconDatabase):
- page/Console.cpp:
- page/Console.h:
- page/InspectorController.cpp: (WebCore::XMLHttpRequestResource::XMLHttpRequestResource): (WebCore::XMLHttpRequestResource::~XMLHttpRequestResource): (WebCore::InspectorResource::setXMLHttpRequestProperties): (WebCore::InspectorResource::sourceString): (WebCore::getResourceDocumentNode): (WebCore::search): (WebCore::InspectorController::focusNode): (WebCore::InspectorController::inspectedWindowScriptObjectCleared): (WebCore::InspectorController::addDatabaseScriptResource): (WebCore::InspectorController::resourceRetrievedByXMLHttpRequest):
- page/InspectorController.h: (WebCore::InspectorController::profiles):
- page/JavaScriptCallFrame.cpp: (WebCore::JavaScriptCallFrame::scopeChain):
- page/JavaScriptCallFrame.h: (WebCore::JavaScriptCallFrame::create): (WebCore::JavaScriptCallFrame::update):
- page/JavaScriptDebugListener.h:
- page/JavaScriptDebugServer.cpp: (WebCore::dispatchDidParseSource):
- page/JavaScriptDebugServer.h:
- page/JavaScriptProfile.cpp:
- page/JavaScriptProfile.h:
- page/JavaScriptProfileNode.cpp: (WebCore::getTotalTime): (WebCore::getSelfTime): (WebCore::getTotalPercent): (WebCore::getSelfPercent): (WebCore::getNumberOfCalls): (WebCore::getChildren): (WebCore::getVisible):
- page/JavaScriptProfileNode.h:
- page/Page.cpp: (WebCore::Page::setDebuggerForAllPages): (WebCore::Page::setDebugger):
- page/Page.h: (WebCore::Page::debugger):
- page/mac/FrameMac.mm:
- platform/KURL.h: (WebCore::KURL::operator JSC::UString):
- platform/text/AtomicString.cpp: (WebCore::AtomicString::add): (WebCore::AtomicString::find):
- platform/text/AtomicString.h: (WebCore::AtomicString::AtomicString):
- platform/text/PlatformString.h:
- platform/text/String.cpp: (WebCore::charactersToDouble):
- platform/win/BString.cpp:
- platform/win/BString.h:
- plugins/MimeTypeArray.h:
- plugins/Plugin.h:
- plugins/PluginArray.h:
- plugins/PluginView.cpp: (WebCore::PluginView::start): (WebCore::PluginView::performRequest): (WebCore::PluginView::bindingInstance):
- plugins/PluginView.h:
- plugins/gtk/PluginViewGtk.cpp: (WebCore::PluginView::paint): (WebCore::PluginView::handleKeyboardEvent): (WebCore::PluginView::handleMouseEvent): (WebCore::PluginView::setNPWindowRect): (WebCore::PluginView::stop): (WebCore::PluginView::init):
- plugins/qt/PluginViewQt.cpp: (WebCore::PluginView::setNPWindowRect): (WebCore::PluginView::stop): (WebCore::PluginView::init):
- plugins/win/PluginViewWin.cpp: (WebCore::PluginView::dispatchNPEvent): (WebCore::PluginView::handleKeyboardEvent): (WebCore::PluginView::handleMouseEvent): (WebCore::PluginView::setNPWindowRect): (WebCore::PluginView::stop):
- storage/Database.cpp: (WebCore::Database::Database):
- xml/XMLHttpRequest.cpp: (WebCore::XMLHttpRequest::responseText): (WebCore::XMLHttpRequest::loadRequestAsynchronously): (WebCore::XMLHttpRequest::clearResponse): (WebCore::XMLHttpRequest::dropProtection): (WebCore::XMLHttpRequest::didFinishLoading): (WebCore::XMLHttpRequest::didReceiveData):
- xml/XMLHttpRequest.h:
WebKit/gtk:
- webkit/webkitprivate.cpp: (webkit_init):
WebKit/mac:
- Misc/WebCoreStatistics.mm:
- Plugins/WebBaseNetscapePluginStream.mm: (-[WebBaseNetscapePluginStream wantsAllStreams]):
- Plugins/WebBaseNetscapePluginView.mm: (-[WebBaseNetscapePluginView sendEvent:isDrawRect:]): (-[WebBaseNetscapePluginView setWindowIfNecessary]): (-[WebBaseNetscapePluginView start]): (-[WebBaseNetscapePluginView createPluginScriptableObject]): (-[WebBaseNetscapePluginView evaluateJavaScriptPluginRequest:]): (-[WebBaseNetscapePluginView webFrame:didFinishLoadWithReason:]): (-[WebBaseNetscapePluginView loadPluginRequest:]): (-[WebBaseNetscapePluginView _printedPluginBitmap]):
- Plugins/WebPluginController.mm: (+[WebPluginController plugInViewWithArguments:fromPluginPackage:]): (-[WebPluginController startAllPlugins]): (-[WebPluginController stopAllPlugins]): (-[WebPluginController addPlugin:]): (-[WebPluginController destroyPlugin:]): (-[WebPluginController destroyAllPlugins]):
- WebView/WebFrame.mm:
- WebView/WebScriptDebugDelegate.mm:
- WebView/WebScriptDebugger.h:
- WebView/WebScriptDebugger.mm:
- WebView/WebView.mm: (-[WebViewPrivate init]):
WebKit/qt:
- Api/qwebframe.cpp: (QWebFrame::addToJavaScriptWindowObject): (QWebFrame::evaluateJavaScript):
WebKit/win:
- WebCoreStatistics.cpp:
- WebJavaScriptCollector.cpp:
- WebScriptCallFrame.cpp: (WebScriptCallFrame::jsValueToString):
- WebScriptCallFrame.h: (WebScriptCallFrame::state):
- WebView.cpp: (WebView::WebView): (WebView::stringByEvaluatingJavaScriptFromString):
WebKit/wx:
- WebFrame.cpp: (wxWebFrame::RunScript):
- 5:03 PM Changeset in webkit [36262] by
-
- 3 edits7 adds in trunk
WebCore:
2008-09-07 Adam Barth <abarth@webkit.org>
Reviewed by Sam Weinig.
Adopt opener restriction on frame navigation.
This restriction helps prevent an attacker from navigating top-level
windows that were created by another web site.
Tests: http/tests/security/frameNavigation/not-opener.html
http/tests/security/frameNavigation/opener.html
- loader/FrameLoader.cpp: (WebCore::canAccessAncestor): (WebCore::FrameLoader::shouldAllowNavigation):
LayoutTests:
2008-09-07 Adam Barth <abarth@webkit.org>
Reviewed by Sam Weinig.
Tests that opener restriction is working properly.
- http/tests/security/frameNavigation/not-opener-expected.txt: Added.
- http/tests/security/frameNavigation/not-opener.html: Added.
- http/tests/security/frameNavigation/opener-expected.txt: Copied from LayoutTests/fast/dom/Document/early-document-access-expected.txt.
- http/tests/security/frameNavigation/opener.html: Added.
- http/tests/security/frameNavigation/resources/not-opener-helper.html: Added.
- http/tests/security/frameNavigation/resources/pass.html: Added.
- http/tests/security/frameNavigation/resources/ready.html: Added.
- 4:23 PM Changeset in webkit [36261] by
-
- 7 edits1 move in trunk/JavaScriptCore
2008-09-07 Maciej Stachowiak <mjs@apple.com>
Reviewed by Dan Bernstein.
- rename IA32MacroAssembler class to X86Assembler
We otherwise call the platform X86, and also, I don't see any macros.
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj:
- JavaScriptCore.xcodeproj/project.pbxproj:
- masm/IA32MacroAsm.h: Removed.
- masm/MacroAssembler.h: (KJS::MacroAssembler::MacroAssembler):
- masm/MacroAssemblerWin.cpp: (KJS::MacroAssembler::emitRestoreArgumentReference):
- masm/X86Assembler.h: Copied from masm/IA32MacroAsm.h. (KJS::X86Assembler::X86Assembler):
- wrec/WREC.cpp: (KJS::WRECGenerator::generateNonGreedyQuantifier): (KJS::WRECGenerator::generateGreedyQuantifier): (KJS::WRECGenerator::generateParentheses): (KJS::WRECGenerator::generateBackreference): (KJS::WRECGenerator::gernerateDisjunction):
- wrec/WREC.h:
- 4:19 PM Changeset in webkit [36260] by
-
- 2 edits in trunk/WebCore
Reviewed by Maciej Stachowiak.
- use the correct sign for vertical offsets of combining marks
- platform/graphics/win/UniscribeController.cpp: (WebCore::UniscribeController::shapeAndPlaceItem):
- 3:30 PM Changeset in webkit [36259] by
-
- 2 edits in trunk/WebCore
Reviewed by Dave Hyatt.
- add the combining mark offsets in two places where I forgot them
- platform/graphics/win/FontCGWin.cpp: (WebCore::Font::drawGlyphs):
- 3:29 PM Changeset in webkit [36258] by
-
- 2 edits in trunk/WebCore
Reviewed by Dave Hyatt.
- correct glyph advances in complex text using web fonts rendered with Core Graphics
- platform/graphics/win/FontCustomPlatformData.cpp: (WebCore::FontCustomPlatformData::fontPlatformData):
- 10:28 AM Changeset in webkit [36257] by
-
- 2 edits in trunk/PlanetWebKit
Add the Chromium Blog to Planet WebKit.
Reviewed by Tim Hatcher.
- config.ini: Add The Chromium Blog
- 9:48 AM Changeset in webkit [36256] by
-
- 2 adds in trunk/WebCore/manual-tests/inspector
Add a manual-test I forgot to commit in r36029.
- 9:48 AM Changeset in webkit [36255] by
-
- 12 edits1 add in trunk/WebCore
Adds console.dirxml support to the Web Inspector.
Reviewed by Timothy Hatcher.
- WebCore.vcproj/WebCore.vcproj: Added ElementsTreeOutline.js.
- bindings/js/JSConsoleCustom.cpp: (WebCore::JSConsole::dirxml):
- page/Console.cpp: (WebCore::Console::dirxml): Adds a ConsoleMessage with NodeMessageLevel.
- page/Console.h: (WebCore::): Added NodeMessageLevel.
- page/Console.idl: Added console.dirxml.
- page/inspector/Console.js: A NodeMessage creates a ElementsTreeOutline.
- page/inspector/ElementsPanel.js: Modified to use ElementsTreeOutline. The ElementsTreeOutline in the ElementsPanel has includeRootDOMNode and selectEnabled set to true.
- page/inspector/ElementsTreeOutline.js: Added. (WebInspector.ElementsTreeOutline): A subclass of TreeOutline for displaying a DOM node tree. (WebInspector.ElementsTreeElement): A subclass of TreeElement for ElementsTreeOutline.
- page/inspector/WebKit.qrc: Added ElementsTreeOutline.js.
- page/inspector/inspector.css:
- page/inspector/inspector.html: Added ElementsTreeOutline.js.
- page/inspector/inspector.js: Moved hover related methods to WebInspector. (WebInspector.altKeyDown): (WebInspector.forceHoverHighlight): (WebInspector.hoveredDOMNode): (WebInspector._updateHoverHighlightSoon): (WebInspector._updateHoverHighlight): (WebInspector.documentKeyDown): Updates WebInspector.altKeyDown (WebInspector.documentKeyUp): Updates WebInspector.altKeyDown
- page/inspector/utilities.js: Added getDocumentForNode, parentNodeOrFrameElement, isAncestorIncludingParentFrames.
- 2:20 AM Changeset in webkit [36254] by
-
- 2 edits in trunk/JavaScriptCore
2008-09-07 Cameron Zwarich <cwzwarich@webkit.org>
Not reviewed.
Visual C++ seems to have some odd casting rules, so just convert the
offending cast back to a C-style cast for now.
- kjs/collector.cpp: (KJS::otherThreadStackPointer):
- 2:09 AM Changeset in webkit [36253] by
-
- 2 edits in trunk/JavaScriptCore
2008-09-07 Cameron Zwarich <cwzwarich@uwaterloo.ca>
Reviewed by Mark Rowe.
Attempt to fix the Windows build by using a const_cast to cast regs.Esp
to a uintptr_t instead of a reinterpret_cast.
- kjs/collector.cpp: (KJS::otherThreadStackPointer):
- 1:41 AM Changeset in webkit [36252] by
-
- 3 edits in trunk/WebKit/win
Roll out r36245 in hopes of fixing the Windows nightly builds with Safari 3.1.2.
Rubber-stamped by Tim Hatcher.
- 1:39 AM Changeset in webkit [36251] by
-
- 2 edits in trunk/JavaScriptCore
2008-09-07 Cameron Zwarich <cwzwarich@uwaterloo.ca>
Reviewed by Sam Weinig.
Remove C-style casts from kjs/collector.cpp.
- kjs/collector.cpp: (KJS::Heap::heapAllocate): (KJS::currentThreadStackBase): (KJS::Heap::markConservatively): (KJS::otherThreadStackPointer): (KJS::Heap::markOtherThreadConservatively): (KJS::Heap::sweep):
- 12:54 AM Changeset in webkit [36250] by
-
- 2 edits in trunk/JavaScriptCore
Build fix for the debug variant.
- DerivedSources.make: Also use the .Debug.exp exports file when building the debug variant.
- 12:21 AM Changeset in webkit [36249] by
-
- 2 edits in trunk/JavaScriptCore
2008-09-07 Cameron Zwarich <cwzwarich@uwaterloo.ca>
Reviewed by Timothy Hatcher.
Remove C-style casts from the CTI code.
- VM/CTI.cpp: (KJS::CTI::emitGetArg): (KJS::CTI::emitGetPutArg): (KJS::ctiRepatchCallByReturnAddress): (KJS::CTI::compileOpCall): (KJS::CTI::privateCompileMainPass): (KJS::CTI::privateCompileGetByIdSelf): (KJS::CTI::privateCompileGetByIdProto): (KJS::CTI::privateCompileGetByIdChain): (KJS::CTI::privateCompilePutByIdReplace): (KJS::CTI::privateArrayLengthTrampoline): (KJS::CTI::privateStringLengthTrampoline):
- 12:12 AM Changeset in webkit [36248] by
-
- 3 edits in trunk/WebKitTools
2008-09-07 Stephanie Lewis <Stephanie Lewis>
Reviewed by Mark Rowe.
Fix DRT build
- DumpRenderTree/DumpRenderTreePrefix.h:
- DumpRenderTree/win/DumpRenderTree.vcproj: