Timeline
Sep 26, 2007:
- 9:01 PM Changeset in webkit [25773] by
-
- 2 edits in trunk/LayoutTests
Remove a test that was probably only intermittently failing
Reviewed by NOBODY.
- platform/win/Skipped:
- 6:30 PM Changeset in webkit [25772] by
-
- 2 edits in trunk/WebKitQt
2007-09-26 Mark Rowe <mrowe@apple.com>
Qt build fix.
- WebCoreSupport/FrameLoaderClientQt.cpp: (WebCore::FrameLoaderClientQt::objectContentType): Check for empty URL instead of invalid URL.
- 6:29 PM Changeset in webkit [25771] by
-
- 2 edits in trunk/WebKit/gtk
2007-09-26 Mark Rowe <mrowe@apple.com>
Gtk build fix.
- WebCoreSupport/FrameLoaderClientGtk.cpp: Check for empty URL instead of invalid URL.
- 6:24 PM Changeset in webkit [25770] by
-
- 3 edits in trunk/WebCore
- fix Windows build
- platform/win/ClipboardWin.cpp: (WebCore::writeURL): Add a check for empty URL. Remove the check for invalid URL. (WebCore::ClipboardWin::setData): Remove the check for invalid URL.
- plugins/win/PluginViewWin.cpp: (WebCore::PluginViewWin::start): Check for empty URL instead of invalid URL. (WebCore::PluginViewWin::load): Same here.
- 5:56 PM Changeset in webkit [25769] by
-
- 6 edits in trunk/WebCore
Reviewed by John Sullivan.
- fix <rdar://problem/5491054> REGRESSION (Mail, plain-text only): Nothing happens when you click on rdar://<num>&<num> links (or AOL links in Safari)
Remove the non-useful concept of a "malformed"/"invalid" URL.
There are URLs we can parse, and others we can't, but that's not sufficient to
determine if we should try to work with the URL. It's entirely possible that
a so-called "malformed" URL will work just fine if it's passed to the right
software.
- platform/KURL.h: Removed isMalformed() and isValid().
- loader/Cache.cpp: (WebCore::Cache::requestResource): Removed unneeded check if the URL is valid. But do check for an empty URL just to guarantee we don't trip up with a null string. It's possible we can remove this empty URL check later, but it's less risky to leave the empty string behavior alone for now.
- loader/FrameLoader.cpp: (WebCore::FrameLoader::urlSelected): Removed unneeded check if the URL is valid. Back on 2007-07-08, we realized that we needed to allow empty URLs. But we also need to allow other URLs here. This is the code path from the Mail case. (WebCore::FrameLoader::submitForm): Replaced URL validity check with a check for an empty URL (same reasoning as for requestResource above).
- page/InspectorController.cpp: (WebCore::InspectorResource::type):
- rendering/RenderObject.cpp: (WebCore::RenderObject::addPDFURLRect): Removed unneeded check for an invalid URL. In both of these cases it's definitely safe to allow event an empty URL.
- 4:26 PM Changeset in webkit [25768] by
-
- 4 edits in trunk/WebKit
Reviewed by Adele Peterson.
Fixed <rdar://problem/5507476> Promote cache model SPI to API
Promoted cache model SPI to API. This was just a move, with some small
edits to the documentation (changing 'application' to 'WebView' in
some cases, since the interface is now per-WebView).
- WebView/WebPreferences.h:
- WebView/WebPreferences.m: (-[WebPreferences setCacheModel:]): (-[WebPreferences cacheModel]):
- WebView/WebPreferencesPrivate.h:
- 4:02 PM Changeset in webkit [25767] by
-
- 4 edits in branches/Safari-2.0-dashboard/WebCore
2007-08-24 Sam Weinig <sam@webkit.org>
Reviewed by Adele.
Fix for <rdar://problem/5426142>
Use the EventTarget's frame when creating the EventListener.
Tests: http/tests/security/listener/xss-JSTargetNode-onclick-addEventListener.html
http/tests/security/listener/xss-JSTargetNode-onclick-shortcut.html
http/tests/security/listener/xss-window-onclick-addEventListener.html
http/tests/security/listener/xss-window-onclick-shortcut.html
- bindings/js/JSEventTargetNode.cpp: (WebCore::JSEventTargetNode::setListener): (WebCore::JSEventTargetNodePrototypeFunction::callAsFunction):
- bindings/js/kjs_window.cpp: (KJS::WindowFunc::callAsFunction):
2007-08-28 Sam Weinig <sam@webkit.org>
Reviewed by Darin.
Update fix landed in r25249 to account for XMLHttpRequest, which can also be EventTargets.
Tests: http/tests/security/listener/xss-XMLHttpRequest-addEventListener.html
http/tests/security/listener/xss-XMLHttpRequest-shortcut.html
- bindings/js/JSXMLHttpRequest.cpp: (KJS::JSXMLHttpRequest::putValueProperty): Use the Window object associated with document's frame, not the active Window. (KJS::JSXMLHttpRequestPrototypeFunction::callAsFunction): ditto
- xml/XMLHttpRequest.h: (WebCore::XMLHttpRequest::document): Expose Document member so bindings can access the correct frame.
- 2:23 PM Changeset in webkit [25766] by
-
- 2 edits in trunk/LayoutTests
Add more failing tests to the Windows Skipped file
Reviewed by NOBODY.
- platform/win/Skipped:
- 1:06 PM Changeset in webkit [25765] by
-
- 1 edit in trunk/JavaScriptCore/kjs/testkjs.cpp
Oh, Visual Studio, why don't you see when a project file has changed that the project needs to be rebuilt?
- 12:57 PM Changeset in webkit [25764] by
-
- 2 edits in trunk/JavaScriptCore
Make testkjs delay-load WebKit.dll so WebKitInitializer can work its magic
Rubberstamped by Anders.
- JavaScriptCore.vcproj/testkjs/testkjs.vcproj:
- 10:23 AM Changeset in webkit [25763] by
-
- 3 edits in trunk/WebKitTools
Make not finding an installed WebKit non-fatal
What really matters is that we are able to load WebKit and its
dependencies, not whether we think we've found an installed WebKit.
Reviewed by Sam.
- WebKitInitializer/WebKitInitializer.cpp: (getWebViewCLSID): Use new LOG_WARNING macro. (getInstalledWebKitDirectory): Ditto. (initializeWebKit): Don't die if we didn't find an installed WebKit, and use new macros.
- WebKitInitializer/WebKitInitializer.vcproj: Disabled a warning.
- 10:22 AM Changeset in webkit [25762] by
-
- 2 edits in trunk/WebKitTools
Committed this file before saving it
- WebKitInitializer/debug_internal.vsprops:
- 4:28 AM Changeset in webkit [25761] by
-
- 2 edits in trunk/WebCore
2007-09-26 George Staikos <staikos@kde.org>
Reviewed by John Sullivan.
Only highlight the applicable portion of the text run for a search
highlight. No way to make a testcase for this presently.
- rendering/InlineTextBox.cpp: (WebCore::InlineTextBox::paintTextMatchMarker):
- 12:07 AM Changeset in webkit [25760] by
-
- 3 edits1 add in trunk/WebKitTools
Load WebKit and its dependencies manually so they come from DllDirectory
I had to change WebKitInitializer to use malloc/free instead of
new/delete to avoid pulling in WebKit (and its dependencies) early
through use of fastMalloc.
Reviewed by Oliver.
- WebKitInitializer/WebKitInitializer.cpp: (getStringValue): Changed to use malloc/free. (getInstalledWebKitDirectory): Ditto. (initializeWebKit): Call SetDllDirectory first, then load all of WebKit's dependencies manually, finally followed by WebKit itself.
- WebKitInitializer/WebKitInitializer.vcproj: Added a new configuration to match our other projects.
- WebKitInitializer/debug_internal.vsprops: Added.
Sep 25, 2007:
- 11:08 PM Changeset in webkit [25759] by
-
- 2 edits in trunk
Touch files to force a rebuild
- 10:54 PM Changeset in webkit [25758] by
-
- 2 edits in trunk/WebKitTools
Actually define DEBUG/NDEBUG so that we load WebKit correctly
Rubberstamped by Sam.
- WebKitInitializer/WebKitInitializer.vcproj:
- 10:26 PM Changeset in webkit [25757] by
-
- 6 edits in trunk
Make testkjs and DRT delay-load their dependencies
Make testkjs delay-load its dependencies
This lets WebKitInitializer re-route the dependencies to be loaded out
of the Safari installation directory.
Rubberstamped by Sam.
- JavaScriptCore.vcproj/testkjs/testkjs.vcproj:
WebKitTools:
Make DumpRenderTree delay-load its dependencies
This lets WebKitInitializer re-route the dependencies to be loaded out
of the Safari installation directory.
Also replaced all uses of kCFAllocatorDefault with 0 (which means the
same thing), since we can't import the kCFAllocatorDefault symbol when
delay-loading CoreFoundation.dll.
Rubberstamped by Sam.
- DumpRenderTree/win/DumpRenderTree.cpp: (runTest): (javaScriptThreads):
- DumpRenderTree/win/DumpRenderTree.vcproj:
- DumpRenderTree/win/LayoutTestControllerWin.cpp: (LayoutTestController::setWaitToDump):
- 9:36 PM Changeset in webkit [25756] by
-
- 1 edit in trunk/WebKitTools/WebKitInitializer/WebKitInitializer.cpp
Touch it again so it rebuilds
- 7:40 PM Changeset in webkit [25755] by
-
- 2 edits in trunk/WebKitTools
Pull ole32.lib into WebKitInitializer
Rubberstamped by Sam.
- WebKitInitializer/WebKitInitializer.vcproj:
- 7:29 PM Changeset in webkit [25754] by
-
- 1167 edits in trunk
Reviewed by Adam.
- Fix http://bugs.webkit.org/show_bug.cgi?id=14885 LGPL'ed files contain incorrect FSF address
- COPYING.LIB:
- bindings/testbindings.cpp:
- kjs/AllInOneFile.cpp:
- kjs/DateMath.cpp:
- kjs/PropertyNameArray.cpp:
- kjs/PropertyNameArray.h:
- kjs/config.h:
WebCore:
Reviewed by Adam.
- Fix http://bugs.webkit.org/show_bug.cgi?id=14885 LGPL'ed files contain incorrect FSF address
- LICENSE-LGPL-2:
- LICENSE-LGPL-2.1:
- WebCorePrefix.h:
- bindings/js/JSCanvasRenderingContext2DCustom.cpp:
- bindings/js/JSDOMWindowCustom.cpp:
- bindings/js/JSDocumentCustom.cpp:
- bindings/js/JSHTMLCollectionCustom.cpp:
- bindings/js/JSHTMLElementWrapperFactory.cpp:
- bindings/js/JSHTMLElementWrapperFactory.h:
- bindings/js/JSHTMLInputElementBase.cpp:
- bindings/js/JSHTMLInputElementBase.h:
- bindings/js/JSHTMLOptionElementConstructor.cpp:
- bindings/js/JSHTMLOptionElementConstructor.h:
- bindings/js/JSHTMLOptionsCollectionCustom.cpp:
- bindings/js/JSHTMLSelectElementCustom.cpp:
- bindings/js/JSNodeFilterCondition.cpp:
- bindings/js/JSNodeFilterCondition.h:
- bindings/js/JSNodeIteratorCustom.cpp:
- bindings/js/JSSVGElementWrapperFactory.cpp:
- bindings/js/JSSVGElementWrapperFactory.h:
- bindings/js/JSSVGMatrixCustom.cpp:
- bindings/js/JSSVGPathSegCustom.cpp:
- bindings/js/JSSVGPathSegListCustom.cpp:
- bindings/js/JSSVGPointListCustom.cpp:
- bindings/js/JSTreeWalkerCustom.cpp:
- bindings/js/JSXMLHttpRequest.cpp:
- bindings/js/JSXMLHttpRequest.h:
- bindings/js/kjs_binding.cpp:
- bindings/js/kjs_binding.h:
- bindings/js/kjs_css.cpp:
- bindings/js/kjs_css.h:
- bindings/js/kjs_dom.cpp:
- bindings/js/kjs_dom.h:
- bindings/js/kjs_events.cpp:
- bindings/js/kjs_events.h:
- bindings/js/kjs_html.cpp:
- bindings/js/kjs_html.h:
- bindings/js/kjs_navigator.cpp:
- bindings/js/kjs_navigator.h:
- bindings/js/kjs_proxy.cpp:
- bindings/js/kjs_proxy.h:
- bindings/js/kjs_window.cpp:
- bindings/js/kjs_window.h:
- bindings/objc/DOMImplementationFront.cpp:
- bindings/objc/DOMImplementationFront.h:
- bindings/scripts/CodeGenerator.pm:
- bindings/scripts/CodeGeneratorJS.pm:
- bindings/scripts/CodeGeneratorObjC.pm:
- bindings/scripts/IDLParser.pm:
- bindings/scripts/IDLStructure.pm:
- bindings/scripts/generate-bindings.pl:
- config.h:
- css/CSSBorderImageValue.cpp:
- css/CSSBorderImageValue.h:
- css/CSSCharsetRule.cpp:
- css/CSSCharsetRule.h:
- css/CSSCharsetRule.idl:
- css/CSSComputedStyleDeclaration.cpp:
- css/CSSComputedStyleDeclaration.h:
- css/CSSCursorImageValue.cpp:
- css/CSSCursorImageValue.h:
- css/CSSFontFaceRule.cpp:
- css/CSSFontFaceRule.h:
- css/CSSFontFaceRule.idl:
- css/CSSGrammar.y:
- css/CSSHelper.cpp:
- css/CSSHelper.h:
- css/CSSImageValue.cpp:
- css/CSSImageValue.h:
- css/CSSImportRule.cpp:
- css/CSSImportRule.h:
- css/CSSImportRule.idl:
- css/CSSInheritedValue.cpp:
- css/CSSInheritedValue.h:
- css/CSSInitialValue.cpp:
- css/CSSInitialValue.h:
- css/CSSMediaRule.cpp:
- css/CSSMediaRule.h:
- css/CSSMediaRule.idl:
- css/CSSMutableStyleDeclaration.cpp:
- css/CSSMutableStyleDeclaration.h:
- css/CSSNamespace.h:
- css/CSSPageRule.cpp:
- css/CSSPageRule.h:
- css/CSSPageRule.idl:
- css/CSSParser.cpp:
- css/CSSParser.h:
- css/CSSPrimitiveValue.cpp:
- css/CSSPrimitiveValue.h:
- css/CSSPrimitiveValue.idl:
- css/CSSProperty.cpp:
- css/CSSProperty.h:
- css/CSSQuirkPrimitiveValue.h:
- css/CSSRule.cpp:
- css/CSSRule.h:
- css/CSSRule.idl:
- css/CSSRuleList.cpp:
- css/CSSRuleList.h:
- css/CSSSelector.cpp:
- css/CSSSelector.h:
- css/CSSStyleDeclaration.cpp:
- css/CSSStyleDeclaration.h:
- css/CSSStyleDeclaration.idl:
- css/CSSStyleRule.cpp:
- css/CSSStyleRule.h:
- css/CSSStyleRule.idl:
- css/CSSStyleSelector.cpp:
- css/CSSStyleSelector.h:
- css/CSSStyleSheet.cpp:
- css/CSSStyleSheet.h:
- css/CSSStyleSheet.idl:
- css/CSSUnknownRule.h:
- css/CSSUnknownRule.idl:
- css/CSSValue.h:
- css/CSSValue.idl:
- css/CSSValueList.cpp:
- css/CSSValueList.h:
- css/Counter.h:
- css/Counter.idl:
- css/DashboardRegion.h:
- css/FontFamilyValue.cpp:
- css/FontFamilyValue.h:
- css/FontValue.cpp:
- css/FontValue.h:
- css/MediaFeatureNames.cpp:
- css/MediaFeatureNames.h:
- css/MediaList.cpp:
- css/MediaList.h:
- css/Pair.h:
- css/RGBColor.idl:
- css/Rect.h:
- css/Rect.idl:
- css/ShadowValue.cpp:
- css/ShadowValue.h:
- css/StyleBase.cpp:
- css/StyleBase.h:
- css/StyleList.cpp:
- css/StyleList.h:
- css/StyleSheet.cpp:
- css/StyleSheet.h:
- css/StyleSheet.idl:
- css/StyleSheetList.cpp:
- css/StyleSheetList.h:
- css/StyleSheetList.idl:
- css/html4.css:
- css/make-css-file-arrays.pl:
- css/makegrammar.pl:
- css/makeprop.pl:
- css/maketokenizer:
- css/makevalues.pl:
- css/quirks.css:
- dom/AtomicStringList.h:
- dom/Attr.cpp:
- dom/Attr.h:
- dom/Attr.idl:
- dom/Attribute.cpp:
- dom/Attribute.h:
- dom/BeforeUnloadEvent.cpp:
- dom/BeforeUnloadEvent.h:
- dom/CDATASection.cpp:
- dom/CDATASection.h:
- dom/CDATASection.idl:
- dom/CSSMappedAttributeDeclaration.cpp:
- dom/CSSMappedAttributeDeclaration.h:
- dom/CharacterData.cpp:
- dom/CharacterData.h:
- dom/CharacterData.idl:
- dom/ChildNodeList.cpp:
- dom/ChildNodeList.h:
- dom/Clipboard.h:
- dom/ClipboardEvent.cpp:
- dom/ClipboardEvent.h:
- dom/Comment.cpp:
- dom/Comment.h:
- dom/Comment.idl:
- dom/ContainerNode.cpp:
- dom/ContainerNode.h:
- dom/DOMImplementation.cpp:
- dom/DOMImplementation.h:
- dom/DOMImplementation.idl:
- dom/DocPtr.h:
- dom/Document.cpp:
- dom/Document.h:
- dom/Document.idl:
- dom/DocumentFragment.cpp:
- dom/DocumentFragment.h:
- dom/DocumentFragment.idl:
- dom/DocumentMarker.h:
- dom/DocumentType.cpp:
- dom/DocumentType.h:
- dom/DocumentType.idl:
- dom/EditingText.cpp:
- dom/EditingText.h:
- dom/Element.cpp:
- dom/Element.h:
- dom/Element.idl:
- dom/Entity.cpp:
- dom/Entity.h:
- dom/Entity.idl:
- dom/EntityReference.cpp:
- dom/EntityReference.h:
- dom/EntityReference.idl:
- dom/Event.cpp:
- dom/Event.h:
- dom/Event.idl:
- dom/EventListener.h:
- dom/EventListener.idl:
- dom/EventNames.cpp:
- dom/EventNames.h:
- dom/EventTarget.idl:
- dom/EventTargetNode.cpp:
- dom/EventTargetNode.h:
- dom/ExceptionCode.h:
- dom/KeyboardEvent.cpp:
- dom/KeyboardEvent.h:
- dom/KeyboardEvent.idl:
- dom/MappedAttribute.cpp:
- dom/MappedAttribute.h:
- dom/MappedAttributeEntry.h:
- dom/MouseEvent.cpp:
- dom/MouseEvent.h:
- dom/MouseEvent.idl:
- dom/MouseRelatedEvent.cpp:
- dom/MouseRelatedEvent.h:
- dom/MutationEvent.cpp:
- dom/MutationEvent.h:
- dom/MutationEvent.idl:
- dom/NameNodeList.cpp:
- dom/NameNodeList.h:
- dom/NamedAttrMap.cpp:
- dom/NamedAttrMap.h:
- dom/NamedMappedAttrMap.cpp:
- dom/NamedMappedAttrMap.h:
- dom/NamedNodeMap.h:
- dom/NamedNodeMap.idl:
- dom/Node.cpp:
- dom/Node.h:
- dom/Node.idl:
- dom/NodeFilter.cpp:
- dom/NodeFilter.h:
- dom/NodeFilter.idl:
- dom/NodeFilterCondition.cpp:
- dom/NodeFilterCondition.h:
- dom/NodeIterator.cpp:
- dom/NodeIterator.h:
- dom/NodeIterator.idl:
- dom/NodeList.cpp:
- dom/NodeList.h:
- dom/NodeList.idl:
- dom/Notation.cpp:
- dom/Notation.h:
- dom/Notation.idl:
- dom/ProcessingInstruction.cpp:
- dom/ProcessingInstruction.h:
- dom/ProcessingInstruction.idl:
- dom/QualifiedName.cpp:
- dom/QualifiedName.h:
- dom/Range.cpp:
- dom/Range.h:
- dom/Range.idl:
- dom/RangeException.h:
- dom/RangeException.idl:
- dom/RegisteredEventListener.cpp:
- dom/RegisteredEventListener.h:
- dom/StyleElement.cpp:
- dom/StyleElement.h:
- dom/StyledElement.cpp:
- dom/StyledElement.h:
- dom/Text.cpp:
- dom/Text.h:
- dom/Text.idl:
- dom/Tokenizer.h:
- dom/Traversal.cpp:
- dom/Traversal.h:
- dom/TreeWalker.cpp:
- dom/TreeWalker.h:
- dom/TreeWalker.idl:
- dom/UIEvent.cpp:
- dom/UIEvent.h:
- dom/UIEvent.idl:
- dom/UIEventWithKeyState.cpp:
- dom/UIEventWithKeyState.h:
- dom/WheelEvent.cpp:
- dom/WheelEvent.h:
- dom/WheelEvent.idl:
- dom/XMLTokenizer.cpp:
- dom/XMLTokenizer.h:
- html/FormDataList.cpp:
- html/FormDataList.h:
- html/HTMLAnchorElement.cpp:
- html/HTMLAnchorElement.h:
- html/HTMLAnchorElement.idl:
- html/HTMLAppletElement.cpp:
- html/HTMLAppletElement.h:
- html/HTMLAppletElement.idl:
- html/HTMLAreaElement.cpp:
- html/HTMLAreaElement.h:
- html/HTMLAreaElement.idl:
- html/HTMLBRElement.cpp:
- html/HTMLBRElement.h:
- html/HTMLBRElement.idl:
- html/HTMLBaseElement.cpp:
- html/HTMLBaseElement.h:
- html/HTMLBaseElement.idl:
- html/HTMLBaseFontElement.cpp:
- html/HTMLBaseFontElement.h:
- html/HTMLBaseFontElement.idl:
- html/HTMLBlockquoteElement.cpp:
- html/HTMLBlockquoteElement.h:
- html/HTMLBlockquoteElement.idl:
- html/HTMLBodyElement.cpp:
- html/HTMLBodyElement.h:
- html/HTMLBodyElement.idl:
- html/HTMLButtonElement.cpp:
- html/HTMLButtonElement.h:
- html/HTMLButtonElement.idl:
- html/HTMLCollection.cpp:
- html/HTMLCollection.h:
- html/HTMLCollection.idl:
- html/HTMLDListElement.cpp:
- html/HTMLDListElement.h:
- html/HTMLDListElement.idl:
- html/HTMLDirectoryElement.cpp:
- html/HTMLDirectoryElement.h:
- html/HTMLDirectoryElement.idl:
- html/HTMLDivElement.cpp:
- html/HTMLDivElement.h:
- html/HTMLDivElement.idl:
- html/HTMLDocument.cpp:
- html/HTMLDocument.h:
- html/HTMLDocument.idl:
- html/HTMLElement.cpp:
- html/HTMLElement.h:
- html/HTMLElement.idl:
- html/HTMLElementFactory.cpp:
- html/HTMLElementFactory.h:
- html/HTMLEmbedElement.cpp:
- html/HTMLEmbedElement.h:
- html/HTMLEmbedElement.idl:
- html/HTMLEntityNames.gperf:
- html/HTMLFieldSetElement.cpp:
- html/HTMLFieldSetElement.h:
- html/HTMLFieldSetElement.idl:
- html/HTMLFontElement.cpp:
- html/HTMLFontElement.h:
- html/HTMLFontElement.idl:
- html/HTMLFormCollection.cpp:
- html/HTMLFormCollection.h:
- html/HTMLFormElement.cpp:
- html/HTMLFormElement.h:
- html/HTMLFormElement.idl:
- html/HTMLFrameElement.cpp:
- html/HTMLFrameElement.h:
- html/HTMLFrameElement.idl:
- html/HTMLFrameElementBase.cpp:
- html/HTMLFrameElementBase.h:
- html/HTMLFrameOwnerElement.cpp:
- html/HTMLFrameOwnerElement.h:
- html/HTMLFrameSetElement.cpp:
- html/HTMLFrameSetElement.h:
- html/HTMLFrameSetElement.idl:
- html/HTMLGenericFormElement.cpp:
- html/HTMLGenericFormElement.h:
- html/HTMLHRElement.cpp:
- html/HTMLHRElement.h:
- html/HTMLHRElement.idl:
- html/HTMLHeadElement.cpp:
- html/HTMLHeadElement.h:
- html/HTMLHeadElement.idl:
- html/HTMLHeadingElement.cpp:
- html/HTMLHeadingElement.h:
- html/HTMLHeadingElement.idl:
- html/HTMLHtmlElement.cpp:
- html/HTMLHtmlElement.h:
- html/HTMLHtmlElement.idl:
- html/HTMLIFrameElement.cpp:
- html/HTMLIFrameElement.h:
- html/HTMLIFrameElement.idl:
- html/HTMLImageElement.cpp:
- html/HTMLImageElement.h:
- html/HTMLImageElement.idl:
- html/HTMLImageLoader.cpp:
- html/HTMLImageLoader.h:
- html/HTMLInputElement.cpp:
- html/HTMLInputElement.h:
- html/HTMLInputElement.idl:
- html/HTMLIsIndexElement.cpp:
- html/HTMLIsIndexElement.h:
- html/HTMLIsIndexElement.idl:
- html/HTMLKeygenElement.cpp:
- html/HTMLKeygenElement.h:
- html/HTMLLIElement.cpp:
- html/HTMLLIElement.h:
- html/HTMLLIElement.idl:
- html/HTMLLabelElement.cpp:
- html/HTMLLabelElement.h:
- html/HTMLLabelElement.idl:
- html/HTMLLegendElement.cpp:
- html/HTMLLegendElement.h:
- html/HTMLLegendElement.idl:
- html/HTMLLinkElement.cpp:
- html/HTMLLinkElement.h:
- html/HTMLLinkElement.idl:
- html/HTMLMapElement.cpp:
- html/HTMLMapElement.h:
- html/HTMLMapElement.idl:
- html/HTMLMarqueeElement.cpp:
- html/HTMLMarqueeElement.h:
- html/HTMLMarqueeElement.idl:
- html/HTMLMenuElement.cpp:
- html/HTMLMenuElement.h:
- html/HTMLMenuElement.idl:
- html/HTMLMetaElement.cpp:
- html/HTMLMetaElement.h:
- html/HTMLMetaElement.idl:
- html/HTMLModElement.cpp:
- html/HTMLModElement.h:
- html/HTMLModElement.idl:
- html/HTMLNameCollection.cpp:
- html/HTMLNameCollection.h:
- html/HTMLOListElement.cpp:
- html/HTMLOListElement.h:
- html/HTMLOListElement.idl:
- html/HTMLObjectElement.cpp:
- html/HTMLObjectElement.h:
- html/HTMLObjectElement.idl:
- html/HTMLOptGroupElement.cpp:
- html/HTMLOptGroupElement.h:
- html/HTMLOptGroupElement.idl:
- html/HTMLOptionElement.cpp:
- html/HTMLOptionElement.h:
- html/HTMLOptionElement.idl:
- html/HTMLOptionsCollection.cpp:
- html/HTMLOptionsCollection.h:
- html/HTMLOptionsCollection.idl:
- html/HTMLParagraphElement.cpp:
- html/HTMLParagraphElement.h:
- html/HTMLParagraphElement.idl:
- html/HTMLParamElement.cpp:
- html/HTMLParamElement.h:
- html/HTMLParamElement.idl:
- html/HTMLParser.cpp:
- html/HTMLParser.h:
- html/HTMLPlugInElement.cpp:
- html/HTMLPlugInElement.h:
- html/HTMLPreElement.cpp:
- html/HTMLPreElement.h:
- html/HTMLPreElement.idl:
- html/HTMLQuoteElement.cpp:
- html/HTMLQuoteElement.h:
- html/HTMLQuoteElement.idl:
- html/HTMLScriptElement.cpp:
- html/HTMLScriptElement.h:
- html/HTMLScriptElement.idl:
- html/HTMLSelectElement.cpp:
- html/HTMLSelectElement.h:
- html/HTMLSelectElement.idl:
- html/HTMLStyleElement.cpp:
- html/HTMLStyleElement.h:
- html/HTMLStyleElement.idl:
- html/HTMLTableCaptionElement.cpp:
- html/HTMLTableCaptionElement.h:
- html/HTMLTableCaptionElement.idl:
- html/HTMLTableCellElement.cpp:
- html/HTMLTableCellElement.h:
- html/HTMLTableCellElement.idl:
- html/HTMLTableColElement.cpp:
- html/HTMLTableColElement.h:
- html/HTMLTableColElement.idl:
- html/HTMLTableElement.cpp:
- html/HTMLTableElement.h:
- html/HTMLTableElement.idl:
- html/HTMLTablePartElement.cpp:
- html/HTMLTablePartElement.h:
- html/HTMLTableRowElement.cpp:
- html/HTMLTableRowElement.h:
- html/HTMLTableRowElement.idl:
- html/HTMLTableSectionElement.cpp:
- html/HTMLTableSectionElement.h:
- html/HTMLTableSectionElement.idl:
- html/HTMLTextAreaElement.cpp:
- html/HTMLTextAreaElement.h:
- html/HTMLTextAreaElement.idl:
- html/HTMLTitleElement.cpp:
- html/HTMLTitleElement.h:
- html/HTMLTitleElement.idl:
- html/HTMLTokenizer.cpp:
- html/HTMLTokenizer.h:
- html/HTMLUListElement.cpp:
- html/HTMLUListElement.h:
- html/HTMLUListElement.idl:
- ksvg2/css/SVGCSSParser.cpp:
- ksvg2/css/SVGCSSStyleSelector.cpp:
- ksvg2/css/SVGRenderStyle.cpp:
- ksvg2/css/SVGRenderStyle.h:
- ksvg2/css/SVGRenderStyleDefs.cpp:
- ksvg2/css/SVGRenderStyleDefs.h:
- ksvg2/events/JSSVGLazyEventListener.cpp:
- ksvg2/events/JSSVGLazyEventListener.h:
- ksvg2/events/SVGZoomEvent.cpp:
- ksvg2/events/SVGZoomEvent.h:
- ksvg2/misc/KCanvasRenderingStyle.cpp:
- ksvg2/misc/KCanvasRenderingStyle.h:
- ksvg2/misc/PointerEventsHitRules.cpp:
- ksvg2/misc/PointerEventsHitRules.h:
- ksvg2/misc/SVGDocumentExtensions.cpp:
- ksvg2/misc/SVGDocumentExtensions.h:
- ksvg2/misc/SVGImageLoader.cpp:
- ksvg2/misc/SVGImageLoader.h:
- ksvg2/misc/SVGTimer.cpp:
- ksvg2/misc/SVGTimer.h:
- ksvg2/misc/TimeScheduler.cpp:
- ksvg2/misc/TimeScheduler.h:
- ksvg2/scripts/cssmakeprops:
- ksvg2/scripts/cssmakevalues:
- ksvg2/svg/ColorDistance.cpp:
- ksvg2/svg/ColorDistance.h:
- ksvg2/svg/GradientAttributes.h:
- ksvg2/svg/LinearGradientAttributes.h:
- ksvg2/svg/PatternAttributes.h:
- ksvg2/svg/RadialGradientAttributes.h:
- ksvg2/svg/SVGAElement.cpp:
- ksvg2/svg/SVGAElement.h:
- ksvg2/svg/SVGAngle.cpp:
- ksvg2/svg/SVGAngle.h:
- ksvg2/svg/SVGAngle.idl:
- ksvg2/svg/SVGAnimateColorElement.cpp:
- ksvg2/svg/SVGAnimateColorElement.h:
- ksvg2/svg/SVGAnimateElement.cpp:
- ksvg2/svg/SVGAnimateElement.h:
- ksvg2/svg/SVGAnimateMotionElement.cpp:
- ksvg2/svg/SVGAnimateMotionElement.h:
- ksvg2/svg/SVGAnimateTransformElement.cpp:
- ksvg2/svg/SVGAnimateTransformElement.h:
- ksvg2/svg/SVGAnimatedPathData.cpp:
- ksvg2/svg/SVGAnimatedPathData.h:
- ksvg2/svg/SVGAnimatedPoints.cpp:
- ksvg2/svg/SVGAnimatedPoints.h:
- ksvg2/svg/SVGAnimatedTemplate.h:
- ksvg2/svg/SVGAnimationElement.cpp:
- ksvg2/svg/SVGAnimationElement.h:
- ksvg2/svg/SVGCircleElement.cpp:
- ksvg2/svg/SVGCircleElement.h:
- ksvg2/svg/SVGClipPathElement.cpp:
- ksvg2/svg/SVGClipPathElement.h:
- ksvg2/svg/SVGColor.cpp:
- ksvg2/svg/SVGColor.h:
- ksvg2/svg/SVGColor.idl:
- ksvg2/svg/SVGComponentTransferFunctionElement.cpp:
- ksvg2/svg/SVGComponentTransferFunctionElement.h:
- ksvg2/svg/SVGCursorElement.cpp:
- ksvg2/svg/SVGCursorElement.h:
- ksvg2/svg/SVGDefsElement.cpp:
- ksvg2/svg/SVGDefsElement.h:
- ksvg2/svg/SVGDescElement.cpp:
- ksvg2/svg/SVGDescElement.h:
- ksvg2/svg/SVGDocument.cpp:
- ksvg2/svg/SVGDocument.h:
- ksvg2/svg/SVGDocument.idl:
- ksvg2/svg/SVGElement.cpp:
- ksvg2/svg/SVGElement.h:
- ksvg2/svg/SVGElement.idl:
- ksvg2/svg/SVGElementInstance.cpp:
- ksvg2/svg/SVGElementInstance.h:
- ksvg2/svg/SVGElementInstanceList.cpp:
- ksvg2/svg/SVGElementInstanceList.h:
- ksvg2/svg/SVGEllipseElement.cpp:
- ksvg2/svg/SVGEllipseElement.h:
- ksvg2/svg/SVGException.h:
- ksvg2/svg/SVGExternalResourcesRequired.cpp:
- ksvg2/svg/SVGExternalResourcesRequired.h:
- ksvg2/svg/SVGFEBlendElement.cpp:
- ksvg2/svg/SVGFEBlendElement.h:
- ksvg2/svg/SVGFEColorMatrixElement.cpp:
- ksvg2/svg/SVGFEColorMatrixElement.h:
- ksvg2/svg/SVGFEComponentTransferElement.cpp:
- ksvg2/svg/SVGFEComponentTransferElement.h:
- ksvg2/svg/SVGFECompositeElement.cpp:
- ksvg2/svg/SVGFECompositeElement.h:
- ksvg2/svg/SVGFEDiffuseLightingElement.cpp:
- ksvg2/svg/SVGFEDiffuseLightingElement.h:
- ksvg2/svg/SVGFEDisplacementMapElement.cpp:
- ksvg2/svg/SVGFEDisplacementMapElement.h:
- ksvg2/svg/SVGFEDistantLightElement.cpp:
- ksvg2/svg/SVGFEDistantLightElement.h:
- ksvg2/svg/SVGFEFloodElement.cpp:
- ksvg2/svg/SVGFEFloodElement.h:
- ksvg2/svg/SVGFEFuncAElement.cpp:
- ksvg2/svg/SVGFEFuncAElement.h:
- ksvg2/svg/SVGFEFuncBElement.cpp:
- ksvg2/svg/SVGFEFuncBElement.h:
- ksvg2/svg/SVGFEFuncGElement.cpp:
- ksvg2/svg/SVGFEFuncGElement.h:
- ksvg2/svg/SVGFEFuncRElement.cpp:
- ksvg2/svg/SVGFEFuncRElement.h:
- ksvg2/svg/SVGFEGaussianBlurElement.cpp:
- ksvg2/svg/SVGFEGaussianBlurElement.h:
- ksvg2/svg/SVGFEImageElement.cpp:
- ksvg2/svg/SVGFEImageElement.h:
- ksvg2/svg/SVGFELightElement.cpp:
- ksvg2/svg/SVGFELightElement.h:
- ksvg2/svg/SVGFEMergeElement.cpp:
- ksvg2/svg/SVGFEMergeElement.h:
- ksvg2/svg/SVGFEMergeNodeElement.cpp:
- ksvg2/svg/SVGFEMergeNodeElement.h:
- ksvg2/svg/SVGFEOffsetElement.cpp:
- ksvg2/svg/SVGFEOffsetElement.h:
- ksvg2/svg/SVGFEPointLightElement.cpp:
- ksvg2/svg/SVGFEPointLightElement.h:
- ksvg2/svg/SVGFESpecularLightingElement.cpp:
- ksvg2/svg/SVGFESpecularLightingElement.h:
- ksvg2/svg/SVGFESpotLightElement.cpp:
- ksvg2/svg/SVGFESpotLightElement.h:
- ksvg2/svg/SVGFETileElement.cpp:
- ksvg2/svg/SVGFETileElement.h:
- ksvg2/svg/SVGFETurbulenceElement.cpp:
- ksvg2/svg/SVGFETurbulenceElement.h:
- ksvg2/svg/SVGFilterElement.cpp:
- ksvg2/svg/SVGFilterElement.h:
- ksvg2/svg/SVGFilterPrimitiveStandardAttributes.cpp:
- ksvg2/svg/SVGFilterPrimitiveStandardAttributes.h:
- ksvg2/svg/SVGFitToViewBox.cpp:
- ksvg2/svg/SVGFitToViewBox.h:
- ksvg2/svg/SVGForeignObjectElement.cpp:
- ksvg2/svg/SVGForeignObjectElement.h:
- ksvg2/svg/SVGGElement.cpp:
- ksvg2/svg/SVGGElement.h:
- ksvg2/svg/SVGGradientElement.cpp:
- ksvg2/svg/SVGGradientElement.h:
- ksvg2/svg/SVGImageElement.cpp:
- ksvg2/svg/SVGImageElement.h:
- ksvg2/svg/SVGLangSpace.cpp:
- ksvg2/svg/SVGLangSpace.h:
- ksvg2/svg/SVGLength.cpp:
- ksvg2/svg/SVGLength.h:
- ksvg2/svg/SVGLength.idl:
- ksvg2/svg/SVGLengthList.cpp:
- ksvg2/svg/SVGLengthList.h:
- ksvg2/svg/SVGLineElement.cpp:
- ksvg2/svg/SVGLineElement.h:
- ksvg2/svg/SVGLinearGradientElement.cpp:
- ksvg2/svg/SVGLinearGradientElement.h:
- ksvg2/svg/SVGList.h:
- ksvg2/svg/SVGListTraits.h:
- ksvg2/svg/SVGLocatable.cpp:
- ksvg2/svg/SVGLocatable.h:
- ksvg2/svg/SVGMPathElement.cpp:
- ksvg2/svg/SVGMPathElement.h:
- ksvg2/svg/SVGMarkerElement.cpp:
- ksvg2/svg/SVGMarkerElement.h:
- ksvg2/svg/SVGMaskElement.cpp:
- ksvg2/svg/SVGMaskElement.h:
- ksvg2/svg/SVGMatrix.idl:
- ksvg2/svg/SVGMetadataElement.cpp:
- ksvg2/svg/SVGMetadataElement.h:
- ksvg2/svg/SVGMetadataElement.idl:
- ksvg2/svg/SVGNumber.idl:
- ksvg2/svg/SVGNumberList.cpp:
- ksvg2/svg/SVGNumberList.h:
- ksvg2/svg/SVGPaint.cpp:
- ksvg2/svg/SVGPaint.h:
- ksvg2/svg/SVGParserUtilities.cpp:
- ksvg2/svg/SVGParserUtilities.h:
- ksvg2/svg/SVGPathElement.cpp:
- ksvg2/svg/SVGPathElement.h:
- ksvg2/svg/SVGPathSeg.h:
- ksvg2/svg/SVGPathSegArc.cpp:
- ksvg2/svg/SVGPathSegArc.h:
- ksvg2/svg/SVGPathSegClosePath.cpp:
- ksvg2/svg/SVGPathSegClosePath.h:
- ksvg2/svg/SVGPathSegCurvetoCubic.cpp:
- ksvg2/svg/SVGPathSegCurvetoCubic.h:
- ksvg2/svg/SVGPathSegCurvetoCubicSmooth.cpp:
- ksvg2/svg/SVGPathSegCurvetoCubicSmooth.h:
- ksvg2/svg/SVGPathSegCurvetoQuadratic.cpp:
- ksvg2/svg/SVGPathSegCurvetoQuadratic.h:
- ksvg2/svg/SVGPathSegCurvetoQuadraticSmooth.cpp:
- ksvg2/svg/SVGPathSegCurvetoQuadraticSmooth.h:
- ksvg2/svg/SVGPathSegLineto.cpp:
- ksvg2/svg/SVGPathSegLineto.h:
- ksvg2/svg/SVGPathSegLinetoHorizontal.cpp:
- ksvg2/svg/SVGPathSegLinetoHorizontal.h:
- ksvg2/svg/SVGPathSegLinetoVertical.cpp:
- ksvg2/svg/SVGPathSegLinetoVertical.h:
- ksvg2/svg/SVGPathSegList.cpp:
- ksvg2/svg/SVGPathSegList.h:
- ksvg2/svg/SVGPathSegMoveto.cpp:
- ksvg2/svg/SVGPathSegMoveto.h:
- ksvg2/svg/SVGPatternElement.cpp:
- ksvg2/svg/SVGPatternElement.h:
- ksvg2/svg/SVGPoint.idl:
- ksvg2/svg/SVGPointList.cpp:
- ksvg2/svg/SVGPointList.h:
- ksvg2/svg/SVGPolyElement.cpp:
- ksvg2/svg/SVGPolyElement.h:
- ksvg2/svg/SVGPolygonElement.cpp:
- ksvg2/svg/SVGPolygonElement.h:
- ksvg2/svg/SVGPolylineElement.cpp:
- ksvg2/svg/SVGPolylineElement.h:
- ksvg2/svg/SVGPreserveAspectRatio.cpp:
- ksvg2/svg/SVGPreserveAspectRatio.h:
- ksvg2/svg/SVGRadialGradientElement.cpp:
- ksvg2/svg/SVGRadialGradientElement.h:
- ksvg2/svg/SVGRect.idl:
- ksvg2/svg/SVGRectElement.cpp:
- ksvg2/svg/SVGRectElement.h:
- ksvg2/svg/SVGRenderingIntent.h:
- ksvg2/svg/SVGSVGElement.cpp:
- ksvg2/svg/SVGSVGElement.h:
- ksvg2/svg/SVGSVGElement.idl:
- ksvg2/svg/SVGScriptElement.cpp:
- ksvg2/svg/SVGScriptElement.h:
- ksvg2/svg/SVGSetElement.cpp:
- ksvg2/svg/SVGSetElement.h:
- ksvg2/svg/SVGStopElement.cpp:
- ksvg2/svg/SVGStopElement.h:
- ksvg2/svg/SVGStringList.cpp:
- ksvg2/svg/SVGStringList.h:
- ksvg2/svg/SVGStylable.cpp:
- ksvg2/svg/SVGStylable.h:
- ksvg2/svg/SVGStyleElement.cpp:
- ksvg2/svg/SVGStyleElement.h:
- ksvg2/svg/SVGStyledElement.cpp:
- ksvg2/svg/SVGStyledElement.h:
- ksvg2/svg/SVGStyledLocatableElement.cpp:
- ksvg2/svg/SVGStyledLocatableElement.h:
- ksvg2/svg/SVGStyledTransformableElement.cpp:
- ksvg2/svg/SVGStyledTransformableElement.h:
- ksvg2/svg/SVGSwitchElement.cpp:
- ksvg2/svg/SVGSwitchElement.h:
- ksvg2/svg/SVGSymbolElement.cpp:
- ksvg2/svg/SVGSymbolElement.h:
- ksvg2/svg/SVGTRefElement.cpp:
- ksvg2/svg/SVGTRefElement.h:
- ksvg2/svg/SVGTSpanElement.cpp:
- ksvg2/svg/SVGTSpanElement.h:
- ksvg2/svg/SVGTests.cpp:
- ksvg2/svg/SVGTests.h:
- ksvg2/svg/SVGTextContentElement.cpp:
- ksvg2/svg/SVGTextContentElement.h:
- ksvg2/svg/SVGTextElement.cpp:
- ksvg2/svg/SVGTextElement.h:
- ksvg2/svg/SVGTextPositioningElement.cpp:
- ksvg2/svg/SVGTextPositioningElement.h:
- ksvg2/svg/SVGTitleElement.cpp:
- ksvg2/svg/SVGTitleElement.h:
- ksvg2/svg/SVGTransform.cpp:
- ksvg2/svg/SVGTransform.h:
- ksvg2/svg/SVGTransform.idl:
- ksvg2/svg/SVGTransformDistance.cpp:
- ksvg2/svg/SVGTransformDistance.h:
- ksvg2/svg/SVGTransformList.cpp:
- ksvg2/svg/SVGTransformList.h:
- ksvg2/svg/SVGTransformable.cpp:
- ksvg2/svg/SVGTransformable.h:
- ksvg2/svg/SVGURIReference.cpp:
- ksvg2/svg/SVGURIReference.h:
- ksvg2/svg/SVGUnitTypes.h:
- ksvg2/svg/SVGUseElement.cpp:
- ksvg2/svg/SVGUseElement.h:
- ksvg2/svg/SVGViewElement.cpp:
- ksvg2/svg/SVGViewElement.h:
- ksvg2/svg/SVGZoomAndPan.cpp:
- ksvg2/svg/SVGZoomAndPan.h:
- loader/Cache.cpp:
- loader/Cache.h:
- loader/CachedCSSStyleSheet.cpp:
- loader/CachedCSSStyleSheet.h:
- loader/CachedImage.cpp:
- loader/CachedImage.h:
- loader/CachedResource.cpp:
- loader/CachedResource.h:
- loader/CachedResourceClient.h:
- loader/CachedResourceClientWalker.cpp:
- loader/CachedResourceClientWalker.h:
- loader/CachedScript.cpp:
- loader/CachedScript.h:
- loader/CachedXBLDocument.cpp:
- loader/CachedXBLDocument.h:
- loader/CachedXSLStyleSheet.cpp:
- loader/CachedXSLStyleSheet.h:
- loader/DocLoader.cpp:
- loader/DocLoader.h:
- loader/FTPDirectoryParser.cpp:
- loader/FTPDirectoryParser.h:
- loader/Request.cpp:
- loader/Request.h:
- loader/TextResourceDecoder.cpp:
- loader/TextResourceDecoder.h:
- loader/loader.cpp:
- loader/loader.h:
- page/Chrome.cpp:
- page/Chrome.h:
- page/ChromeClient.h:
- page/Frame.cpp:
- page/Frame.h:
- page/FramePrivate.h:
- page/FrameTree.cpp:
- page/FrameTree.h:
- page/FrameView.cpp:
- page/FrameView.h:
- page/MouseEventWithHitTestResults.cpp:
- page/MouseEventWithHitTestResults.h:
- page/Page.cpp:
- page/Page.h:
- page/Plugin.h:
- page/mac/ChromeMac.mm:
- platform/Arena.cpp:
- platform/Arena.h:
- platform/AtomicString.cpp:
- platform/AtomicString.h:
- platform/AtomicStringImpl.h:
- platform/BidiContext.cpp:
- platform/BidiContext.h:
- platform/BidiResolver.h:
- platform/Font.cpp:
- platform/Font.h:
- platform/FontData.h:
- platform/FontDescription.h:
- platform/FontFallbackList.h:
- platform/PlatformString.h:
- platform/PopupMenu.h:
- platform/PopupMenuClient.h:
- platform/SearchPopupMenu.h:
- platform/SegmentedString.cpp:
- platform/SegmentedString.h:
- platform/Shared.h:
- platform/StaticConstructors.h:
- platform/String.cpp:
- platform/StringHash.h:
- platform/StringImpl.cpp:
- platform/StringImpl.h:
- platform/TextBreakIterator.h:
- platform/TextBreakIteratorICU.cpp:
- platform/TextBreakIteratorInternalICU.h:
- platform/TextStyle.h:
- platform/UnicodeRange.cpp:
- platform/UnicodeRange.h:
- platform/cf/StringCF.cpp:
- platform/cf/StringImplCF.cpp:
- platform/graphics/FloatPoint3D.cpp:
- platform/graphics/FloatPoint3D.h:
- platform/graphics/Icon.h:
- platform/graphics/IntSizeHash.h:
- platform/graphics/PathTraversalState.cpp:
- platform/graphics/cairo/CairoPath.h:
- platform/graphics/cairo/PathCairo.cpp:
- platform/graphics/mac/IconMac.mm:
- platform/graphics/qt/IconQt.cpp:
- platform/graphics/svg/SVGResourceFilter.cpp:
- platform/graphics/svg/SVGResourceFilter.h:
- platform/graphics/svg/cg/SVGPaintServerCg.cpp:
- platform/graphics/svg/cg/SVGPaintServerGradientCg.cpp:
- platform/graphics/svg/cg/SVGPaintServerPatternCg.cpp:
- platform/graphics/svg/cg/SVGPaintServerSolidCg.cpp:
- platform/graphics/svg/filters/SVGDistantLightSource.h:
- platform/graphics/svg/filters/SVGFEBlend.cpp:
- platform/graphics/svg/filters/SVGFEBlend.h:
- platform/graphics/svg/filters/SVGFEColorMatrix.cpp:
- platform/graphics/svg/filters/SVGFEColorMatrix.h:
- platform/graphics/svg/filters/SVGFEComponentTransfer.cpp:
- platform/graphics/svg/filters/SVGFEComponentTransfer.h:
- platform/graphics/svg/filters/SVGFEComposite.cpp:
- platform/graphics/svg/filters/SVGFEComposite.h:
- platform/graphics/svg/filters/SVGFEConvolveMatrix.cpp:
- platform/graphics/svg/filters/SVGFEConvolveMatrix.h:
- platform/graphics/svg/filters/SVGFEDiffuseLighting.cpp:
- platform/graphics/svg/filters/SVGFEDiffuseLighting.h:
- platform/graphics/svg/filters/SVGFEDisplacementMap.cpp:
- platform/graphics/svg/filters/SVGFEDisplacementMap.h:
- platform/graphics/svg/filters/SVGFEFlood.cpp:
- platform/graphics/svg/filters/SVGFEFlood.h:
- platform/graphics/svg/filters/SVGFEGaussianBlur.cpp:
- platform/graphics/svg/filters/SVGFEGaussianBlur.h:
- platform/graphics/svg/filters/SVGFEImage.cpp:
- platform/graphics/svg/filters/SVGFEImage.h:
- platform/graphics/svg/filters/SVGFEMerge.cpp:
- platform/graphics/svg/filters/SVGFEMerge.h:
- platform/graphics/svg/filters/SVGFEMorphology.cpp:
- platform/graphics/svg/filters/SVGFEMorphology.h:
- platform/graphics/svg/filters/SVGFEOffset.cpp:
- platform/graphics/svg/filters/SVGFEOffset.h:
- platform/graphics/svg/filters/SVGFESpecularLighting.cpp:
- platform/graphics/svg/filters/SVGFESpecularLighting.h:
- platform/graphics/svg/filters/SVGFETile.h:
- platform/graphics/svg/filters/SVGFETurbulence.cpp:
- platform/graphics/svg/filters/SVGFETurbulence.h:
- platform/graphics/svg/filters/SVGFilterEffect.cpp:
- platform/graphics/svg/filters/SVGFilterEffect.h:
- platform/graphics/svg/filters/SVGLightSource.cpp:
- platform/graphics/svg/filters/SVGLightSource.h:
- platform/graphics/svg/filters/SVGPointLightSource.h:
- platform/graphics/svg/filters/SVGSpotLightSource.h:
- platform/graphics/svg/filters/cg/SVGFEBlendCg.mm:
- platform/graphics/svg/filters/cg/SVGFEColorMatrixCg.mm:
- platform/graphics/svg/filters/cg/SVGFEComponentTransferCg.mm:
- platform/graphics/svg/filters/cg/SVGFECompositeCg.mm:
- platform/graphics/svg/filters/cg/SVGFEDiffuseLightingCg.mm:
- platform/graphics/svg/filters/cg/SVGFEDisplacementMapCg.mm:
- platform/graphics/svg/filters/cg/SVGFEFloodCg.mm:
- platform/graphics/svg/filters/cg/SVGFEGaussianBlurCg.mm:
- platform/graphics/svg/filters/cg/SVGFEHelpersCg.h:
- platform/graphics/svg/filters/cg/SVGFEHelpersCg.mm:
- platform/graphics/svg/filters/cg/SVGFEImageCg.mm:
- platform/graphics/svg/filters/cg/SVGFEMergeCg.mm:
- platform/graphics/svg/filters/cg/SVGFEOffsetCg.mm:
- platform/graphics/svg/filters/cg/SVGFESpecularLightingCg.mm:
- platform/graphics/svg/filters/cg/SVGFETileCg.mm:
- platform/graphics/svg/filters/cg/SVGFilterEffectCg.mm:
- platform/graphics/svg/qt/RenderPathQt.cpp:
- platform/graphics/svg/qt/SVGPaintServerGradientQt.cpp:
- platform/graphics/svg/qt/SVGPaintServerLinearGradientQt.cpp:
- platform/graphics/svg/qt/SVGPaintServerPatternQt.cpp:
- platform/graphics/svg/qt/SVGPaintServerQt.cpp:
- platform/graphics/svg/qt/SVGPaintServerRadialGradientQt.cpp:
- platform/graphics/svg/qt/SVGPaintServerSolidQt.cpp:
- platform/graphics/svg/qt/SVGResourceClipperQt.cpp:
- platform/graphics/svg/qt/SVGResourceFilterQt.cpp:
- platform/graphics/svg/qt/SVGResourceMaskerQt.cpp:
- platform/graphics/win/IconWin.cpp:
- platform/gtk/FontPlatformData.h:
- platform/gtk/FontPlatformDataGtk.cpp:
- platform/gtk/PopupMenuGtk.cpp:
- platform/gtk/RenderThemeGtk.cpp:
- platform/gtk/RenderThemeGtk.h:
- platform/image-decoders/jpeg/JPEGImageDecoder.cpp:
- platform/image-decoders/png/PNGImageDecoder.cpp:
- platform/mac/FontMac.mm:
- platform/mac/FontPlatformData.h:
- platform/mac/LocalCurrentGraphicsContext.h:
- platform/mac/LocalCurrentGraphicsContext.mm:
- platform/mac/PopupMenuMac.mm:
- platform/mac/SearchPopupMenuMac.mm:
- platform/mac/StringImplMac.mm:
- platform/mac/StringMac.mm:
- platform/mac/TextBreakIteratorInternalICUMac.mm:
- platform/network/FormData.cpp:
- platform/network/FormData.h:
- platform/qt/FileChooserQt.cpp:
- platform/qt/FontQt.cpp:
- platform/qt/MenuEventProxy.h:
- platform/qt/PlugInInfoStoreQt.cpp:
- platform/qt/PopupMenuQt.cpp:
- platform/qt/QWebPopup.cpp:
- platform/qt/QWebPopup.h:
- platform/qt/RenderThemeQt.cpp:
- platform/qt/RenderThemeQt.h:
- platform/qt/SearchPopupMenuQt.cpp:
- platform/qt/TextBreakIteratorQt.cpp:
- platform/qt/WheelEventQt.cpp:
- platform/win/FontPlatformData.h:
- platform/win/FontPlatformDataWin.cpp:
- platform/win/PopupMenuWin.cpp:
- platform/win/SearchPopupMenuWin.cpp:
- platform/win/TextBreakIteratorInternalICUWin.cpp:
- rendering/AutoTableLayout.cpp:
- rendering/AutoTableLayout.h:
- rendering/CounterNode.cpp:
- rendering/CounterNode.h:
- rendering/DataRef.h:
- rendering/EllipsisBox.cpp:
- rendering/EllipsisBox.h:
- rendering/FixedTableLayout.cpp:
- rendering/FixedTableLayout.h:
- rendering/GapRects.h:
- rendering/HitTestRequest.h:
- rendering/HitTestResult.cpp:
- rendering/HitTestResult.h:
- rendering/InlineBox.cpp:
- rendering/InlineBox.h:
- rendering/InlineFlowBox.cpp:
- rendering/InlineFlowBox.h:
- rendering/InlineRunBox.h:
- rendering/InlineTextBox.cpp:
- rendering/InlineTextBox.h:
- rendering/Length.h:
- rendering/ListMarkerBox.cpp:
- rendering/ListMarkerBox.h:
- rendering/RenderApplet.cpp:
- rendering/RenderApplet.h:
- rendering/RenderArena.cpp:
- rendering/RenderArena.h:
- rendering/RenderBR.cpp:
- rendering/RenderBR.h:
- rendering/RenderBlock.cpp:
- rendering/RenderBlock.h:
- rendering/RenderBox.cpp:
- rendering/RenderBox.h:
- rendering/RenderButton.cpp:
- rendering/RenderButton.h:
- rendering/RenderContainer.cpp:
- rendering/RenderContainer.h:
- rendering/RenderCounter.cpp:
- rendering/RenderCounter.h:
- rendering/RenderFieldset.cpp:
- rendering/RenderFieldset.h:
- rendering/RenderFileUploadControl.cpp:
- rendering/RenderFileUploadControl.h:
- rendering/RenderFlexibleBox.cpp:
- rendering/RenderFlexibleBox.h:
- rendering/RenderFlow.cpp:
- rendering/RenderFlow.h:
- rendering/RenderForeignObject.cpp:
- rendering/RenderForeignObject.h:
- rendering/RenderFrame.cpp:
- rendering/RenderFrame.h:
- rendering/RenderFrameSet.cpp:
- rendering/RenderFrameSet.h:
- rendering/RenderImage.cpp:
- rendering/RenderImage.h:
- rendering/RenderInline.cpp:
- rendering/RenderInline.h:
- rendering/RenderLayer.cpp:
- rendering/RenderLayer.h:
- rendering/RenderLegend.cpp:
- rendering/RenderLegend.h:
- rendering/RenderListItem.cpp:
- rendering/RenderListItem.h:
- rendering/RenderListMarker.cpp:
- rendering/RenderListMarker.h:
- rendering/RenderMenuList.cpp:
- rendering/RenderMenuList.h:
- rendering/RenderObject.cpp:
- rendering/RenderObject.h:
- rendering/RenderPart.cpp:
- rendering/RenderPart.h:
- rendering/RenderPartObject.cpp:
- rendering/RenderPartObject.h:
- rendering/RenderPath.cpp:
- rendering/RenderPath.h:
- rendering/RenderReplaced.cpp:
- rendering/RenderReplaced.h:
- rendering/RenderSVGBlock.cpp:
- rendering/RenderSVGBlock.h:
- rendering/RenderSVGContainer.cpp:
- rendering/RenderSVGContainer.h:
- rendering/RenderSVGGradientStop.cpp:
- rendering/RenderSVGGradientStop.h:
- rendering/RenderSVGHiddenContainer.cpp:
- rendering/RenderSVGHiddenContainer.h:
- rendering/RenderSVGImage.cpp:
- rendering/RenderSVGImage.h:
- rendering/RenderSVGInline.cpp:
- rendering/RenderSVGInline.h:
- rendering/RenderSVGInlineText.cpp:
- rendering/RenderSVGInlineText.h:
- rendering/RenderSVGTSpan.cpp:
- rendering/RenderSVGTSpan.h:
- rendering/RenderSVGText.cpp:
- rendering/RenderSVGText.h:
- rendering/RenderSlider.cpp:
- rendering/RenderSlider.h:
- rendering/RenderStyle.cpp:
- rendering/RenderStyle.h:
- rendering/RenderTable.cpp:
- rendering/RenderTable.h:
- rendering/RenderTableCell.cpp:
- rendering/RenderTableCell.h:
- rendering/RenderTableCol.cpp:
- rendering/RenderTableCol.h:
- rendering/RenderTableRow.cpp:
- rendering/RenderTableRow.h:
- rendering/RenderTableSection.cpp:
- rendering/RenderTableSection.h:
- rendering/RenderText.cpp:
- rendering/RenderText.h:
- rendering/RenderTextControl.cpp:
- rendering/RenderTextControl.h:
- rendering/RenderTextFragment.cpp:
- rendering/RenderTextFragment.h:
- rendering/RenderTheme.cpp:
- rendering/RenderTheme.h:
- rendering/RenderThemeMac.h:
- rendering/RenderThemeMac.mm:
- rendering/RenderThemeSafari.cpp:
- rendering/RenderThemeSafari.h:
- rendering/RenderThemeWin.cpp:
- rendering/RenderThemeWin.h:
- rendering/RenderView.cpp:
- rendering/RenderView.h:
- rendering/RenderWidget.cpp:
- rendering/RenderWidget.h:
- rendering/RootInlineBox.cpp:
- rendering/RootInlineBox.h:
- rendering/SVGInlineFlowBox.cpp:
- rendering/SVGInlineFlowBox.h:
- rendering/SVGInlineTextBox.cpp:
- rendering/SVGInlineTextBox.h:
- rendering/SVGRootInlineBox.cpp:
- rendering/SVGRootInlineBox.h:
- rendering/TableLayout.h:
- rendering/bidi.cpp:
- rendering/bidi.h:
- rendering/break_lines.cpp:
- rendering/break_lines.h:
- xml/DOMParser.cpp:
- xml/DOMParser.h:
- xml/DOMParser.idl:
- xml/XMLHttpRequest.cpp:
- xml/XMLHttpRequest.h:
- xml/XMLSerializer.cpp:
- xml/XMLSerializer.h:
- xml/XMLSerializer.idl:
- xml/XPathEvaluator.idl:
- xml/XPathExpression.idl:
- xml/XPathNSResolver.idl:
- xml/XPathResult.idl:
- xml/XSLImportRule.cpp:
- xml/XSLImportRule.h:
- xml/XSLStyleSheet.cpp:
- xml/XSLStyleSheet.h:
- xml/XSLTProcessor.cpp:
- xml/XSLTProcessor.h:
WebKitQt:
Reviewed by Adam.
- Fix http://bugs.webkit.org/show_bug.cgi?id=14885 LGPL'ed files contain incorrect FSF address
- Api/qcookiejar.cpp:
- Api/qcookiejar.h:
- Api/qwebframe.cpp:
- Api/qwebframe.h:
- Api/qwebframe_p.h:
- Api/qwebhistoryinterface.cpp:
- Api/qwebhistoryinterface.h:
- Api/qwebkitglobal.h:
- Api/qwebnetworkinterface.cpp:
- Api/qwebnetworkinterface.h:
- Api/qwebnetworkinterface_p.h:
- Api/qwebobjectplugin.cpp:
- Api/qwebobjectplugin.h:
- Api/qwebobjectpluginconnector.cpp:
- Api/qwebobjectpluginconnector.h:
- Api/qwebpage.cpp:
- Api/qwebpage.h:
- Api/qwebpage_p.h:
- Api/qwebpagehistory.cpp:
- Api/qwebpagehistory.h:
- Api/qwebsettings.cpp:
- Api/qwebsettings.h:
- WebCoreSupport/EditCommandQt.cpp:
- WebCoreSupport/EditCommandQt.h:
WebKitSite:
Reviewed by Adam.
- Fix http://bugs.webkit.org/show_bug.cgi?id=14885 LGPL'ed files contain incorrect FSF address
- blog/wp-content/plugins/wp-cache/wp-cache.php:
- blog/wp-includes/class-snoopy.php:
- blog/wp-includes/gettext.php:
- blog/wp-includes/js/tinymce/license.html:
- blog/wp-includes/streams.php:
WebKitTools:
Reviewed by Adam.
- Fix http://bugs.webkit.org/show_bug.cgi?id=14885 LGPL'ed files contain incorrect FSF address
- Drosera/config.h:
LayoutTests:
Reviewed by Adam.
- Fix http://bugs.webkit.org/show_bug.cgi?id=14885 LGPL'ed files contain incorrect FSF address
- svg/carto.net/resources/button.js:
- svg/carto.net/resources/colourPicker.js:
- svg/carto.net/resources/comboBox.js:
- svg/carto.net/resources/helper_functions.js:
- svg/carto.net/resources/mapApp.js:
- svg/carto.net/resources/scrollbar.js:
- svg/carto.net/resources/selectionList.js:
- svg/carto.net/resources/slider.js:
- svg/carto.net/resources/tabgroup.js:
- svg/carto.net/resources/textbox.js:
- svg/carto.net/resources/window.js:
- 7:25 PM Changeset in webkit [25753] by
-
- 2 edits in trunk/JavaScriptCore
Fix location for build products for Debug_Internal.
Reviewed by Adam Roben.
- JavaScriptCore.vcproj/testkjs/testkjs.vcproj:
- 7:24 PM Changeset in webkit [25752] by
-
- 1 edit in trunk/WebKitTools/WebKitInitializer/WebKitInitializer.cpp
Touch this file so it will rebuild
- 7:18 PM Changeset in webkit [25751] by
-
- 3 edits in trunk/WebKitTools
WebKitTools:
Reviewed by Adam.
Make svn-apply and svn-unapply work with git-diff formatted patches.
- Scripts/svn-apply: Apply a filter to the input if we find a git-diff marker before a patch. (gitdiff2svndiff): Added.
- Scripts/svn-unapply: Ditto. (gitdiff2svndiff): Added.
- 7:14 PM Changeset in webkit [25750] by
-
- 2 edits in trunk/WebKitTools
Pull advapi32.lib into WebKitInitializer
This is needed to get the registry functions we use.
Rubberstamped by Sam.
- WebKitInitializer/WebKitInitializer.vcproj:
- 6:56 PM Changeset in webkit [25749] by
-
- 3 edits in trunk/WebKitTools
Add python and rsync to cygwin-downloader
Our build slaves need this, and it can't hurt for everyone else to
have it, too.
Reviewed by Sam.
- CygwinDownloader/cygwin-downloader.py: Added python and rsync.
- CygwinDownloader/cygwin-downloader.zip: Regenerated.
- 6:21 PM Changeset in webkit [25748] by
-
- 2 edits in branches/feature-branch/WebCore
2007-09-25 Eric Seidel <eric@webkit.org>
Reviewed by Mark Rowe.
I managed to break the SVG build when fixing the --no-svg build for
http://bugs.webkit.org/show_bug.cgi?id=15281
This adds the appropriate DOMSVG headers to the copy headers phase
(in fixing the no-svg build I mistakenly re-marked them project-only)
- WebCore.xcodeproj/project.pbxproj:
- 6:19 PM Changeset in webkit [25747] by
-
- 2 edits in trunk/WebCore
Reviewed by Harrison.
- fix <rdar://problem/5503225> CrashTracer: [USER] 2 crashes in Dashcode at com.apple.WebCore: WebCore::Frame::document const + 0
- page/FrameView.cpp: (WebCore::FrameView::updateControlTints): Added null check.
- 5:54 PM Changeset in webkit [25746] by
-
- 10 edits6 adds in trunk
Add WebKitInitializer and use it in DumpRenderTree and testkjs
Make testkjs use WebKitInitializer
Reviewed by Sam.
- JavaScriptCore.vcproj/JavaScriptCore.sln: Add WebKitInitializer and make testkjs depend on it.
- JavaScriptCore.vcproj/testkjs/testkjs.vcproj: Link against WebKitInitializer.lib.
- kjs/testkjs.cpp: (main): Call initializeWebKit.
WebKitTools:
Add WebKitInitializer and use it in DumpRenderTree
WebKitInitializer is a static library that has one function,
initializeWebKit(). This registers WebKit and sets up the DLL search
path so that WebKit's dependencies that are installed with Safari can
be found.
Reviewed by Sam.
- DumpRenderTree/DumpRenderTree.sln: Added WebKitInitializer and made DumpRenderTree depend on it.
- DumpRenderTree/win/DumpRenderTree.cpp: (initialize): Call initializeWebKit.
- DumpRenderTree/win/DumpRenderTree.vcproj: Link against WebKitInitializer.lib.
- WebKitInitializer/WebKitInitializer.cpp: Added. (getStringValue): (getWebViewCLSID): (getInstalledWebKitDirectory): (initializeWebKit):
- WebKitInitializer/WebKitInitializer.h: Added.
- WebKitInitializer/WebKitInitializer.vcproj: Added.
- WebKitInitializer/debug.vsprops: Added.
- WebKitInitializer/release.vsprops: Added.
WebKit/win:
Add WebKitInitializer to WebKit.sln
Reviewed by Sam.
- WebKit.vcproj/WebKit.sln: DumpRenderTree and testkjs now depend on WebKitInitializer.
- 5:54 PM Changeset in webkit [25745] by
-
- 4 edits in trunk
Versioning.
- 5:52 PM Changeset in webkit [25744] by
-
- 1 copy in tags/Safari-4523.9
New tag.
- 5:52 PM Changeset in webkit [25743] by
-
- 1 copy in tags/Safari-5523.9
New tag.
- 5:16 PM Changeset in webkit [25742] by
-
- 1 copy in tags/Safari-523.8b
New tag.
- 5:16 PM Changeset in webkit [25741] by
-
- 1 edit in trunk/WebKit/win/WebKit.vcproj/VERSION
Bump version for submit
- 4:11 PM Changeset in webkit [25740] by
-
- 3 edits in branches/Safari-2.0-dashboard/WebCore
Merge r24994 from ToT to Safari-2.0-dashboard.
2007-08-09 Sam Weinig <sam@webkit.org>
Reviewed by Maciej.
Fix for <rdar://problem/5395618>
Use checkNodeSecurity when setting the 'src' or 'location' attribute of an
iframe or frame element.
- WebCore.xcodeproj/project.pbxproj:
- bindings/js/JSAttrCustom.cpp: Added. (WebCore::JSAttr::setValue): Call checkNodeSecurity for attributes with a current iframe or frame ownerElement when setting src to a javascript: URL.
- bindings/js/JSElementCustom.cpp: Added. (WebCore::allowSettingSrcToJavascriptURL): (WebCore::JSElement::setAttribute): Call checkNodeSecurity when element is a frame or iframe and setting he src attribute to a javascript: URL. (WebCore::JSElement::setAttributeNode): Ditto. (WebCore::JSElement::setAttributeNS): Ditto. (WebCore::JSElement::setAttributeNodeNS): Ditto.
- bindings/js/JSHTMLFrameElementCustom.cpp: Added. (WebCore::allowSettingJavascriptURL): (WebCore::JSHTMLFrameElement::setSrc): Call checkNodeSecurity when setting to a javascript: URL. (WebCore::JSHTMLFrameElement::setLocation): Ditto.
- bindings/js/JSHTMLIFrameElementCustom.cpp: Added. (WebCore::JSHTMLIFrameElement::setSrc): Call checkNodeSecurity when setting to a javascript: URL.
- bindings/scripts/CodeGeneratorJS.pm: Add support for [CustomGetter] and [CustomSetter]
- dom/Attr.idl:
- dom/Element.idl:
- html/HTMLFrameElement.idl:
- html/HTMLIFrameElement.idl:
- 3:53 PM Changeset in webkit [25739] by
-
- 3 edits in trunk/WebCore
Reviewed by Darin.
Fixes http://bugs.webkit.org/show_bug.cgi?id=15282 r25726 caused
plugins/mouse-events.html to fail
- page/FrameView.cpp: (WebCore::FrameView::layout): We need to call updateWidgetPosition() after updating each widget.
- 3:45 PM Changeset in webkit [25738] by
-
- 2 edits in trunk/WebCore
Build fix.
- page/Chrome.cpp: (WebCore::PageGroupLoadDeferrer::PageGroupLoadDeferrer):
- 3:45 PM Changeset in webkit [25737] by
-
- 1 edit in trunk/JavaScriptCore/pcre/MERGING
One more edit.
- 3:44 PM Changeset in webkit [25736] by
-
- 1 edit in trunk/JavaScriptCore/pcre/MERGING
Some quick edits.
- 3:38 PM Changeset in webkit [25735] by
-
- 2 edits in trunk/WebCore
Reviewed by Geoff.
<rdar://problem/5283916>
JavaScript timers may be firing while JavaScript alerts are displayed.
Pause JavaScript timeouts while calling UI delegate methods that might show dialogs.
- page/Chrome.cpp: (WebCore::PageGroupLoadDeferrer::PageGroupLoadDeferrer): (WebCore::PageGroupLoadDeferrer::~PageGroupLoadDeferrer):
- 3:35 PM Changeset in webkit [25734] by
-
- 1 add in trunk/JavaScriptCore/pcre/MERGING
Added a file with some helpful information for someone who wants to merge
with a newer version of PCRE.
- 3:18 PM Changeset in webkit [25733] by
-
- 9 edits2 moves1 add in branches/feature-branch
2007-09-25 Eric Seidel <eric@webkit.org>
Reviewed by Oliver Hunt.
http://bugs.webkit.org/show_bug.cgi?id=15281
This only affects Debug builds, and the ability to save SVGs as WebArchives
neither are testable via DumpRenderTree.
- Configurations/WebCore.xcconfig: change where Xcode looks for WebCore.exp
- DerivedSources.make: adds SVG symbols to WebCore.exp when necessary
- WebCore.SVG.exp: Added.
- WebCore.exp: moved to WebCore.base.exp
- WebCore.xcodeproj/project.pbxproj: updated to reflect moved files
- bindings/objc/DOMSVGExecption.h: moved to DOMSVGException.h
- 2:09 PM Changeset in webkit [25732] by
-
- 2 edits in branches/feature-branch/WebKitTools
2007-09-25 Eric Seidel <eric@webkit.org>
Reviewed by Mark Rowe.
DerivedSources.make was finding "ENABLE_SVG" in the string
"ENABLE_SVG_EXPERIMENTAL_FEATURES" thus --no-svg wasn't functioning
quite correctly.
- Scripts/build-webkit: make --no-svg imply --no-svg-experimental
- 1:22 PM Changeset in webkit [25731] by
-
- 2 edits in trunk/WebKitTools
Make run-webkit-tests respect set-webkit-configuration
Reviewed by Sam.
- Scripts/run-webkit-tests: Initialize $configuration to whatever set-webkit-configuration was last set to.
- 1:08 PM Changeset in webkit [25730] by
-
- 1 edit in branches/feature-branch/WebCore/ChangeLog
Correct the spelling of Rob's name
- 1:06 PM Changeset in webkit [25729] by
-
- 2 edits in branches/feature-branch/WebCore
2007-09-25 Eric Seidel <eric@webkit.org>
Reviewed by Rob Bius.
Already tested by SVG/W3C-SVG-1.1/linking-a-07-t.svg
- ksvg2/svg/SVGAElement.cpp: (WebCore::SVGAElement::defaultEventHandler): properly pass along target values
- 11:54 AM Changeset in webkit [25728] by
-
- 2 edits in branches/feature-branch/WebKitTools
2007-09-25 Mark Rowe <mrowe@apple.com>
Rubber-stamped by Eric.
- BuildSlaveSupport/build-launcher-dmg: Allow the platform tag to be specified on the command line. This makes it possible to automate nightly builds for the feature-branch.
- 11:53 AM Changeset in webkit [25727] by
-
- 2 edits in trunk/WebKitTools
2007-09-25 Mark Rowe <mrowe@apple.com>
Rubber-stamped by Eric.
- BuildSlaveSupport/build-launcher-dmg: Allow the platform tag to be specified on the command line. This makes it possible to automate nightly builds for the feature-branch.
- 11:35 AM Changeset in webkit [25726] by
-
- 5 edits in trunk/WebCore
Reviewed by Darin.
Fix for <rdar://problem/5466459> CrashTracer: [USER] 1 crash in
NetNewsWire at com.apple.WebCore: WebCore::bidiNext + 485 (15241)
Mitz discovered that this crash appeared because r25128 made it
possible for RenderPartObject::updateWidget() to be called during
layout. updateWidget() can, through a series of calls, cause an
attach/detach to happen, which is very bad in the middle of a
layout and is what led to this crash. This patch fixes that by
having the FrameView keep track of a queue of RenderPartObjects
that need to call updateWidget(), and it goes through the queue
calling updateWidget() as soon as layout is done.
- page/FrameView.cpp: We only want to call updateWidget() if we are not in a nested layout. Unfortunately, the existing variables on FrameViewPrivate do not have exactly the information that we need, so I added nestedLayoutCount. (WebCore::FrameViewPrivate::reset): Reset nestedLayoutCount. (WebCore::FrameView::layout): Increment nestedLayoutCount once we have gotten through all of the early returns. Call updateWidget() after layout is nestedLayoutCount is 1 and there are widgets to update. Decrement nestedLayoutCount at the end. (WebCore::FrameView::addWidgetToUpdate): (WebCore::FrameView::removeWidgetToUpdate):
- page/FrameView.h:
- rendering/RenderPartObject.cpp: (WebCore::RenderPartObject::~RenderPartObject): Remove this from the FrameView's update set. (WebCore::RenderPartObject::layout): Instead of calling updateWidget() immediately, add this to the update widget set on FrameView.
- rendering/RenderPartObject.h:
- 11:10 AM Changeset in webkit [25725] by
-
- 3 edits in trunk/WebKitTools
A couple of fixes/enhancements to update-webkit-*-libs
You can now specify WEBKITSUPPORTLIBRARIESZIPDIR=C:\my\special\place
to tell update-webkit-support-libraries where it should find the
WebKitSupportLibrary.zip file you downloaded.
These scripts also now correctly interpret WEBKITLIBRARIESDIR as a
Windows-style path.
Reviewed by Sam.
- Scripts/update-webkit-auxiliary-libs: Also renamed $supportLibsURL to $auxiliaryLibsURL and removed an irrelevant comment.
- Scripts/update-webkit-support-libs:
- 11:08 AM Changeset in webkit [25724] by
-
- 2 edits in trunk/WebCore
WebCore:
Reviewed by Mark Rowe.
- fix http://bugs.webkit.org/show_bug.cgi?id=15275 SVG dependency on WebCore/dom/XMLTokenizer.cpp
- dom/XMLTokenizer.cpp: Moved #include "SVGStyleElement.h" into #if ENABLE(SVG).
- 2:28 AM Changeset in webkit [25723] by
-
- 1 edit in trunk/WebKitQt/ChangeLog
Fix ChangeLog typo.
- 2:27 AM Changeset in webkit [25722] by
-
- 10 edits in trunk
Comitted Adam's patch to improve DumpRenderTree for the Qt build.
- 1:57 AM Changeset in webkit [25721] by
-
- 8 edits4 adds in trunk
WebCore:
Reviewed by Darin.
<rdar://problem/5483567>
REGRESSION (Tiger only, workaround in AppKit on Leopard): Pasting words copied from TextEdit in Mail adds extra newline
- editing/ReplaceSelectionCommand.cpp: (WebCore::ReplaceSelectionCommand::removeUnrenderedNodes): Added. (WebCore::ReplaceSelectionCommand::doApply): Call removeUnrenderedNodes to prevent unrendered spaces from interfering with paragraph merging.
- editing/ReplaceSelectionCommand.h:
LayoutTests:
Reviewed by Darin.
<rdar://problem/5483567>
REGRESSION (Tiger only, workaround in AppKit on Leopard): Pasting words copied from TextEdit in Mail adds extra newline
Demonstrate fix:
- editing/pasteboard/5483567.html: Added.
- platform/mac/editing/pasteboard/5483567-expected.checksum: Added.
- platform/mac/editing/pasteboard/5483567-expected.png: Added.
- platform/mac/editing/pasteboard/5483567-expected.txt: Added.
Unrendered nodes removed:
- editing/pasteboard/nested-blocks-with-text-area-expected.txt:
- editing/pasteboard/nested-blocks-with-text-field-expected.txt:
- editing/pasteboard/paste-RTFD-expected.txt: