- 30 Jul, 2009 35 commits
-
-
treat@webkit.org authored
Reviewed by George Staikos. Add new test with platform specific results to the Skipped files of ports that haven't generated them yet. This is to make the buildbot green again. * platform/gtk/Skipped: * platform/mac/Skipped: * platform/win/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46605 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
cfleizach@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=27854 git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46604 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
simon.fraser@apple.com authored
Reviewed by Dan Bernstein. Animation with a timing function property in a keyframe eats CPU https://bugs.webkit.org/show_bug.cgi?id=27856 <rdar://problem/7104476> Animation demo uses lots of CPU Don't include animation-timing-function in the list of properties to animate in a keyframe animation, because this property is not animated; instead, it describes the timing function to apply to this keyframe. This prevents the animation code from thinking that there's a property that it has to software-animate, and thus firing the animation timer frequently. Not testable because there is no visible impact. * css/CSSStyleSelector.cpp: (WebCore::CSSStyleSelector::keyframeStylesForAnimation): Don't add CSSPropertyWebkitAnimationTimingFunction to the list of properties to animate. * page/animation/KeyframeAnimation.cpp (WebCore::KeyframeAnimation::getKeyframeAnimationInterval): Add a comment git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46603 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
mrowe@apple.com authored
* BuildSlaveSupport/build.webkit.org-config/config.json: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46602 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ggaren@apple.com authored
Windows build fix: added missing symbols on Windows. * JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def: * JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore_debug.def: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46601 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
treat@webkit.org authored
2009-07-30 Mike Fenton <mike.fenton@torchmobile.com> Reviewed by Adam Treat. Apply colour style to buttons that use Theme settings in Qt. https://bugs.webkit.org/show_bug.cgi?id=27814 * platform/qt/RenderThemeQt.cpp: (WebCore::RenderThemeQt::adjustButtonStyle): LayoutTests: 2009-07-30 Mike Fenton <mike.fenton@torchmobile.com> Reviewed by Adam Treat. Add Button Colour style test and results for Qt based upon fix for bug. Unskip tables/mozilla/bugs/bug92647-2.html which passes with bug fix. Update expected results for qt for test fast/dom/HTMLTableColElement/resize-table-using-col-width-expected which also passes with the the bug fix. https://bugs.webkit.org/show_bug.cgi?id=27814 * fast/forms/button-style-color.html: Added. * platform/qt/Skipped: * platform/qt/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.txt: * platform/qt/fast/forms/button-style-color-expected.txt: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46600 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ggaren@apple.com authored
Windows build fix: removed stale symbols on Windows. * JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def: * JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore_debug.def: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46599 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ggaren@apple.com authored
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46598 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
treat@webkit.org authored
Reviewed by Adam Roben. Add --minimal option to webkit-build. https://bugs.webkit.org/show_bug.cgi?id=27852 This option disables all optional build features unless they are explicitly enabled. * Scripts/build-webkit: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46597 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dglazkov@chromium.org authored
Reviewed by Dimitri Glazkov. Don't try to hash member function pointers, instead use a precomputed value based on the field. https://bugs.webkit.org/show_bug.cgi?id=27843 * bindings/scripts/CodeGeneratorV8.pm: * bindings/v8/V8SVGPODTypeWrapper.h: (WebCore::PODTypeWrapperCacheInfo::PODTypeWrapperCacheInfo): (WebCore::PODTypeWrapperCacheInfo::operator==): (WebCore::PODTypeWrapperCacheInfoHash::hash): (WebCore::V8SVGDynamicPODTypeWrapperCache::lookupOrCreateWrapper): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46596 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
xan@webkit.org authored
Reviewed by Simon Fraser. Fix compiler warning. * dom/SelectElement.cpp: (WebCore::SelectElement::menuListDefaultEventHandler): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46595 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
mpcomplete@chromium.org authored
Reviewed by Adam Barth. Add a way to register V8 extensions for Isolated Worlds only. https://bugs.webkit.org/show_bug.cgi?id=27785 * bindings/v8/ScriptController.cpp: (WebCore::ScriptController::evaluateInNewWorld): (WebCore::ScriptController::evaluateInNewContext): * bindings/v8/ScriptController.h: * bindings/v8/V8IsolatedWorld.cpp: (WebCore::V8IsolatedWorld::evaluate): * bindings/v8/V8IsolatedWorld.h: * bindings/v8/V8Proxy.cpp: (WebCore::V8Proxy::evaluateInNewWorld): (WebCore::V8Proxy::evaluateInNewContext): (WebCore::V8Proxy::createNewContext): (WebCore::V8Proxy::initContextIfNeeded): (WebCore::V8Proxy::registerExtensionWithV8): (WebCore::V8Proxy::registerExtension): * bindings/v8/V8Proxy.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46594 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
treat@webkit.org authored
Reviewed by Adam Treat. Add previously defined out support to PopupMenuQt for marking entries as disabled and for selecting the desired item. https://bugs.webkit.org/show_bug.cgi?id=27772 * platform/qt/PopupMenuQt.cpp: (WebCore::PopupMenu::populate): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46593 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
darin@apple.com authored
Reviewed by David Levin. Use checked casts for render tree https://bugs.webkit.org/show_bug.cgi?id=23522 Next step: Add new toRenderWidget cast and use it everywhere. Use checked casts in all the places that were using static_cast but there is a checked cast available. * accessibility/AccessibilityRenderObject.cpp: (WebCore::AccessibilityRenderObject::stringValue): (WebCore::AccessibilityRenderObject::widget): (WebCore::AccessibilityRenderObject::widgetForAttachmentView): (WebCore::AccessibilityRenderObject::visiblePositionForPoint): * accessibility/gtk/AccessibilityObjectWrapperAtk.cpp: (getPangoLayoutForAtk): * dom/Document.cpp: (WebCore::widgetForNode): (WebCore::Document::setFocusedNode): * html/HTMLEmbedElement.cpp: (WebCore::findWidgetRenderer): * html/HTMLMediaElement.cpp: (WebCore::HTMLMediaElement::defaultEventHandler): * html/HTMLObjectElement.cpp: (WebCore::HTMLObjectElement::renderWidgetForJSBindings): * html/HTMLPlugInElement.cpp: (WebCore::HTMLPlugInElement::defaultEventHandler): * loader/FrameLoader.cpp: (WebCore::FrameLoader::loadSubframe): * loader/PluginDocument.cpp: (WebCore::PluginTokenizer::writeRawData): * page/EventHandler.cpp: (WebCore::EventHandler::hitTestResultAtPoint): (WebCore::subframeForTargetNode): (WebCore::EventHandler::handleWheelEvent): * page/Frame.cpp: (WebCore::isFrameElement): * page/PrintContext.cpp: (WebCore::PrintContext::computePageRects): * page/android/EventHandlerAndroid.cpp: (WebCore::EventHandler::passWidgetMouseDownEventToWidget): * page/chromium/EventHandlerChromium.cpp: (WebCore::EventHandler::passWidgetMouseDownEventToWidget): * page/chromium/FrameChromium.cpp: (WebCore::computePageRectsForFrame): * page/gtk/EventHandlerGtk.cpp: (WebCore::EventHandler::passWidgetMouseDownEventToWidget): * page/haiku/EventHandlerHaiku.cpp: (WebCore::EventHandler::passWidgetMouseDownEventToWidget): * page/mac/EventHandlerMac.mm: (WebCore::EventHandler::passWidgetMouseDownEventToWidget): (WebCore::EventHandler::passSubframeEventToSubframe): * page/win/FrameWin.cpp: (WebCore::computePageRectsForFrame): * page/wx/EventHandlerWx.cpp: (WebCore::EventHandler::passWidgetMouseDownEventToWidget): * platform/chromium/ClipboardChromium.cpp: (WebCore::getCachedImage): * platform/chromium/PasteboardChromium.cpp: (WebCore::Pasteboard::writeImage): * platform/gtk/PasteboardGtk.cpp: (WebCore::Pasteboard::writeImage): * platform/mac/PasteboardMac.mm: (WebCore::Pasteboard::writeImage): * platform/qt/ClipboardQt.cpp: (WebCore::getCachedImage): * platform/qt/PasteboardQt.cpp: (WebCore::Pasteboard::writeImage): * platform/win/ClipboardWin.cpp: (WebCore::getCachedImage): * platform/win/PasteboardWin.cpp: (WebCore::Pasteboard::writeImage): * rendering/InlineBox.h: (WebCore::InlineBox::boxModelObject): * rendering/RenderInline.cpp: (WebCore::RenderInline::splitInlines): (WebCore::RenderInline::addChildToContinuation): * rendering/RenderLayerBacking.cpp: (WebCore::RenderLayerBacking::updateImageContents): * rendering/TextControlInnerElements.cpp: (WebCore::RenderTextControlInnerBlock::positionForPoint): Use checked cast instead of static_cast. * rendering/RenderWidget.h: Added toRenderWidget. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46592 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
staikos@webkit.org authored
Reviewed by George Staikos. WINCE PORT: some files modified to build for WINCE https://bugs.webkit.org/show_bug.cgi?id=27816 git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46591 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
staikos@webkit.org authored
Reviewed by George Staikos. WINCE PORT: modified graphics files https://bugs.webkit.org/show_bug.cgi?id=27779 git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46590 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
kenneth@webkit.org authored
Reviewed by Ariya Hidayat. Improve efficiency by rewriting code doing three hash table lookups, which can be replaced by just one as pointed out by Darin Adler. Though being slightly less clear, this should be considerable faster. * plugins/PluginDatabase.cpp: (WebCore::PluginDatabase::remove): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46589 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
kov@webkit.org authored
Reviewed by Gustavo Noronha. [Gtk] Code cleanup in MediaPlayerPrivateGStreamer.cpp|h and VideoSinkGStreamer.cpp|h (Part 2) https://bugs.webkit.org/show_bug.cgi?id=27651 Removed unneeded includes (gdk.h and gtk.h) and added glib.h and cairo.h instead. * platform/graphics/gtk/MediaPlayerPrivateGStreamer.cpp: * platform/graphics/gtk/MediaPlayerPrivateGStreamer.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46588 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
kov@webkit.org authored
Reviewed by Gustavo Noronha. [Gtk] Code cleanup in MediaPlayerPrivateGStreamer.cpp|h and VideoSinkGStreamer.cpp|h (Part 1) https://bugs.webkit.org/show_bug.cgi?id=27651 Fixed many code style issues pointed by WebKitTools/Scripts/modules/cpplint.py No functionality change at all. * platform/graphics/gtk/MediaPlayerPrivateGStreamer.cpp: * platform/graphics/gtk/MediaPlayerPrivateGStreamer.h: * platform/graphics/gtk/VideoSinkGStreamer.cpp: * platform/graphics/gtk/VideoSinkGStreamer.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46587 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
kenneth@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=27651 When the preferred plugin is set for a specific MIME type, it will be always picked up, regardless of its version, quirks etc. Client applications may want to use that API to resolve mimetype ambiguity in a custom way, rather than in the default way that is currently used in WebKit. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46586 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
kenneth@webkit.org authored
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46585 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
kenneth@webkit.org authored
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46584 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
kenneth@webkit.org authored
Reviewed by Adam Treat. Add missing Q_OBJECT to class inheriting from QObject. * tests/qwebframe/tst_qwebframe.cpp: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46583 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
kenneth@webkit.org authored
Reviewed by Adam Treat. Fix indentation. * tests/qwebframe/tst_qwebframe.cpp: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46582 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eric.carlson@apple.com authored
Reviewed by Simon Fraser. Video elements fires another "load" event when attached to DOM https://bugs.webkit.org/show_bug.cgi?id=27623 Test: media/media-load-event.html * html/HTMLMediaElement.cpp: (WebCore::HTMLMediaElement::insertedIntoDocument): Only schedule load when element's network state is NETWORK_EMPTY. 2009-07-30 Eric Carlson <eric.carlson@apple.com> Reviewed by Simon Fraser. Video elements fires another "load" event when attached to DOM https://bugs.webkit.org/show_bug.cgi?id=27623 * media/media-load-event-expected.txt: Added. * media/media-load-event.html: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46581 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
levin@chromium.org authored
Reviewed by David Levin. Cache v8 strings when converting from WebCore::String to v8 string. https://bugs.webkit.org/show_bug.cgi?id=27655 * bindings/v8/V8Binding.cpp: (WebCore::v8String): now just immediately calls v8ExternalString (WebCore::enableStringImplCache): enables caching of conversions from WebCore::StringImpl to v8::String (WebCore::makeExternalString): utilty function to create external v8::String out of WebCore::String (WebCore::getStringCache): static function to access string cache (WebCore::cachedStringCallback): callback for weak handles of v8::Strings stored in the cache (WebCore::v8ExternalString): if caching enabled, checks if there is already v8::String for the given WebCore::StringImpl. If present, returns it, otherwise creates a new v8 external string. * bindings/v8/V8Binding.h: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46580 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ariya@webkit.org authored
Reviewed by Simon Hausmann. https://bugs.webkit.org/show_bug.cgi?id=27813 [Qt] Support pixel tests in DumpRenderTree for the Qt port. * DumpRenderTree/qt/DumpRenderTree.cpp: (WebCore::DumpRenderTree::DumpRenderTree): (WebCore::DumpRenderTree::open): (WebCore::DumpRenderTree::setDumpPixels): (WebCore::DumpRenderTree::dump): * DumpRenderTree/qt/DumpRenderTree.h: * DumpRenderTree/qt/main.cpp: (main): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46579 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
hausmann@webkit.org authored
Reviewed by Simon Hausmann. Fix documentation links to examples. * Api/qwebview.cpp: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46578 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ariya@webkit.org authored
2009-07-29 Ariya Hidayat <ariya.hidayat@nokia.com> Reviewed by Simon Hausmann. Adding ImageDiff project file. https://bugs.webkit.org/show_bug.cgi?id=27813 * WebKit.pro: Added ImageDiff.pro. WebKitTools/ChangeLog: 2009-07-29 Ariya Hidayat <ariya.hidayat@nokia.com> Reviewed by Simon Hausmann. https://bugs.webkit.org/show_bug.cgi?id=27813 [Qt] Implement ImageDiff. * DumpRenderTree/qt/ImageDiff.cpp: Added. * DumpRenderTree/qt/ImageDiff.pro: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46577 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
hausmann@webkit.org authored
Reviewed by Simon Hausmann. Allocate MainWindow on heap in robotized QtLauncher as well. * QtLauncher/main.cpp: (main): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46576 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
vestbo@webkit.org authored
Reviewed by Eric Seidel. build-webkit: Reorder logic for determining the baseProductDir https://bugs.webkit.org/show_bug.cgi?id=27699 We now do port-spesific probing for the product dir first, and then fall back to either the generic WEBKITOUTPUTDIR (which now also works on Mac), or WebKitBuild. Then we add the git branch if the git branch build option is enabled. Finally we massage the product dir based on the port. For example the Mac port will now always set the SYMROOT and OBJROOT configuration for XCode. Note that isAppleWinWebkit() and isCygwin() is not mutually exclusive, hence the normal if and not elsif in the last two blocks. * Scripts/webkitdirs.pm: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46575 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
xan@webkit.org authored
Reviewed by Maciej Stachowiak. https://bugs.webkit.org/show_bug.cgi?id=25535 [GTK] object:state-changed:checked events missing for radio buttons and checkboxes Implement state-changed:checked for radio buttons and checkboxes. * accessibility/gtk/AXObjectCacheAtk.cpp: (WebCore::AXObjectCache::postPlatformNotification): * html/HTMLInputElement.cpp: (WebCore::HTMLInputElement::setChecked): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46574 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
xan@webkit.org authored
Forgot the 'break'. * platform/ContextMenu.cpp: (WebCore::ContextMenu::checkOrEnableIfNeeded): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46573 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
xan@webkit.org authored
Try to fix Mac build. * platform/ContextMenu.cpp: (WebCore::ContextMenu::checkOrEnableIfNeeded): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46572 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
xan@webkit.org authored
Reviewed by Adam Barth. Add missing enumeration value to switch. * platform/ContextMenu.cpp: (WebCore::ContextMenu::checkOrEnableIfNeeded): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46571 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
- 29 Jul, 2009 5 commits
-
-
jianli@chromium.org authored
2009-07-29 Jian Li <jianli@chromium.org> Reviewed by Darin Adler. Workers need to throw an exception when presented with invalid URLs. https://bugs.webkit.org/show_bug.cgi?id=27770 Tests covered by worker-constructor.html and worker-redirect.html. * bindings/js/JSWorkerConstructor.cpp: (WebCore::constructWorker): * bindings/v8/custom/V8WorkerCustom.cpp: (WebCore::CALLBACK_FUNC_DECL): * workers/Worker.cpp: (WebCore::Worker::Worker): * workers/Worker.h: (WebCore::Worker::create): * workers/WorkerContext.cpp: (WebCore::WorkerContext::importScripts): * workers/WorkerScriptLoader.cpp: (WebCore::WorkerScriptLoader::loadSynchronously): (WebCore::WorkerScriptLoader::loadAsynchronously): (WebCore::WorkerScriptLoader::createResourceRequest): * workers/WorkerScriptLoader.h: LayoutTests: 2009-07-29 Jian Li <jianli@chromium.org> Reviewed by Darin Adler. Workers need to throw an exception when presented with invalid URLs. https://bugs.webkit.org/show_bug.cgi?id=27770 Update worker-constructor.html and worker-redirect.html per the behavior change. * fast/workers/worker-constructor-expected.txt: * fast/workers/worker-constructor.html: * http/tests/workers/worker-redirect-expected.txt: * http/tests/workers/worker-redirect.html: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46570 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
beidson@apple.com authored
Reviewed by Darin Adler. (REGRESSION: r46039) Should restore previous connections-per-host limit for non-http(s) hosts https://bugs.webkit.org/show_bug.cgi?id=27822 and <rdar://problem/7091659> * loader/loader.cpp: (WebCore::Loader::Host::servePendingRequests): For non-http(s) hosts, restore the previous behavior of only limiting connections while parsing and still trying to figure out stylesheet urls. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46569 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
staikos@webkit.org authored
Reviewed by George Staikos. WINCE PORT: Add WebCore/page/wince/FrameWince.cpp https://bugs.webkit.org/show_bug.cgi?id=27729 git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46568 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
rniwa@webkit.org authored
2009-07-29 Ryosuke Niwa <rniwa@webkit.org> Reviewed by Justin Garcia. REGRESSION(r46370-46426): /editing/style/remove-underline-from-stylesheet.html fails https://bugs.webkit.org/show_bug.cgi?id=27809 The patch primarily rebaselines the tests but also fixes the bug in currentlyHasStyle. To determine that a particular text decoration is present, currentlyHasStyle should refer to -webkit-text-decorations-in-effect to take care of styles set by u, s, strike tags and ancestors' CSS. We also need to update layout to accommodate the changes made within ApplyStyleCommand. * editing/ApplyStyleCommand.cpp: ditto (WebCore::StyleChange::currentlyHasStyle): ditto LayoutTests: 2009-07-29 Ryosuke Niwa <rniwa@webkit.org> Reviewed by Justin Garcia. REGRESSION(r46370-46426): /editing/style/remove-underline-from-stylesheet.html fails https://bugs.webkit.org/show_bug.cgi?id=27809 Since new behavior is consistent with Firefox, we rebaseline the test cases. The patch converts remove-underline-from-stylesheet and remove-underline-in-bold to dumpAsText tests with markup printed explicitly because pixel tests did not detect the disappearance of underline. * editing/style/remove-underline-from-stylesheet-expected.txt: Added. * editing/style/remove-underline-from-stylesheet.html: * editing/style/remove-underline-in-bold-expected.txt: Added. * editing/style/remove-underline-in-bold.html: * platform/mac/editing/style/remove-underline-from-stylesheet-expected.checksum: Removed. * platform/mac/editing/style/remove-underline-from-stylesheet-expected.png: Removed. * platform/mac/editing/style/remove-underline-from-stylesheet-expected.txt: Removed. * platform/mac/editing/style/remove-underline-in-bold-expected.checksum: Removed. * platform/mac/editing/style/remove-underline-in-bold-expected.png: Removed. * platform/mac/editing/style/remove-underline-in-bold-expected.txt: Removed. * platform/qt/editing/style/remove-underline-from-stylesheet-expected.txt: Removed. * platform/qt/editing/style/remove-underline-in-bold-expected.txt: Removed. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46567 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
staikos@webkit.org authored
Reviewed by George Staikos. WINCE PORT: changes to platform/text files https://bugs.webkit.org/show_bug.cgi?id=27715 git-svn-id: http://svn.webkit.org/repository/webkit/trunk@46566 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-