Timeline
Feb 20, 2011:
- 11:26 PM Changeset in webkit [79192] by
-
- 2 edits in trunk/LayoutTests
2011-02-20 MORITA Hajime <morrita@google.com>
Unreviewed expectation update.
- platform/chromium/test_expectations.txt:
- 11:21 PM Changeset in webkit [79191] by
-
- 3 edits in trunk/Websites/bugs.webkit.org
2011-02-16 Ojan Vafai <ojan@chromium.org>
Reviewed by Adam Barth.
keyboard support for extending/shrinking comment context
https://bugs.webkit.org/show_bug.cgi?id=54612
ctrl+shift+up/down will extend/shrink the comment context when
a comment is focused or when one is being edited.
Also, switch over to using keydown instead of keypress events.
This lets us share code for handling escape and other key events.
Also, keypress is evil and should die.
- code-review.js:
- 11:09 PM Changeset in webkit [79190] by
-
- 2 edits in trunk/Websites/bugs.webkit.org
2011-02-20 Ojan Vafai <ojan@chromium.org>
Recommit accidental revert.
r79180 accidentally revereted r79178.
- code-review.js:
- 11:04 PM Changeset in webkit [79189] by
-
- 2 edits in trunk/Websites/bugs.webkit.org
2011-02-20 Ojan Vafai <ojan@chromium.org>
Reviewed by Adam Barth.
[codereviewtool] add more help information
https://bugs.webkit.org/show_bug.cgi?id=54847
- code-review.js:
- 10:53 PM Changeset in webkit [79188] by
-
- 5 edits in branches/safari-534.20-branch/Source
Versioning.
- 10:48 PM Changeset in webkit [79187] by
-
- 1 move in tags/Safari-534.20.7
Renaming tag
- 10:46 PM Changeset in webkit [79186] by
-
- 3 edits in trunk/Websites/bugs.webkit.org
2011-02-20 Ojan Vafai <ojan@chromium.org>
Reviewed by Adam Barth.
[codereviewtool] use 'r' to focus the review select element
https://bugs.webkit.org/show_bug.cgi?id=54845
This allows for quick keyboard access to the toolbar items.
Hit r to get to the review select element. Then you can
tab to the cq/preview/publish elements.
- code-review.js:
- 10:41 PM Changeset in webkit [79185] by
-
- 2 edits in trunk/Websites/bugs.webkit.org
2011-02-20 Ojan Vafai <ojan@chromium.org>
Reviewed by Adam Barth.
[codereviewtool] don't let lines/diffblocks be mouse focusable
https://bugs.webkit.org/show_bug.cgi?id=54851
Unfortunately, this will only work once https://bugs.webkit.org/show_bug.cgi?id=54727
is committed. In the interim, it won't break anything.
- code-review.js:
- 10:40 PM Changeset in webkit [79184] by
-
- 1 copy in tags/Safari-534.20.8
New tag.
- 10:39 PM Changeset in webkit [79183] by
-
- 2 edits in trunk/Websites/bugs.webkit.org
2011-02-20 Ojan Vafai <ojan@chromium.org>
Reviewed by Adam Barth.
[codereviewtool] use keydown instead of keypress
https://bugs.webkit.org/show_bug.cgi?id=54849
There is no functional change. This is just a cleanup
to make future patches (e.g. https://bugs.webkit.org/show_bug.cgi?id=54612)
cleaner.
- code-review.js:
- 10:37 PM Changeset in webkit [79182] by
-
- 2 edits in trunk/Websites/bugs.webkit.org
2011-02-20 Ojan Vafai <ojan@chromium.org>
Reviewed by Adam Barth.
[codereviewtool] fix layout nit
https://bugs.webkit.org/show_bug.cgi?id=54848
There is occasionally an off-by-one in the 50% width
calculation. This ensures that the add lines always
line up with the shared context lines.
- PrettyPatch/PrettyPatch.rb:
- 9:48 PM Changeset in webkit [79181] by
-
- 3 edits in trunk/Tools
2011-02-20 Dirk Pranke <dpranke@chromium.org>
Reviewed by Ojan Vafai.
test-webkitpy: stop skipping a bunch of tests on win32
https://bugs.webkit.org/show_bug.cgi?id=54788
- Scripts/webkitpy/common/net/testoutputset_unittest.py:
- Scripts/webkitpy/test/main.py:
- 9:44 PM Changeset in webkit [79180] by
-
- 2 edits in trunk/Websites/bugs.webkit.org
2011-02-20 Ojan Vafai <ojan@chromium.org>
Reviewed by Adam Barth.
[codereviewtool] make escape hide the preview form
https://bugs.webkit.org/show_bug.cgi?id=54844
- code-review.js:
- 9:37 PM Changeset in webkit [79179] by
-
- 5 edits in trunk/Source/WebCore
Build fix (remove includes).
- bindings/js/JSDOMBinding.cpp:
- bindings/js/JSDOMWindowCustom.cpp:
- bindings/js/JSHistoryCustom.cpp:
- bindings/js/JSLocationCustom.cpp:
- 9:37 PM Changeset in webkit [79178] by
-
- 2 edits in trunk/Websites/bugs.webkit.org
2011-02-20 Ojan Vafai <ojan@chromium.org>
Reviewed by Adam Barth.
[codereviewtool] make enter work when an individual line is focused
https://bugs.webkit.org/show_bug.cgi?id=54843
- code-review.js:
- 9:18 PM Changeset in webkit [79177] by
-
- 51 edits5 deletes in trunk/Source
https://bugs.webkit.org/show_bug.cgi?id=54839
Remove PrototypeFunction, NativeFunctionWrapper, and GlobalEvalFunction.
Reviewed by Oliver Hunt.
Historically, Native functions used to be represented by PrototypeFunctions, however
since introducing call optimizations to the JIT this has used JSFunctions for host
calls too. At the point this change was made, the interpreter continued to use
PrototypeFunctions, however since fallback from the JIT to interpreter was introduced
the interpreter has had to be able to run using host functions represented using
JSFunctions - leading to an unnecessary and redundant divergence in behaviour between
interpreter only builds, and situations where the JIT has fallen back to interpreting.
NativeFunctionWrapper only existed to select between PrototypeFunction and JSFunction
for wrappers for host functions, and as such can also be removed.
GlobalEvalFunction is a redundant wrapper that happens to be derived from
PrototypeFunction. It existed to hold a reference to the global object - but since all
functions how derive from JSObjectWithGlobalObject, this no longer requires an
additional class to provide this functionality.
Source/JavaScriptCore:
- JavaScriptCore.JSVALUE32_64only.exp:
- JavaScriptCore.JSVALUE64only.exp:
- JavaScriptCore.xcodeproj/project.pbxproj:
Removed symbols / references to files.
- runtime/GlobalEvalFunction.cpp: Removed.
- runtime/GlobalEvalFunction.h: Removed.
- runtime/NativeFunctionWrapper.h: Removed.
- runtime/PrototypeFunction.cpp: Removed.
- runtime/PrototypeFunction.h: Removed.
Removed.
- runtime/Executable.cpp:
(JSC::NativeExecutable::~NativeExecutable):
- runtime/Executable.h:
(JSC::NativeExecutable::create):
(JSC::NativeExecutable::NativeExecutable):
(JSC::JSFunction::nativeFunction):
- runtime/JSFunction.cpp:
(JSC::callHostFunctionAsConstructor):
(JSC::JSFunction::JSFunction):
(JSC::JSFunction::getCallData):
- runtime/JSFunction.h:
- runtime/JSGlobalData.cpp:
(JSC::JSGlobalData::getHostFunction):
- runtime/JSGlobalData.h:
(JSC::JSGlobalData::getCTIStub):
Added interpreter-friendly constructors for NativeExecutables.
- bytecompiler/BytecodeGenerator.cpp:
- interpreter/Interpreter.cpp:
- jit/JITStubs.cpp:
- jsc.cpp:
- runtime/ArrayConstructor.cpp:
- runtime/BooleanPrototype.cpp:
- runtime/BooleanPrototype.h:
- runtime/CallData.h:
- runtime/DateConstructor.cpp:
- runtime/DateConstructor.h:
- runtime/ErrorPrototype.cpp:
- runtime/ErrorPrototype.h:
- runtime/FunctionPrototype.cpp:
- runtime/FunctionPrototype.h:
- runtime/JSGlobalObject.cpp:
- runtime/JSGlobalObject.h:
- runtime/JSGlobalObjectFunctions.cpp:
- runtime/Lookup.cpp:
- runtime/NumberPrototype.cpp:
- runtime/NumberPrototype.h:
- runtime/ObjectConstructor.cpp:
- runtime/ObjectConstructor.h:
- runtime/ObjectPrototype.cpp:
- runtime/ObjectPrototype.h:
- runtime/RegExpPrototype.cpp:
- runtime/RegExpPrototype.h:
- runtime/SmallStrings.h:
- runtime/StringConstructor.cpp:
- runtime/StringConstructor.h:
Removed use of redundant classes.
Source/WebCore:
- bindings/js/JSDOMBinding.cpp:
- bindings/js/JSDOMWindowCustom.cpp:
- bindings/js/JSHistoryCustom.cpp:
- bindings/js/JSLocationCustom.cpp:
Removed use of redundant classes.
- 9:07 PM Changeset in webkit [79176] by
-
- 8 edits in trunk/Tools
2011-02-20 Dirk Pranke <dpranke@chromium.org>
Reviewed by Ojan Vafai.
Fix various bugs related to handling of dir separators and real
vs. fake filesystems that were causing test-webkitpy to fail
tests on win32. These bugs have a variety of causes but are
lumped together because they should be easy to review.
- Scripts/webkitpy/common/net/testoutput.py: Here we were using os.path.sep but not escaping it prior to using in a regexp, which caused bad things on win32.
- Scripts/webkitpy/common/net/testoutput_unittest.py: Same here.
- Scripts/webkitpy/layout_tests/port/chromium_unittest.py: Here we were using the native filesystem instead of the mock filesystem, making some tests unnecessarily platform dependent. Also we weren't setting the default configuration for the TestChromiumWinPort.
- Scripts/webkitpy/layout_tests/update_webgl_conformance_tests.py: Here we *shouldn't* use os.path.join(), just so the code becomes less platform dependent.
- Scripts/webkitpy/style/checker.py: Here we should be using os.path.sep instead of "/"; the tests require the native filesystem.
- Scripts/webkitpy/style/checkers/cpp_unittest.py: Here the underlying code is using os.path.sep, so we probably should as well.
- Scripts/webkitpy/style/test_expectations_unittest.py: Here we should be using the filesystem hanging of the port object (which is the mocked filesystem) rather than the native one.
- 8:59 PM Changeset in webkit [79175] by
-
- 2 edits in trunk/LayoutTests
2011-02-20 MORITA Hajime <morrita@google.com>
Unreviewed expectation update.
- platform/chromium/test_expectations.txt:
- 8:37 PM Changeset in webkit [79174] by
-
- 5 edits in trunk/Source/WebCore
2011-02-20 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r79169.
http://trac.webkit.org/changeset/79169
https://bugs.webkit.org/show_bug.cgi?id=54846
Made unexpected results for tests without CJK characters
(Requested by tkent on #webkit).
- platform/graphics/chromium/FontCacheChromiumWin.cpp: (WebCore::FontCache::createFontPlatformData):
- platform/graphics/chromium/FontPlatformDataChromiumWin.cpp: (WebCore::FontPlatformData::FontPlatformData): (WebCore::FontPlatformData::operator=):
- platform/graphics/chromium/FontPlatformDataChromiumWin.h: (WebCore::FontPlatformData::orientation):
- platform/graphics/skia/FontCustomPlatformData.cpp: (WebCore::FontCustomPlatformData::fontPlatformData):
- 8:28 PM Changeset in webkit [79173] by
-
- 2 edits in branches/safari-534.20-branch/Source/WebKit2
Merge r79170.
- 8:20 PM Changeset in webkit [79172] by
-
- 7 edits2 copies in branches/safari-534.20-branch
Merge r79167.
- 7:58 PM Changeset in webkit [79171] by
-
- 5 edits in trunk/Source/WebKit/efl
2011-02-20 Gyuyoung Kim <gyuyoung.kim@samsung.com>
Reviewed by Kent Tamura.
[EFL] Fix coding style errors in tiled BS and ewk_window_feature.h
https://bugs.webkit.org/show_bug.cgi?id=54842
Fix style errors in ewk files.
- ewk/ewk_tiled_backing_store.h:
- ewk/ewk_tiled_matrix.h:
- ewk/ewk_tiled_model.h:
- ewk/ewk_window_features.h:
- 7:43 PM Changeset in webkit [79170] by
-
- 2 edits in trunk/Source/WebKit2
Crash in WebProcess at com.apple.WebCore: WebCore::Page::goToItem + 46
<rdar://problem/8942726>
Reviewed by Dan Bernstein.
- WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::goForward):
(WebKit::WebPage::goBack):
(WebKit::WebPage::goToBackForwardItem):
Defend agains null HistoryItems.
- 7:28 PM Changeset in webkit [79169] by
-
- 5 edits in trunk/Source/WebCore
2011-02-20 Chun-Lung Huang <alvincl.huang@gmail.com>
Reviewed by Kent Tamura.
On Chromium Windows, glyphs in vertical text tests are rotated 90
degrees clockwise. https://bugs.webkit.org/show_bug.cgi?id=51450
This platform dependent patch makes Chromium Windows show the
vertical writing text correctly. Job was done by adding a prefix '@'
in front of the font family name (Windows Only). No new tests added.
- platform/graphics/chromium/FontCacheChromiumWin.cpp: (WebCore::FontCache::createFontPlatformData):
- platform/graphics/chromium/FontPlatformDataChromiumWin.cpp: (WebCore::FontPlatformData::FontPlatformData): (WebCore::FontPlatformData::operator=):
- platform/graphics/chromium/FontPlatformDataChromiumWin.h: (WebCore::FontPlatformData::orientation):
- platform/graphics/skia/FontCustomPlatformData.cpp: (WebCore::FontCustomPlatformData::fontPlatformData):
- 7:26 PM Changeset in webkit [79168] by
-
- 3 edits4 adds in trunk
2011-02-20 Simon Fraser <Simon Fraser>
Reviewed by Dirk Schulze.
REGRESSION (r73369-r73405): transform animation interpolates incorrectly
https://bugs.webkit.org/show_bug.cgi?id=54793
After the refactoring in r73380, the ending state for some types of
accelerated animations was computed incorrectly, because the TransformationMatrix
wasn't reset to identity before the ending value transformations were applied.
Fix by cleaning up the code to use explicit, separate values for
starting and ending values. Only matrix-type animations had this
issue, but cleaned up other clauses similarly.
Test: animations/3d/matrix-transform-type-animation.html
- platform/graphics/ca/GraphicsLayerCA.cpp: (WebCore::GraphicsLayerCA::setTransformAnimationEndpoints):
- 7:06 PM Changeset in webkit [79167] by
-
- 7 edits2 adds in trunk
<rdar://problem/9028929> REGRESSION (r75897): Scaling applied twice to an iframe with a transformed ancestor
Reviewed by Maciej Stachowiak.
Source/WebCore:
Test: fast/frames/iframe-scale-applied-twice.html
- page/FrameView.cpp:
(WebCore::FrameView::create): Set the initial bounds of the view to match the
frame size.
- platform/ScrollView.cpp:
(WebCore::ScrollView::visibleContentRect): Based on bounds, not frame size.
(WebCore::ScrollView::updateScrollbars): Ditto.
(WebCore::ScrollView::setFrameRect): Moved code that really handles bounds size
change to setBoundsSize().
(WebCore::ScrollView::setBoundsSize): Added.
(WebCore::ScrollView::setInitialBoundsSize): Added. Sets the bounds size but does
not update anything.
(WebCore::ScrollView::frameRectsChanged): Based on bounds, not frame size.
(WebCore::ScrollView::scrollbarCornerPresent): Ditto.
- platform/ScrollView.h:
(WebCore::ScrollView::boundsSize): Added this getter.
- platform/Widget.h:
(WebCore::Widget::resize): Set the bounds size to the frame size.
- platform/mac/ScrollbarThemeMac.mm:
(WebCore::ScrollbarThemeMac::paint): Fixed an error in the indirect drawing code
path where the buffer rect was resized to capture only the damaged part, but was
still drawn in the original location.
LayoutTests:
- fast/frames/iframe-scale-applied-twice-expected.txt: Added.
- fast/frames/iframe-scale-applied-twice.html: Added.
- 6:45 PM Changeset in webkit [79166] by
-
- 3 edits in trunk/Websites/bugs.webkit.org
2011-02-17 Ojan Vafai <ojan@chromium.org>
Reviewed by Adam Barth.
use shift+j/k to focus next/previous line
https://bugs.webkit.org/show_bug.cgi?id=54723
Tested on a large Hyatt change to confirm it performed fine.
(https://bugs.webkit.org/attachment.cgi?id=82533&action=review)
- code-review.js:
- 6:38 PM Changeset in webkit [79165] by
-
- 2 edits in trunk/Websites/bugs.webkit.org
2011-02-17 Ojan Vafai <ojan@chromium.org>
Reviewed by Adam Barth.
fix escape handling in code review tool
https://bugs.webkit.org/show_bug.cgi?id=54722
This broke with http://trac.webkit.org/changeset/78948.
Apparently jquery events get a wrapped object that
does not expose keyIdentifier.
- code-review.js:
- 6:36 PM Changeset in webkit [79164] by
-
- 2 edits in trunk/Websites/bugs.webkit.org
2011-02-17 Ojan Vafai <ojan@chromium.org>
Reviewed by Adam Barth.
create comments when hitting enter with a focused diff
https://bugs.webkit.org/show_bug.cgi?id=54719
- code-review.js:
- 6:29 PM Changeset in webkit [79163] by
-
- 3 edits in trunk/Websites/bugs.webkit.org
2011-02-17 Ojan Vafai <ojan@chromium.org>
Reviewed by Adam Barth.
use actual browser focus in the code review tool
https://bugs.webkit.org/show_bug.cgi?id=54726
This makes keyboard handling play better with focusable element
(i.e. links/textareas/buttons). Also, in theory, this makes
the review tool more amenable to screen readers (I think).
- PrettyPatch/PrettyPatch.rb:
- code-review.js:
- 6:24 PM Changeset in webkit [79162] by
-
- 4 edits in branches/safari-534.20-branch/Source/WebKit2
Merge 79165.
- 6:20 PM Changeset in webkit [79161] by
-
- 3 edits in trunk/LayoutTests
2011-02-20 Ami Fischman <fischman@chromium.org>
Reviewed by Kent Tamura.
Remove flakiness from media/video-poster.html by using event callbacks
instead of 100ms timeouts and hoping that states have transitioned in
time (!).
Removed seemingly-outdated BUG_DRT annotation from test_expectation.
https://bugs.webkit.org/show_bug.cgi?id=54685
http://crbug.com/60845
- media/video-poster.html:
- platform/chromium/test_expectations.txt:
- 5:35 PM Changeset in webkit [79160] by
-
- 4 edits in trunk/LayoutTests
2011-02-21 Benjamin Kalman <kalman@chromium.org>
Reviewed by Ryosuke Niwa.
Make editing/selection/extend-selection tests more human readable and hand-runnable
https://bugs.webkit.org/show_bug.cgi?id=54712
Three changes to achieve this:
- Column-align the "right:", "left:", "forward:", and "backward:" labels in the output.
- Add buttons to switch between LTR and RTL (the test will switch everything to RTL but LTR is useful).
- Fix typo causing failing tests to have a js error (rather than layout error).
Expected results need to change due to column alignment.
- editing/selection/extend-selection-character-expected.txt:
- editing/selection/extend-selection-word-expected.txt:
- editing/selection/resources/extend-selection.js: (logMismatchingPositions): (runSelectionTestsWithGranularity): (getTestNodeContainer.createButton.button.onmousedown): (getTestNodeContainer.createButton): (getTestNodeContainer.createButtonToSwitchDirection): (getTestNodeContainer): (createNode):
- 5:07 PM Changeset in webkit [79159] by
-
- 2 edits in trunk/Source/WebCore
Reviewed by Eric Seidel.
Tighten up access permissions by using libxslt API
https://bugs.webkit.org/show_bug.cgi?id=52688
<rdar://problem/8909191>
- xml/XSLTProcessorLibxslt.cpp: (WebCore::XSLTProcessor::transformToString): We are only interested in a string result, so let libxslt know about that.
- 4:35 PM Changeset in webkit [79158] by
-
- 5 edits in trunk/Source/WebCore
2011-02-20 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r79104.
http://trac.webkit.org/changeset/79104
https://bugs.webkit.org/show_bug.cgi?id=54835
Might have caused flaky canaries (Requested by tonyg-cr on
#webkit).
- html/parser/HTMLDocumentParser.cpp: (WebCore::HTMLDocumentParser::canTakeNextToken): (WebCore::HTMLDocumentParser::pumpTokenizer):
- html/parser/HTMLParserScheduler.cpp: (WebCore::isLayoutTimerActive):
- html/parser/HTMLParserScheduler.h: (WebCore::HTMLParserScheduler::checkForYieldBeforeToken):
- page/FrameView.h:
- 4:09 PM Changeset in webkit [79157] by
-
- 11 edits3 adds in trunk
2011-02-20 Anders Carlsson <andersca@apple.com>
Reviewed by Maciej Stachowiak.
Crash when a plug-in requests a javascript: url that destroys the plug-in
https://bugs.webkit.org/show_bug.cgi?id=54837
<rdar://problem/9005475>
Add new plug-in test.
- DumpRenderTree/DumpRenderTree.gypi:
- DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
- DumpRenderTree/TestNetscapePlugIn/PluginTest.cpp: (PluginTest::NPN_GetURL):
- DumpRenderTree/TestNetscapePlugIn/PluginTest.h:
- DumpRenderTree/TestNetscapePlugIn/Tests/GetURLWithJavaScriptURLDestroyingPlugin.cpp: Added. (GetURLWithJavaScriptURLDestroyingPlugin::GetURLWithJavaScriptURLDestroyingPlugin): (GetURLWithJavaScriptURLDestroyingPlugin::NPP_New):
- DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePlugin.vcproj:
- DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
2011-02-20 Anders Carlsson <andersca@apple.com>
Reviewed by Maciej Stachowiak.
Crash when a plug-in requests a javascript: url that destroys the plug-in
https://bugs.webkit.org/show_bug.cgi?id=54837
<rdar://problem/9005475>
Add test.
- plugins/get-url-with-javascript-destroying-plugin-expected.txt: Added.
- plugins/get-url-with-javascript-destroying-plugin.html: Added.
2011-02-20 Anders Carlsson <andersca@apple.com>
Reviewed by Maciej Stachowiak.
Crash when a plug-in requests a javascript: url that destroys the plug-in
https://bugs.webkit.org/show_bug.cgi?id=54837
<rdar://problem/9005475>
- WebProcess/Plugins/PluginProxy.cpp: (WebKit::PluginProxy::destroy): Null out m_pluginController.
- WebProcess/Plugins/PluginView.cpp: (WebKit::PluginView::performJavaScriptURLRequest): Don't access the frame through m_pluginElement since it will be nulled out when the plug-in is destroyed.
- 3:04 PM Changeset in webkit [79156] by
-
- 4 edits in trunk/Source/WebKit2
2011-02-20 Anders Carlsson <andersca@apple.com>
Reviewed by Sam Weinig.
Fix another crash when a plug-in is destroyed when evaluating JavaScript
https://bugs.webkit.org/show_bug.cgi?id=54834
<rdar://problem/9013384>
This contains three separate fixes:
- In unprotectPluginFromDestruction we can't just destroy the plug-in once the count reaches zero, because the plug-in might still have code executing on the stack. To fix this we use a zero-delay timer to defer destruction of the plug-in.
- Trying to get the NPObject for the window using NPN_GetValue would return NPERR_NO_ERROR, even if the returned NPObject was null. Fix this to return NPERR_GENERIC_ERROR instead.
- Protect the plug-in from destruction anytime an NPAPI call that sends a synchronous IPC message is made.
- PluginProcess/PluginControllerProxy.cpp: (WebKit::PluginControllerProxy::PluginControllerProxy): (WebKit::PluginControllerProxy::destroy): (WebKit::PluginControllerProxy::unprotectPluginFromDestruction):
- PluginProcess/PluginControllerProxy.h:
- WebProcess/Plugins/Netscape/NetscapeBrowserFuncs.cpp: (WebKit::PluginDestructionProtector::PluginDestructionProtector): (WebKit::NPN_GetValue): (WebKit::NPN_Evaluate): (WebKit::NPN_GetProperty): (WebKit::NPN_SetProperty): (WebKit::NPN_RemoveProperty): (WebKit::NPN_HasProperty): (WebKit::NPN_HasMethod): (WebKit::NPN_Enumerate): (WebKit::NPN_Construct): (WebKit::NPN_GetValueForURL): (WebKit::NPN_SetValueForURL):
- 2:27 PM Changeset in webkit [79155] by
-
- 18 edits3 adds in trunk
2011-02-20 Dirk Schulze <krit@webkit.org>
Reviewed by Nikolas Zimmermann.
SVG animation - analyze attribute type for animation
https://bugs.webkit.org/show_bug.cgi?id=54542
Check dynamic update of attributeName. The test fails at the moment, because of some wrong
internal mapping. Tested update manually with gdb. Working on a fix to get this test pass
as well.
- svg/animations/animate-dynamic-update-attributeName-expected.txt: Added.
- svg/animations/animate-dynamic-update-attributeName.html: Added.
- svg/animations/script-tests/animate-dynamic-update-attributeName.js: Added. (sample1): (sample2): (sample3): (executeTest):
2011-02-20 Dirk Schulze <krit@webkit.org>
Reviewed by Nikolas Zimmermann.
SVG animation - analyze attribute type for animation
https://bugs.webkit.org/show_bug.cgi?id=54542
Analyze animated attribute type to determine the kind of animation. Removed enum PropertyType and replace it
with AnimatedAttributeType instead. More cleanup of the animation code.
Added missing fillAttributeToPropertyTypeMap() for SVGGElement.
Use QualifiedName instead of AtomicStrings for attribute names. This makes it easier to handle animated attributes
from a different namespace like xlink:href. The rest of the SVG code is using QualifiedNames as well.
No change of functionality on the animation code. The changes for the <g>-element affect animateTransform. Sadly
animateTransform is not supported by our SVG animation test script at the moment. Can still be tested manually
with the W3C test suite in trunk.
The change on SVGUseElement gets covered by animate-elem-39-t.svg
Test: svg/animations/animate-dynamic-update-attributeName.html
- svg/SVGAnimateElement.cpp: (WebCore::SVGAnimateElement::SVGAnimateElement): (WebCore::SVGAnimateElement::hasValidAttributeType): (WebCore::SVGAnimateElement::determineAnimatedAttributeType): (WebCore::SVGAnimateElement::calculateAnimatedValue): (WebCore::inheritsFromProperty): (WebCore::SVGAnimateElement::calculateFromAndToValues): (WebCore::SVGAnimateElement::calculateFromAndByValues): (WebCore::SVGAnimateElement::resetToBaseValue): (WebCore::SVGAnimateElement::applyResultsToTarget): (WebCore::SVGAnimateElement::calculateDistance):
- svg/SVGAnimateElement.h:
- svg/SVGAnimateMotionElement.cpp: (WebCore::SVGAnimateMotionElement::hasValidAttributeType): (WebCore::parsePoint): (WebCore::SVGAnimateMotionElement::resetToBaseValue): (WebCore::SVGAnimateMotionElement::calculateAnimatedValue): (WebCore::SVGAnimateMotionElement::calculateDistance):
- svg/SVGAnimateMotionElement.h:
- svg/SVGAnimateTransformElement.cpp: (WebCore::SVGAnimateTransformElement::hasValidAttributeType): (WebCore::SVGAnimateTransformElement::determineAnimatedAttributeType): (WebCore::SVGAnimateTransformElement::resetToBaseValue): (WebCore::SVGAnimateTransformElement::calculateAnimatedValue): (WebCore::SVGAnimateTransformElement::calculateFromAndByValues): (WebCore::SVGAnimateTransformElement::applyResultsToTarget): (WebCore::SVGAnimateTransformElement::calculateDistance):
- svg/SVGAnimateTransformElement.h:
- svg/SVGAnimationElement.cpp: (WebCore::parseKeyTimes): (WebCore::parseKeySplines): (WebCore::SVGAnimationElement::isTargetAttributeCSSProperty): (WebCore::SVGAnimationElement::setTargetAttributeAnimatedValue): (WebCore::SVGAnimationElement::calculateKeyTimesForCalcModePaced): (WebCore::solveEpsilon): (WebCore::SVGAnimationElement::calculatePercentFromKeyPoints): (WebCore::SVGAnimationElement::currentValuesFromKeyPoints): (WebCore::SVGAnimationElement::currentValuesForValuesAnimation): (WebCore::SVGAnimationElement::startedActiveInterval):
- svg/SVGAnimationElement.h:
- svg/SVGFilterElement.cpp: (WebCore::SVGFilterElement::fillAttributeToPropertyTypeMap):
- svg/SVGGElement.cpp: (WebCore::SVGGElement::attributeToPropertyTypeMap): (WebCore::SVGGElement::fillAttributeToPropertyTypeMap): Added to fill the animated attribute map for this element.
- svg/SVGGElement.h:
- svg/SVGUseElement.cpp: (WebCore::SVGUseElement::fillAttributeToPropertyTypeMap): Changed attribute type to AnimatedString for xlink:href.
- svg/animation/SMILTimeContainer.cpp: (WebCore::SMILTimeContainer::baseValueFor): (WebCore::SMILTimeContainer::updateAnimations):
- svg/animation/SMILTimeContainer.h:
- svg/animation/SVGSMILElement.cpp: (WebCore::SVGSMILElement::SVGSMILElement): (WebCore::constructQualifiedName): Create a QualifiedName from a attribute name. (WebCore::SVGSMILElement::insertedIntoDocument): Update local varaible of attribute name. (WebCore::SVGSMILElement::removedFromDocument): Ditto. (WebCore::SVGSMILElement::attributeChanged): Ditto.
- svg/animation/SVGSMILElement.h: (WebCore::SVGSMILElement::attributeName):
- 1:16 PM Changeset in webkit [79154] by
-
- 2 edits in trunk/Source/WebCore
BUILD FIX: Add missing UNUSED_PARAM() when !ENABLE(FULLSCREEN_API)
Not reviewed.
- rendering/RenderLayerCompositor.cpp:
(WebCore::RenderLayerCompositor::requiresCompositingForFullScreen):
- 3:20 AM Changeset in webkit [79153] by
-
- 5 edits in branches/safari-534.20-branch/Source
Versioning.
- 3:14 AM Changeset in webkit [79152] by
-
- 1 copy in tags/Safari-534.20.6
New tag.
- 1:28 AM Changeset in webkit [79151] by
-
- 2 edits in trunk/Source/WebCore
2011-02-20 Carlos Garcia Campos <cgarcia@igalia.com>
Reviewed by Martin Robinson.
[GTK] Implement PlatformKeyboardEvent::getCurrentModifierState()
https://bugs.webkit.org/show_bug.cgi?id=52880
- platform/gtk/KeyEventGtk.cpp: (WebCore::PlatformKeyboardEvent::getCurrentModifierState):
- 1:22 AM Changeset in webkit [79150] by
-
- 2 edits in trunk
2011-02-20 Carlos Garcia Campos <cgarcia@igalia.com>
Reviewed by Martin Robinson.
[GTK] Bump GTK+3 dependency to 3.0
https://bugs.webkit.org/show_bug.cgi?id=54394
- configure.ac:
- 12:50 AM Changeset in webkit [79149] by
-
- 815 edits in trunk/LayoutTests/platform
Set the svn:mime-type property of some PNG files to image/png
- 12:11 AM Changeset in webkit [79148] by
-
- 5 edits in branches/safari-534.20-branch/Source
Versioning.
Feb 19, 2011:
- 11:33 PM Changeset in webkit [79147] by
-
- 1 copy in tags/Safari-534.20.5
New tag.
- 10:20 PM Changeset in webkit [79146] by
-
- 2 edits in branches/safari-534.20-branch/Source/WebKit2
Merge r79133.
- 7:10 PM Changeset in webkit [79145] by
-
- 2 edits in trunk/Source/WebCore
2011-02-19 Andreas Kling <kling@webkit.org>
Reviewed by Oliver Hunt.
DragController should use Color::serialized() when passing colors to CSSStyleDeclaration
https://bugs.webkit.org/show_bug.cgi?id=54545
- page/DragController.cpp: (WebCore::DragController::concludeEditDrag):
- 5:00 PM Changeset in webkit [79144] by
-
- 2 edits in trunk/Source/JavaScriptCore
2011-02-19 Laszlo Gombos <Laszlo Gombos>
Unreviewed build fix for Symbian.
[Symbian] Revert the removal of linking
against hal after r79126.
Dependency on the hal library can not be removed
as it is still used (e.g. in MarkStackSymbian.cpp).
- JavaScriptCore.pri:
- 4:44 PM Changeset in webkit [79143] by
-
- 2 edits in trunk/Source/WebKit/efl
2011-02-19 Lukasz Slachciak <l.slachciak@samsung.com>
Reviewed by Andreas Kling.
[EFL] Eliminated error when .webkit directory doesn't exist.
https://bugs.webkit.org/show_bug.cgi?id=54813
- ewk/ewk_main.cpp: (_ewk_init_body):
- 4:05 PM Changeset in webkit [79142] by
-
- 12 edits in trunk/Source/JavaScriptCore
Interpreter build fix.
- runtime/ArrayConstructor.cpp:
- runtime/BooleanPrototype.cpp:
- runtime/DateConstructor.cpp:
- runtime/ErrorPrototype.cpp:
- runtime/FunctionPrototype.cpp:
- runtime/Lookup.cpp:
- runtime/NumberPrototype.cpp:
- runtime/ObjectConstructor.cpp:
- runtime/ObjectPrototype.cpp:
- runtime/RegExpPrototype.cpp:
- runtime/StringConstructor.cpp:
- 3:59 PM Changeset in webkit [79141] by
-
- 9 edits in trunk/Source
Add phase in addition to momentumPhase to platform wheel events
Part of <rdar://problem/8945362>
Reviewed by Anders Carlsson.
Rename existing phase to momentumPhase.
../WebCore:
- platform/PlatformWheelEvent.h:
(WebCore::PlatformWheelEvent::PlatformWheelEvent):
(WebCore::PlatformWheelEvent::momentumPhase):
- platform/mac/ScrollAnimatorMac.mm:
(WebCore::ScrollAnimatorMac::handleWheelEvent):
(WebCore::ScrollAnimatorMac::smoothScrollWithEvent):
- platform/mac/WheelEventMac.mm:
(WebCore::momentumPhaseForEvent):
(WebCore::phaseForEvent):
(WebCore::PlatformWheelEvent::PlatformWheelEvent):
../WebKit2:
- Shared/WebEvent.h:
(WebKit::WebWheelEvent::momentumPhase):
- Shared/WebEventConversion.cpp:
(WebKit::WebKit2PlatformWheelEvent::WebKit2PlatformWheelEvent):
- Shared/WebWheelEvent.cpp:
(WebKit::WebWheelEvent::WebWheelEvent):
(WebKit::WebWheelEvent::encode):
(WebKit::WebWheelEvent::decode):
- Shared/mac/WebEventFactory.mm:
(WebKit::phaseForEvent):
(WebKit::momentumPhaseForEvent):
(WebKit::WebEventFactory::createWebWheelEvent):
- 2:41 PM Changeset in webkit [79140] by
-
- 2 edits in trunk/Source/WebCore
Qt build fix.
- bridge/runtime_method.h:
(JSC::RuntimeMethod::createStructure):
- 2:32 PM Changeset in webkit [79139] by
-
- 3 edits in trunk/Source/WebCore
Qt build fix.
- bridge/qt/qt_instance.cpp:
- bridge/qt/qt_pixmapruntime.cpp:
- 2:27 PM Changeset in webkit [79138] by
-
- 2 edits in trunk/Source/JavaScriptCore
Build fix!!
- JavaScriptCore.exp:
- 2:24 PM Changeset in webkit [79137] by
-
- 2 edits in trunk/Source/JavaScriptCore
Windows build fix!!
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def:
- 2:18 PM Changeset in webkit [79136] by
-
- 3 edits in trunk/Source/WebCore
Qt build fix.
- bridge/qt/qt_instance.cpp:
(JSC::Bindings::QtInstance::getMethod):
- bridge/qt/qt_pixmapruntime.cpp:
(JSC::Bindings::QtPixmapInstance::getMethod):
- 2:12 PM Changeset in webkit [79135] by
-
- 2 edits in trunk/Source/JavaScriptCore
Windows build fix!
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def:
- 2:04 PM Changeset in webkit [79134] by
-
- 2 edits in trunk/Source/JavaScriptCore
Build fix!
- JavaScriptCore.exp:
- 1:57 PM Changeset in webkit [79133] by
-
- 2 edits in trunk/Source/WebKit2
2011-02-19 Anders Carlsson <andersca@apple.com>
Reviewed by Dan Bernstein.
Crash when trying to take a snapshot of an uninitialized plug-in
https://bugs.webkit.org/show_bug.cgi?id=54812
- WebProcess/Plugins/PluginView.cpp: (WebKit::PluginView::notifyWidget): Don't try to create a snapshot of the plug-in if it hasn't been initialized.
- 1:55 PM Changeset in webkit [79132] by
-
- 159 edits in trunk/Source
Bug 54786 - Devirtualize JSCell::classInfo()
Reviewed by Sam Weinig.
Instead of making a virtual function call, add a pointer to the ClassInfo
onto Structure.
This removes a virtual function call, and paves the way towards removing all
the createStructure methods, and StructureFlags/AnonymousSlotCount properties
(these should be able to move onto ClassInfo).
Calls to Structure::create must now pass a pointer to the ClassInfo for the
structure. All objects now have a ClassInfo pointer, non-object cell types
still do not.
Changes are most mechanical, involving three steps:
- Remove virtual classInfo() methods.
- Add &s_info parameter to calls to Structure::create.
- Rename ClassInfo static members on classes from 'info' to 's_info', for consistency.
Source/JavaScriptCore:
- API/JSCallbackConstructor.cpp:
- API/JSCallbackConstructor.h:
- API/JSCallbackFunction.cpp:
- API/JSCallbackFunction.h:
- API/JSCallbackObject.cpp:
- API/JSCallbackObject.h:
- API/JSCallbackObjectFunctions.h:
- API/JSObjectRef.cpp:
- API/JSValueRef.cpp:
- API/JSWeakObjectMapRefPrivate.cpp:
- JavaScriptCore.exp:
- debugger/Debugger.cpp:
- debugger/DebuggerActivation.h:
- debugger/DebuggerCallFrame.cpp:
- interpreter/Interpreter.cpp:
- jit/JITCall32_64.cpp:
- jit/JITOpcodes.cpp:
- jit/JITStubs.cpp:
- profiler/Profiler.cpp:
- runtime/Arguments.cpp:
- runtime/Arguments.h:
- runtime/ArrayConstructor.cpp:
- runtime/ArrayPrototype.cpp:
- runtime/ArrayPrototype.h:
- runtime/BooleanObject.cpp:
- runtime/BooleanObject.h:
- runtime/BooleanPrototype.cpp:
- runtime/DateConstructor.cpp:
- runtime/DateInstance.cpp:
- runtime/DateInstance.h:
- runtime/DatePrototype.cpp:
- runtime/DatePrototype.h:
- runtime/ErrorInstance.cpp:
- runtime/ErrorInstance.h:
- runtime/ErrorPrototype.cpp:
- runtime/FunctionPrototype.cpp:
- runtime/FunctionPrototype.h:
- runtime/GetterSetter.h:
- runtime/GlobalEvalFunction.h:
- runtime/InternalFunction.cpp:
- runtime/InternalFunction.h:
- runtime/JSAPIValueWrapper.h:
- runtime/JSActivation.cpp:
- runtime/JSActivation.h:
- runtime/JSArray.cpp:
- runtime/JSArray.h:
- runtime/JSByteArray.cpp:
- runtime/JSByteArray.h:
- runtime/JSCell.cpp:
- runtime/JSCell.h:
- runtime/JSFunction.cpp:
- runtime/JSFunction.h:
- runtime/JSGlobalData.cpp:
- runtime/JSGlobalObject.cpp:
- runtime/JSGlobalObject.h:
- runtime/JSNotAnObject.h:
- runtime/JSONObject.cpp:
- runtime/JSONObject.h:
- runtime/JSObject.cpp:
- runtime/JSObject.h:
- runtime/JSObjectWithGlobalObject.h:
- runtime/JSPropertyNameIterator.h:
- runtime/JSStaticScopeObject.h:
- runtime/JSString.h:
- runtime/JSVariableObject.h:
- runtime/JSWrapperObject.h:
- runtime/JSZombie.cpp:
- runtime/JSZombie.h:
- runtime/Lookup.cpp:
- runtime/MathObject.cpp:
- runtime/MathObject.h:
- runtime/NativeErrorConstructor.cpp:
- runtime/NativeErrorConstructor.h:
- runtime/NumberConstructor.cpp:
- runtime/NumberConstructor.h:
- runtime/NumberObject.cpp:
- runtime/NumberObject.h:
- runtime/NumberPrototype.cpp:
- runtime/ObjectConstructor.cpp:
- runtime/ObjectPrototype.cpp:
- runtime/RegExpConstructor.cpp:
- runtime/RegExpConstructor.h:
- runtime/RegExpObject.cpp:
- runtime/RegExpObject.h:
- runtime/RegExpPrototype.cpp:
- runtime/ScopeChain.cpp:
- runtime/StringConstructor.cpp:
- runtime/StringObject.cpp:
- runtime/StringObject.h:
- runtime/StringObjectThatMasqueradesAsUndefined.h:
- runtime/StringPrototype.cpp:
- runtime/StringPrototype.h:
- runtime/Structure.cpp:
- runtime/Structure.h:
Source/JavaScriptGlue:
- JSUtils.cpp:
(KJSValueToJSObject):
(KJSValueToCFTypeInternal):
- UserObjectImp.cpp:
- UserObjectImp.h:
(UserObjectImp::createStructure):
Source/WebCore:
- WebCore.exp.in:
- bindings/js/JSAudioConstructor.cpp:
- bindings/js/JSAudioConstructor.h:
- bindings/js/JSDOMBinding.cpp:
- bindings/js/JSDOMBinding.h:
- bindings/js/JSDOMGlobalObject.cpp:
- bindings/js/JSDOMGlobalObject.h:
- bindings/js/JSDOMWindowBase.cpp:
- bindings/js/JSDOMWindowBase.h:
- bindings/js/JSDOMWindowShell.cpp:
- bindings/js/JSDOMWindowShell.h:
- bindings/js/JSGeolocationCustom.cpp:
- bindings/js/JSImageConstructor.cpp:
- bindings/js/JSImageConstructor.h:
- bindings/js/JSImageDataCustom.cpp:
- bindings/js/JSOptionConstructor.cpp:
- bindings/js/JSOptionConstructor.h:
- bindings/js/JSWorkerContextBase.cpp:
- bindings/js/JSWorkerContextBase.h:
- bindings/js/SerializedScriptValue.cpp:
- bindings/scripts/CodeGeneratorJS.pm:
- bridge/c/CRuntimeObject.cpp:
- bridge/c/CRuntimeObject.h:
- bridge/c/c_instance.cpp:
- bridge/jni/jsc/JNIUtilityPrivate.cpp:
- bridge/jni/jsc/JavaInstanceJSC.cpp:
- bridge/jni/jsc/JavaRuntimeObject.cpp:
- bridge/jni/jsc/JavaRuntimeObject.h:
- bridge/jsc/BridgeJSC.cpp:
- bridge/objc/ObjCRuntimeObject.h:
- bridge/objc/ObjCRuntimeObject.mm:
- bridge/objc/objc_instance.mm:
- bridge/objc/objc_runtime.h:
- bridge/objc/objc_runtime.mm:
- bridge/runtime_array.cpp:
- bridge/runtime_array.h:
- bridge/runtime_method.cpp:
- bridge/runtime_method.h:
- bridge/runtime_object.cpp:
- bridge/runtime_object.h:
Source/WebKit/mac:
- Plugins/Hosted/ProxyInstance.mm:
(WebKit::ProxyRuntimeMethod::ProxyRuntimeMethod):
(WebKit::ProxyRuntimeMethod::createStructure):
- Plugins/Hosted/ProxyRuntimeObject.h:
(WebKit::ProxyRuntimeObject::createStructure):
- Plugins/Hosted/ProxyRuntimeObject.mm:
(WebKit::ProxyRuntimeObject::ProxyRuntimeObject):
- WebView/WebView.mm:
(aeDescFromJSValue):
Source/WebKit2:
- WebProcess/Plugins/Netscape/JSNPMethod.cpp:
(WebKit::JSNPMethod::JSNPMethod):
- WebProcess/Plugins/Netscape/JSNPMethod.h:
(WebKit::JSNPMethod::createStructure):
- WebProcess/Plugins/Netscape/JSNPObject.cpp:
(WebKit::JSNPObject::JSNPObject):
- WebProcess/Plugins/Netscape/JSNPObject.h:
(WebKit::JSNPObject::createStructure):
- 1:15 PM Changeset in webkit [79131] by
-
- 4 edits in trunk/Source/JavaScriptCore
<http://webkit.org/b/54808> Change jsc target to build directly into JavaScriptCore.framework/Resources/jsc
Reviewed by Dan Bernstein.
- Configurations/Base.xcconfig: Added
JAVASCRIPTCORE_FRAMEWORKS_DIR variable.
- Configurations/JavaScriptCore.xcconfig: Used
JAVASCRIPTCORE_FRAMEWORKS_DIR to define INSTALL_PATH.
- JavaScriptCore.xcodeproj/project.pbxproj: Set the INSTALL_PATH
for Production configuration of jsc target.
(Copy Into Framework): Removed old build phase.
(Fix Framework Reference): Renamed build phase to "Copy Into
Framework". Added "set -x" call to make the script print the
commands it is running. Added code to exit early for Production
builds since this was never intended for them. Added code to
copy jsc into the JavaScriptCore.framework/Resources directory.
- 1:06 PM Changeset in webkit [79130] by
-
- 8 edits2 adds in trunk
2011-02-19 Ryuan Choi <ryuan.choi@samsung.com>
Reviewed by Martin Robinson.
[GTK] Remove mandatory Enchant dependency
https://bugs.webkit.org/show_bug.cgi?id=51587
Add enable-spellcheck option which decides whether to use enchant.
If disabled, WebKitGTK+ will not use enchant library.
- configure.ac:
2011-02-19 Ryuan Choi <ryuan.choi@samsung.com>
Reviewed by Martin Robinson.
[GTK] Remove mandatory Enchant dependency
https://bugs.webkit.org/show_bug.cgi?id=51587
Extract TextCheckerClientEnchant From EditorClientGtk and remove
enchant dependency from other files.
- GNUmakefile.am:
- WebCoreSupport/EditorClientGtk.cpp: (WebKit::EditorClient::EditorClient):
- WebCoreSupport/EditorClientGtk.h: (WebKit::EditorClient::textChecker):
- WebCoreSupport/TextCheckerClientEnchant.cpp: Added. (WebKit::TextCheckerClientEnchant::TextCheckerClientEnchant): (WebKit::TextCheckerClientEnchant::~TextCheckerClientEnchant): (WebKit::TextCheckerClientEnchant::ignoreWordInSpellDocument): (WebKit::TextCheckerClientEnchant::learnWord): (WebKit::TextCheckerClientEnchant::checkSpellingOfString): (WebKit::TextCheckerClientEnchant::getAutoCorrectSuggestionForMisspelledWord): (WebKit::TextCheckerClientEnchant::checkGrammarOfString): (WebKit::TextCheckerClientEnchant::getGuessesForWord): (WebKit::getAvailableDictionariesCallback): (WebKit::TextCheckerClientEnchant::updateSpellCheckingLanguage): (WebKit::TextCheckerClientEnchant::freeSpellCheckingLanguage):
- WebCoreSupport/TextCheckerClientEnchant.h: Added. (WebKit::TextCheckerClientEnchant::requestCheckingOfString):
- webkit/webkitwebsettings.cpp: (webkit_web_settings_finalize): (webkit_web_settings_set_property):
- webkit/webkitwebview.cpp: (webkit_web_view_settings_notify):
- 12:28 PM Changeset in webkit [79129] by
-
- 4 edits in trunk
2011-02-19 Zan Dobersek <zandobersek@gmail.com>
Reviewed by Martin Robinson.
[cairo][canvas] Drawing from/into float rectangles with width or height in range 0 to 1 fails
https://bugs.webkit.org/show_bug.cgi?id=54491
Enable another passing test after fixing float values rounding.
- platform/gtk/Skipped:
2011-02-19 Zan Dobersek <zandobersek@gmail.com>
Reviewed by Martin Robinson.
[cairo][canvas] Drawing from/into float rectangles with width or height in range 0 to 1 fails
https://bugs.webkit.org/show_bug.cgi?id=54491
When width or height in float rectangle are in range (0, 0.5) or (-0.5, 0)
and would round to 0, alter the behaviour to ensure that width or height are
at least 1 pixel in size in these cases.
- platform/graphics/cairo/GraphicsContextCairo.cpp: (WebCore::GraphicsContext::roundToDevicePixels):
- 12:12 PM Changeset in webkit [79128] by
-
- 2 edits in trunk/Source/WebCore
LLVM Compiler build fix.
- platform/graphics/ShadowBlur.cpp:
(WebCore::ShadowBlur::blurLayerImage): Eliminated a file static that generated
a global initializer since the compiler does not evaluate sqrtf at compile time.
- 11:05 AM Changeset in webkit [79127] by
-
- 3 edits in trunk/Source/WebKit2
Rename performLookupAtCurrentMouseLocation to performDictionaryLookupAtCurrentMouseLocation
Reviewed by Anders Carlsson.
- UIProcess/API/mac/WKView.mm:
(-[WKView performDictionaryLookupAtCurrentMouseLocation]):
- UIProcess/API/mac/WKViewPrivate.h:
- 10:05 AM Changeset in webkit [79126] by
-
- 5 edits1 add in trunk/Source/JavaScriptCore
2011-02-19 Siddharth Mathur <siddharth.mathur@nokia.com>
Reviewed by Laszlo Gombos.
[Symbian] OSAllocator implementation for Symbian OS.
Manages both data and code region requests. V8 and Sunspider tested
OK with interpreter. Not tested with JSC JIT yet as it has unrelated
failures. Also no thread safety yet.
https://bugs.webkit.org/show_bug.cgi?id=51128
- JavaScriptCore.pri: removed HAL linkage
- wtf/Bitmap.h: (WTF::::findRunOfZeros): find run of zeros in a bitmap. quick n dirty
- wtf/OSAllocator.h: (WTF::OSAllocator::decommitAndRelease): decommit explicitly
- wtf/OSAllocatorSymbian.cpp: Impl. of OSAllocator interface (WTF::allocateCodeChunk): utility for code chunks (WTF::deallocateCodeChunk): utility for code chunks (WTF::dataAllocatorInstance): getter for data allocator instance (WTF::OSAllocator::reserveUncommitted): (WTF::OSAllocator::releaseDecommitted): (WTF::OSAllocator::commit): (WTF::OSAllocator::decommit): (WTF::OSAllocator::reserveAndCommit): (WTF::PageAllocatorSymbian::PageAllocatorSymbian): maps requests to one underlying Symbian chunk (WTF::PageAllocatorSymbian::~PageAllocatorSymbian): (WTF::PageAllocatorSymbian::reserve): (WTF::PageAllocatorSymbian::release): (WTF::PageAllocatorSymbian::commit): (WTF::PageAllocatorSymbian::decommit): (WTF::PageAllocatorSymbian::contains):
- wtf/PageAllocatorSymbian.h: Added. (WTF::SymbianChunk::SymbianChunk): wrapper around RChunk (WTF::SymbianChunk::~SymbianChunk): (WTF::SymbianChunk::contains):
- 8:06 AM Changeset in webkit [79125] by
-
- 2 edits in trunk/LayoutTests
2011-02-19 Alejandro G. Castro <alex@igalia.com>
Unreviewed, fixed typo in the GTK+ skipped file.
- platform/gtk/Skipped:
- 8:06 AM Changeset in webkit [79124] by
-
- 3 edits in trunk/Source/JavaScriptCore
2011-02-19 Yong Li <yoli@rim.com>
Reviewed by Eric Seidel.
https://bugs.webkit.org/show_bug.cgi?id=54687
When being built with armcc, "int" bit fields are treated as
unsigned integers, which will fail the comparisons like "m_offset == -1".
Using "signed" fixes the problem.
- assembler/ARMAssembler.h:
- assembler/ARMv7Assembler.h:
- 7:56 AM Changeset in webkit [79123] by
-
- 8 edits in trunk/Source
2011-02-19 Brian Ryner <bryner@chromium.org>
Reviewed by Adam Barth.
Replace the #include of DocumentLoader.h in Document.h with a
forward declaration, and add a missing #include now that this
transitive include is gone.
https://bugs.webkit.org/show_bug.cgi?id=50489
No new tests required.
- bindings/ScriptControllerBase.cpp:
- dom/Document.h:
2011-02-19 Brian Ryner <bryner@chromium.org>
Reviewed by Adam Barth.
Add missing #includes of DocumentLoader.h, needed since the transitive
include through Document.h is removed.
https://bugs.webkit.org/show_bug.cgi?id=50489
- src/WebPageSerializerImpl.cpp:
- src/WebSearchableFormData.cpp:
2011-02-19 Brian Ryner <bryner@chromium.org>
Reviewed by Adam Barth.
Add missing #include of DocumentLoader.h, needed since the transitive
include through Document.h is removed.
https://bugs.webkit.org/show_bug.cgi?id=50489
- WebView/WebFrame.mm:
- 7:53 AM Changeset in webkit [79122] by
-
- 1 edit1 copy in trunk/Source/WebCore
2011-02-19 Patrick Gansterer <Patrick Gansterer>
Reviewed by Antonio Gomes.
[EFL] Remove WebCore::currentTime()
https://bugs.webkit.org/show_bug.cgi?id=53886
There is no declaration for it and we use WTF::currentTime() everywhere.
- platform/efl/SystemTimeEfl.cpp:
- 7:45 AM Changeset in webkit [79121] by
-
- 2 edits1 move in trunk/Source/WebCore
2011-02-19 Patrick Gansterer <Patrick Gansterer>
Reviewed by Andreas Kling.
Move KeygenWinCE from wince into win directory
https://bugs.webkit.org/show_bug.cgi?id=54804
Move this file into the win directory, since it can be used on all windows platforms.
- CMakeListsWinCE.txt:
- platform/win/SSLKeyGeneratorWin.cpp: Renamed from platform/wince/KeygenWinCE.cpp.
- 7:17 AM Changeset in webkit [79120] by
-
- 3 edits in trunk/Tools
2011-02-19 Patrick Gansterer <Patrick Gansterer>
Reviewed by Andreas Kling.
Make WinCE a core builder
https://bugs.webkit.org/show_bug.cgi?id=54801
- Scripts/webkitpy/common/net/buildbot/buildbot.py:
- Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
- 6:38 AM Changeset in webkit [79119] by
-
- 3 edits1 delete in trunk/Source/WebCore
2011-02-19 Patrick Gansterer <Patrick Gansterer>
Reviewed by Andreas Kling.
Make FileChooserWin.cpp more portable and use it on WinCE
https://bugs.webkit.org/show_bug.cgi?id=54803
- CMakeListsWinCE.txt:
- platform/win/FileChooserWin.cpp: (WebCore::FileChooser::basenameForWidth):
- platform/wince/FileChooserWinCE.cpp: Removed.
- 5:30 AM Changeset in webkit [79118] by
-
- 2 edits in trunk/LayoutTests
2011-02-19 Benjamin Poulain <ikipou@gmail.com>
Reviewed by Andreas Kling.
[Qt] Enable the skipped tests combining workers and database
https://bugs.webkit.org/show_bug.cgi?id=54802
Enable the tests that do not seem to be flaky anymore.
- platform/qt/Skipped:
- 2:01 AM Changeset in webkit [79117] by
-
- 5 edits in branches/safari-534.20-branch/Source
Versioning again
- 1:49 AM Changeset in webkit [79116] by
-
- 1 edit in branches/safari-534.20-branch/Source/WebKit2/ChangeLog
Versioning.
- 1:45 AM Changeset in webkit [79115] by
-
- 6 edits in branches/safari-534.20-branch/Source
Versioning.
- 1:39 AM Changeset in webkit [79114] by
-
- 13 edits in trunk
2011-02-19 James Simonsen <simonjam@chromium.org>
Reviewed by Adam Barth.
Make ScriptElement match the HTML5 spec
https://bugs.webkit.org/show_bug.cgi?id=54676
This implements the "prepare a script" section of the HTML5 spec in ScriptElement::prepareScript().
http://www.whatwg.org/specs/web-apps/current-work/multipage/scripting-1.html#prepare-a-script
There are a couple of things missing from the spec that would be new functionality. These will be added later.
- Support for async=false
- Empty src attribute should dispatch an error.
There are a couple of slight behavioral changes to match the spec.
- An XHTML script that is loaded then copied will not fire load on the copy.
- If onbeforeload moves the script to a different document, then it will not try to execute again because wasAlreadyStarted is true.
The parsers were updated to use the new API, but not rewritten to look like the spec. That will be done separately.
- fast/dom/HTMLScriptElement/move-in-beforeload.html: Original author says test was only meant to check for crashes. Beforeload is not specified by HTML5. Test was modified to assume moved script wouldn't execute because wasAlreadyStarted is set.
- fast/dom/script-clone-rerun-src.xhtml: According to HTML5 spec, load should only fire after a script executes. Test was modified to match that. The old broken behavior was that load fired on the cloned element, even though it didn't execute.
2011-02-19 James Simonsen <simonjam@chromium.org>
Reviewed by Adam Barth.
Make ScriptElement match the HTML5 spec
https://bugs.webkit.org/show_bug.cgi?id=54676
This implements the "prepare a script" section of the HTML5 spec in ScriptElement::prepareScript().
http://www.whatwg.org/specs/web-apps/current-work/multipage/scripting-1.html#prepare-a-script
There are a couple of things missing from the spec that would be new functionality. These will be added later.
- Support for async=false
- Empty src attribute should dispatch an error.
There are a couple of slight behavioral changes to match the spec.
- An XHTML script that is loaded then copied will not fire load on the copy.
- If onbeforeload moves the script to a different document, then it will not try to execute again because wasAlreadyStarted is true.
The parsers were updated to use the new API, but not rewritten to look like the spec. That will be done separately.
Test: All existing tests.
- dom/ScriptElement.cpp: Rewritten to match HTML5 spec. (WebCore::ScriptElement::ScriptElement): (WebCore::ScriptElement::insertedIntoDocument): Logic moved to prepareScript. (WebCore::ScriptElement::childrenChanged): Logic moved to prepareScript. (WebCore::ScriptElement::handleSourceAttribute): Logic moved to prepareScript. (WebCore::isLegacySupportedJavaScriptLanguage): Added to support old script types in layout tests. (WebCore::ScriptElement::isScriptTypeSupported): Derived from old shouldExecuteAsJavaScript(). (WebCore::ScriptElement::prepareScript): START HERE. Main change. Should read exactly like HTML5's "prepare a script." Legacy type support needed for layout tests using XML parser. (WebCore::ScriptElement::requestScript): Most logic moved to prepareScript. Check security settings here. (WebCore::ScriptElement::executeScript): Combined evaluateScript() and executeScript() from old code. Logic moved to prepareScript. (WebCore::ScriptElement::stopLoadRequest): Ignore parser executed scripts. (WebCore::ScriptElement::execute): Renamed executeScript. (WebCore::ScriptElement::notifyFinished): We should only listen for non-parser executed scripts. (WebCore::ScriptElement::ignoresLoadRequest): New variable names. (WebCore::ScriptElement::childrenAreCommentsOrEmptyText): Added for HTML5 compliance. (WebCore::ScriptElement::scriptCharset): Use HTML5 variables.
- dom/ScriptElement.h: (WebCore::ScriptElement::willBeParserExecuted): Added. (WebCore::ScriptElement::readyToBeParserExecuted): Added. (WebCore::ScriptElement::willExecuteWhenDocumentFinishedParsing): Added. (WebCore::ScriptElement::cachedScript): prepareScript() is the only place that should load scripts. This accessor lets the parsers listen for when loads finish. (WebCore::ScriptElement::isParserInserted): Added.
- dom/XMLDocumentParserLibxml2.cpp: (WebCore::XMLDocumentParser::endElementNs): Should behave the same. Offloads much of its work to prepareScript().
- dom/XMLDocumentParserQt.cpp: (WebCore::XMLDocumentParser::parseEndElement): Identical to libxml2 changes.
- html/HTMLScriptElement.cpp: (WebCore::HTMLScriptElement::insertedIntoDocument): No longer needs url. (WebCore::HTMLScriptElement::hasSourceAttribute): Added.
- html/HTMLScriptElement.h:
- html/parser/HTMLScriptRunner.cpp: (WebCore::HTMLScriptRunner::requestPendingScript): Requesting scripts offloaded to ScriptElement. (WebCore::HTMLScriptRunner::runScript): Should behave the same. Offloads much of its work to prepareScript().
- svg/SVGScriptElement.cpp: (WebCore::SVGScriptElement::svgAttributeChanged): New ScriptElement function names. (WebCore::SVGScriptElement::insertedIntoDocument): No longer needs url. (WebCore::SVGScriptElement::finishParsingChildren): ScriptElement::finishParsingChildren is gone. (WebCore::SVGScriptElement::hasSourceAttribute): Added. (WebCore::SVGScriptElement::dispatchLoadEvent): New ScriptElement function names.
- svg/SVGScriptElement.h:
- 1:35 AM Styling Form Controls edited by
- Mention validation messages (diff)
- 1:17 AM Changeset in webkit [79113] by
-
- 2 edits in trunk/Source/WebKit/efl
2011-02-19 Lukasz Slachciak <l.slachciak@samsung.com>
Unreviewed build fix.
SoupSession build break fix
https://bugs.webkit.org/show_bug.cgi?id=54796
- ewk/ewk_settings.cpp: (ewk_settings_proxy_uri_set):
- 12:58 AM Changeset in webkit [79112] by
-
- 2 edits in trunk/Source/WebCore
2011-02-19 Marc-Antoine Ruel <maruel@chromium.org>
Reviewed by James Robinson.
Split webcore_rendering off webcore_remaining to reduce its size for WPO builds
https://bugs.webkit.org/show_bug.cgi?id=54789
- WebCore.gyp/WebCore.gyp:
- 12:46 AM Changeset in webkit [79111] by
-
- 2 edits in trunk/LayoutTests
Updated test expectations (more fallout from r78846).
- platform/chromium/test_expectations.txt:
- 12:39 AM Changeset in webkit [79110] by
-
- 4 edits1 copy in trunk/Source/WebCore
2011-02-19 Bill Budge <bbudge@chromium.org>
Reviewed by David Levin.
ThreadableLoaderClient needs willSendRequest method
https://bugs.webkit.org/show_bug.cgi?id=54688
No new tests. Exposes no new functionality
- WebCore.gypi:
- loader/DocumentThreadableLoader.cpp: (WebCore::DocumentThreadableLoader::willSendRequest): (WebCore::DocumentThreadableLoader::didReceiveData): (WebCore::DocumentThreadableLoader::didReceiveCachedMetadata):
- loader/DocumentThreadableLoaderClient.h: Added. (WebCore::DocumentThreadableLoaderClient::isDocumentThreadableLoaderClient): (WebCore::DocumentThreadableLoaderClient::willSendRequest):
- loader/ThreadableLoaderClient.h: (WebCore::ThreadableLoaderClient::isDocumentThreadableLoaderClient):
- 12:33 AM Changeset in webkit [79109] by
-
- 1 copy in tags/Safari-534.20.4
New tag.
- 12:31 AM Changeset in webkit [79108] by
-
- 2 edits in trunk/Source/WebKit/efl
2011-02-19 Lukasz Slachciak <l.slachciak@samsung.com>
Reviewed by Andreas Kling.
[EFL] Use standard WebCore::homeDirectoryPath method instead of reimplementing it
https://webkit.org/b/54781
- ewk/ewk_main.cpp: (_ewk_init_body):
- 12:29 AM Changeset in webkit [79107] by
-
- 39 edits3 adds in trunk
2011-02-19 Charlie Reis <creis@chromium.org>
Reviewed by Mihai Parparita.
Ensure loading has stopped in HistoryController::goToItem
https://bugs.webkit.org/show_bug.cgi?id=54517
Tests that going forward within the same document does not stop loading.
- http/tests/navigation/forward-to-fragment-fires-onload.html: Added.
- http/tests/navigation/forward-to-fragment-fires-onload-expected.txt: Added.
- http/tests/navigation/resources/forward-to-fragment-fires-onload-2.html: Added.
2011-02-19 Charlie Reis <creis@chromium.org>
Reviewed by Mihai Parparita.
Ensure loading has stopped in HistoryController::goToItem
https://bugs.webkit.org/show_bug.cgi?id=54517
Avoid stopping all loaders in goToItem for same document navigations
or pseudo-back-forward URLs. Make HistoryController::goToItem private
to force callers to go through Page::goToItem. Also add a callback to
FrameLoaderClient to let clients decide whether to stop loading first.
Test: http/tests/navigation/forward-to-fragment-fires-onload.html
- loader/EmptyClients.h:
- loader/FrameLoader.h:
- loader/FrameLoaderClient.h:
- loader/HistoryController.cpp:
- loader/HistoryController.h:
- page/Page.cpp:
2011-02-19 Charlie Reis <creis@chromium.org>
Reviewed by Mihai Parparita.
Ensure loading has stopped in HistoryController::goToItem
https://bugs.webkit.org/show_bug.cgi?id=54517
Call Page::goToItem instead of HistoryController::goToItem, so that
FrameLoader::stopAllLoaders is called first. Also adds a callback in
FrameLoaderClient for checking for pseudo-back-forward URLs.
Test: http/tests/navigation/forward-to-fragment-fires-onload.html
- src/FrameLoaderClientImpl.cpp: (WebKit::FrameLoaderClientImpl::shouldStopLoadingForHistoryItem): Added.
- src/FrameLoaderClientImpl.h:
- src/WebFrameImpl.cpp:
2011-02-19 Charlie Reis <creis@chromium.org>
Reviewed by Mihai Parparita.
Ensure loading has stopped in HistoryController::goToItem
https://bugs.webkit.org/show_bug.cgi?id=54517
Add a FrameLoaderClient callback for whether to stop loading before goToItem.
Test: http/tests/navigation/forward-to-fragment-fires-onload.html
- WebCoreSupport/FrameLoaderClientEfl.cpp: (WebCore::FrameLoaderClientEfl::shouldStopLoadingForHistoryItem): Added.
- WebCoreSupport/FrameLoaderClientEfl.h:
2011-02-19 Charlie Reis <creis@chromium.org>
Reviewed by Mihai Parparita.
Ensure loading has stopped in HistoryController::goToItem
https://bugs.webkit.org/show_bug.cgi?id=54517
Add a FrameLoaderClient callback for whether to stop loading before goToItem.
Test: http/tests/navigation/forward-to-fragment-fires-onload.html
- WebCoreSupport/FrameLoaderClientGtk.cpp: (WebKit::FrameLoaderClientGtk::shouldStopLoadingForHistoryItem): Added.
- WebCoreSupport/FrameLoaderClientGtk.h:
2011-02-19 Charlie Reis <creis@chromium.org>
Reviewed by Mihai Parparita.
Ensure loading has stopped in HistoryController::goToItem
https://bugs.webkit.org/show_bug.cgi?id=54517
Add a FrameLoaderClient callback for whether to stop loading before goToItem.
Test: http/tests/navigation/forward-to-fragment-fires-onload.html
- WebCoreSupport/FrameLoaderClientHaiku.cpp: (WebCore::FrameLoaderClientHaiku::shouldStopLoadingForHistoryItem): Added.
- WebCoreSupport/FrameLoaderClientHaiku.h:
2011-02-19 Charlie Reis <creis@chromium.org>
Reviewed by Mihai Parparita.
Ensure loading has stopped in HistoryController::goToItem
https://bugs.webkit.org/show_bug.cgi?id=54517
Add a FrameLoaderClient callback for whether to stop loading before goToItem.
Test: http/tests/navigation/forward-to-fragment-fires-onload.html
- WebCoreSupport/WebFrameLoaderClient.mm: (WebFrameLoaderClient::shouldStopLoadingForHistoryItem): Added.
- WebCoreSupport/WebFrameLoaderClient.h:
2011-02-19 Charlie Reis <creis@chromium.org>
Reviewed by Mihai Parparita.
Ensure loading has stopped in HistoryController::goToItem
https://bugs.webkit.org/show_bug.cgi?id=54517
Add a FrameLoaderClient callback for whether to stop loading before goToItem.
Test: http/tests/navigation/forward-to-fragment-fires-onload.html
- WebCoreSupport/FrameLoaderClientQt.cpp: (WebCore::FrameLoaderClientQt::shouldStopLoadingForHistoryItem): Added.
- WebCoreSupport/FrameLoaderClientQt.h:
2011-02-19 Charlie Reis <creis@chromium.org>
Reviewed by Mihai Parparita.
Ensure loading has stopped in HistoryController::goToItem
https://bugs.webkit.org/show_bug.cgi?id=54517
Add a FrameLoaderClient callback for whether to stop loading before goToItem.
Test: http/tests/navigation/forward-to-fragment-fires-onload.html
- WebCoreSupport/WebFrameLoaderClient.cpp: (WebFrameLoaderClient::shouldStopLoadingForHistoryItem): Added.
- WebCoreSupport/WebFrameLoaderClient.h:
2011-02-19 Charlie Reis <creis@chromium.org>
Reviewed by Mihai Parparita.
Ensure loading has stopped in HistoryController::goToItem
https://bugs.webkit.org/show_bug.cgi?id=54517
Add a FrameLoaderClient callback for whether to stop loading before goToItem.
Test: http/tests/navigation/forward-to-fragment-fires-onload.html
- WebCoreSupport/FrameLoaderClientWinCE.cpp: (WebKit::FrameLoaderClientWinCE::shouldStopLoadingForHistoryItem): Added.
- WebCoreSupport/FrameLoaderClientWinCE.h:
2011-02-19 Charlie Reis <creis@chromium.org>
Reviewed by Mihai Parparita.
Ensure loading has stopped in HistoryController::goToItem
https://bugs.webkit.org/show_bug.cgi?id=54517
Add a FrameLoaderClient callback for whether to stop loading before goToItem.
Test: http/tests/navigation/forward-to-fragment-fires-onload.html
- WebKitSupport/FrameLoaderClientWx.cpp: (WebCore::FrameLoaderClientWx::shouldStopLoadingForHistoryItem): Added.
- WebKitSupport/FrameLoaderClientWx.h:
2011-02-19 Charlie Reis <creis@chromium.org>
Reviewed by Mihai Parparita.
Ensure loading has stopped in HistoryController::goToItem
https://bugs.webkit.org/show_bug.cgi?id=54517
Add a FrameLoaderClient callback for whether to stop loading before goToItem.
Test: http/tests/navigation/forward-to-fragment-fires-onload.html
- WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp: (WebFrameLoaderClient::shouldStopLoadingForHistoryItem): Added.
- WebProcess/WebCoreSupport/WebFrameLoaderClient.h:
- 12:12 AM Changeset in webkit [79106] by
-
- 5 edits in trunk
2011-02-19 Adam Barth <abarth@webkit.org>
Reviewed by Daniel Bates.
Fix xssAuditor/iframe-injection.html
https://bugs.webkit.org/show_bug.cgi?id=54591
Update expected results to show that we pass.
- http/tests/security/xssAuditor/iframe-injection-expected.txt:
2011-02-19 Adam Barth <abarth@webkit.org>
Reviewed by Daniel Bates.
Fix xssAuditor/iframe-injection.html
https://bugs.webkit.org/show_bug.cgi?id=54591
We should block the iframe src attribute. Although this technically
can't be used to run script, it's a pretty easy vector for stealing
passwords.
- html/parser/XSSFilter.cpp: (WebCore::XSSFilter::filterTokenInitial): (WebCore::XSSFilter::filterIframeToken):
- html/parser/XSSFilter.h:
- 12:07 AM Changeset in webkit [79105] by
-
- 2 edits in trunk/Tools
2011-02-19 Lukasz Slachciak <l.slachciak@samsung.com>
Reviewed by Andreas Kling.
Fixed problem with launching EWebLauncher with "run-launcher --efl". Incorrect path referring to non-existing .libs directory ws set.
https://webkit.org/b/54778
- Scripts/webkitdirs.pm:
Feb 18, 2011:
- 11:57 PM Changeset in webkit [79104] by
-
- 5 edits in trunk/Source/WebCore
2011-02-18 Tony Gentilcore <tonyg@chromium.org>
Reviewed by Eric Seidel.
Let the parser yield for layout before running scripts
https://bugs.webkit.org/show_bug.cgi?id=54355
Prior to this patch, the parser would yield to perform a layout/paint before running a
script only if the script or a stylesheet blocking the script is not loaded yet. Since we
don't preload scan into the body while parsing the head, typically we'll block on a script
early in the body that causes us to yield to do the first paint within a reasonable time.
However, I'm planning to change the PreloadScanner to scan into the body from the head.
That significantly improves overall load time, but would hurt first paint time because
fewer scripts would be blocked during parsing and thus wouldn't yield.
This change causes us to yield before running scripts if we haven't painted yet (regardless
of whether or not the script is loaded). In addition to allowing the above mentioned
PreloadScanner change to be implemented without regressing first paint time, this also
improves first paint time by itself.
I tested Alexa's top 45 websites using Web Page Replay to control the content and simulate
bandwidth. This patch improved average first paint time by 1% over an unlimited connection,
6% over a 1Mbps connection and 11% over a 5Mbps connection. There was no statistically
signifcant change in page load time.
Within the pages tested, 33 had no statistically significant change in time to first paint,
12 improved, and none regressed. Of the improved, some of the standouts from the 1Mbps set
are: 20% on youtube, 37% on wiki, 27% on ebay, 13% on cnn, 16% on espn, 74% on sohu.
- html/parser/HTMLDocumentParser.cpp: (WebCore::HTMLDocumentParser::canTakeNextToken): This is the new yield point. (WebCore::HTMLDocumentParser::pumpTokenizer): Remove ASSERT that we are not paused. isPaused means that we are waiting for a script. Bug 54574 changed pumpTokenizer() so that it does the right thing whether we are just before a token or waiting for a script. Now that we may yield before a token or before a script, this may be called while paused.
- html/parser/HTMLParserScheduler.cpp: (WebCore::isLayoutTimerActive): Added a FIXME because r52919 changed minimumLayoutDelay() to return m_extraLayoutDelay instead of 0 as a minimum. So checking !minimumLayoutDelay() no longer works. The fix is to change it to check minimumLayoutDelay() == m_extraLayoutDelay. But this is all the more reason to move this method onto Document. I'll do this in a follow up. (WebCore::HTMLParserScheduler::checkForYieldBeforeScript): Added.
- page/FrameView.h: (WebCore::FrameView::hasEverPainted): Added.
- 11:22 PM Changeset in webkit [79103] by
-
- 2 edits in trunk/Source/WebCore
2011-02-18 Dawit Alemayehu <adawit@kde.org>
Reviewed by Andreas Kling.
[Qt] Button Element is rendered w/ text off-center.
https://bugs.webkit.org/show_bug.cgi?id=53373
Test: LayoutTests/fast/forms/button-white-space.html
- platform/qt/RenderThemeQt.cpp: (WebCore::RenderThemeQt::adjustButtonStyle):
- 10:52 PM Changeset in webkit [79102] by
-
- 3 edits in trunk/Tools
2011-02-18 David Levin <levin@chromium.org>
Reviewed by Eric Seidel.
check-webkit-style: Misses brace style error when the line with the { has a } in it.
https://bugs.webkit.org/show_bug.cgi?id=54769
- Scripts/webkitpy/style/checkers/cpp.py: Fixed the check for the close brace to only look after the last open brace, so that the open brace in this line "} else {" will still be able to trigger the error.
- Scripts/webkitpy/style/checkers/cpp_unittest.py: Added related unit tests.
- 10:16 PM Changeset in webkit [79101] by
-
- 2 edits in trunk/LayoutTests
Unreviewed test expectations fix.
- platform/chromium/test_expectations.txt:
- 10:12 PM Changeset in webkit [79100] by
-
- 1 edit in branches/safari-534.20-branch/Source/WebKit2/ChangeLog
Merge r79048.
- 10:05 PM Changeset in webkit [79099] by
-
- 2 edits in trunk/LayoutTests
Unreviewed test expectations fix.
- platform/chromium/test_expectations.txt:
- 9:57 PM Changeset in webkit [79098] by
-
- 3 edits in trunk/Source/WebKit/qt
2011-02-18 Fabrizio Machado <fabrizio.machado@nokia.com>
Reviewed by Eric Seidel.
Remove reduntant checks.
https://bugs.webkit.org/show_bug.cgi?id=54764
- WebCoreSupport/DumpRenderTreeSupportQt.cpp: (DumpRenderTreeSupportQt::elementDoesAutoCompleteForElementWithId):
- WebCoreSupport/NotificationPresenterClientQt.cpp: (WebCore::NotificationPresenterClientQt::toPage):
- 9:55 PM Changeset in webkit [79097] by
-
- 2 edits in trunk/LayoutTests
Unreviewed. Mark object-clip-rects-assertion.html as timing out.
- platform/chromium/test_expectations.txt:
- 9:53 PM Changeset in webkit [79096] by
-
- 4 edits in trunk
2011-02-18 Zan Dobersek <zandobersek@gmail.com>
Reviewed by Martin Robinson.
[Gtk] Re-enable meter tag support
https://bugs.webkit.org/show_bug.cgi?id=54762
Enable meter tag support in the configure.ac. This feature was
previously enabled by default in the makefile, but should be
enabled here after changes in r78981.
- configure.ac:
2011-02-18 Zan Dobersek <zandobersek@gmail.com>
Reviewed by Martin Robinson.
[Gtk] Re-enable meter tag support
https://bugs.webkit.org/show_bug.cgi?id=54762
Meter tag is supported on the Gtk port, enable it by default.
- Scripts/build-webkit:
- 9:51 PM Changeset in webkit [79095] by
-
- 4 edits in trunk/Tools
2011-02-18 David Levin <levin@chromium.org>
Reviewed by Eric Seidel.
check-webkit-style falsely complains about WebKitGTK+ public headers
https://bugs.webkit.org/show_bug.cgi?id=54650
- Scripts/webkitpy/style/checker.py: Add some exceptions for the gtk files.
- Scripts/webkitpy/style/checkers/cpp.py: Restrict the checks for WEBKIT_API to the chromium directory (and improved the checks slightly).
- Scripts/webkitpy/style/checkers/cpp_unittest.py: Added corresponding tests.
- 9:47 PM Changeset in webkit [79094] by
-
- 2 edits in trunk/LayoutTests
Unreviewed chromium expectations change.
- platform/chromium/test_expectations.txt:
- 9:43 PM Changeset in webkit [79093] by
-
- 2 edits in trunk/Source/WebCore
2011-02-18 Jonathan Backer <backer@chromium.org>
Reviewed by Eric Seidel.
[chromium] Fix leak of texture IDs in compositor.
https://bugs.webkit.org/show_bug.cgi?id=54750
No new tests. It is extremely unlikely that this leak would have
any user visible impact because only a few bytes of space are wasted
(we're leaking texture IDs, not actual textures) and the space of
texture IDs is large (32 bits).
- platform/graphics/chromium/TextureManager.cpp: (WebCore::TextureManager::requestTexture):
- 9:17 PM Changeset in webkit [79092] by
-
- 2 edits in trunk/Source/WebKit/chromium
2011-02-18 Dominic Mazzoni <dmazzoni@google.com>
Reviewed by Dimitri Glazkov.
Marks any actions triggered by performDefaultAction as a user
gesture, so that a user with a screen reader isn't prevented from
performing operations that must be triggered by a user gesture.
https://bugs.webkit.org/show_bug.cgi?id=54759
- src/WebAccessibilityObject.cpp: (WebKit::WebAccessibilityObject::performDefaultAction):
- 9:05 PM Changeset in webkit [79091] by
-
- 2 edits in branches/safari-534.20-branch/Source/WebKit2
Merge r79065.
- 9:02 PM Changeset in webkit [79090] by
-
- 2 edits in trunk/LayoutTests
Unreviewed expectations change for chromium.
- platform/chromium/test_expectations.txt:
- 9:00 PM Changeset in webkit [79089] by
-
- 10 edits in branches/safari-534.20-branch/Source/WebKit2
Merge r79057.
- 8:32 PM Changeset in webkit [79088] by
-
- 2 edits in trunk/LayoutTests
Unreviewed expectations change because my rebaselines didn't seem to work.
- platform/chromium/test_expectations.txt:
- 8:24 PM Changeset in webkit [79087] by
-
- 3 edits in trunk/Source/JavaScriptCore
2011-02-18 Geoffrey Garen <ggaren@apple.com>
Reviewed by Sam Weinig.
Made MarkedSpace block iteration size-class agnostic
https://bugs.webkit.org/show_bug.cgi?id=54792
SunSpider reports no change.
- runtime/MarkedSpace.cpp: (JSC::MarkedSpace::clearMarks): (JSC::MarkedSpace::sweep): (JSC::MarkedSpace::objectCount): (JSC::MarkedSpace::size): (JSC::MarkedSpace::capacity):
- runtime/MarkedSpace.h: (JSC::MarkedSpace::forEach): Iterate blocks in hashing order instead of size class list order. This is a much simpler convention in a world of many different size classes.
- 8:02 PM Changeset in webkit [79086] by
-
- 7 edits in branches/safari-534.20-branch/Source/WebKit2
Merge r79020.
- 7:58 PM Changeset in webkit [79085] by
-
- 2 edits in trunk/Source/WebCore
2011-02-18 Yi Shen <yi.4.shen@nokia.com>
Reviewed by Tor Arne Vestbø.
Always display the media controls when requiresFullscreenForVideoPlayback() is true
https://bugs.webkit.org/show_bug.cgi?id=54308
For video element, it should have controls when
Chrome::requiresFullscreenForVideoPlayback() is true.
- html/HTMLMediaElement.cpp: (WebCore::HTMLMediaElement::controls):
- 7:53 PM Changeset in webkit [79084] by
-
- 4 edits in trunk
2011-02-18 Adrienne Walker <enne@google.com>
Reviewed by Kenneth Russell.
Adjust expectations for chromium GPU tests.
https://bugs.webkit.org/show_bug.cgi?id=54409
https://bugs.webkit.org/show_bug.cgi?id=54509
Correct baselines for the 54409 images will be generated after this lands.
- platform/chromium/test_expectations.txt:
2011-02-18 Adrienne Walker <enne@google.com>
Reviewed by Kenneth Russell.
[chromium] Use nearest-neighbor filtering for root layer.
https://bugs.webkit.org/show_bug.cgi?id=54409
https://bugs.webkit.org/show_bug.cgi?id=54509
This setting creates more consistent images for LayoutTests and
prevents small floating point errors in texture coordinates from
creating off-by-one pixel color differences.
- platform/graphics/chromium/LayerTilerChromium.cpp: (WebCore::LayerTilerChromium::update):
- 7:52 PM Changeset in webkit [79083] by
-
- 3 edits in trunk/Source/JavaScriptCore
2011-02-18 Kristian Amlie <kristian.amlie@nokia.com>
Reviewed by Andreas Kling.
Added friend exception to Qt platform, which also compiles Windows.
QtWebKit fails to compile on Windows XP with msvc-2008
https://bugs.webkit.org/show_bug.cgi?id=54746
- bytecode/CodeBlock.h:
- runtime/RegExpObject.h:
- 7:49 PM Changeset in webkit [79082] by
-
- 3 edits in branches/safari-534.20-branch/Source/WebKit2
Merge r79058.
- 7:46 PM BuildingQtOnLinux edited by
- Added solution provided by kling on irc for fixing Gold Linker Error. (diff)
- 7:45 PM Changeset in webkit [79081] by
-
- 3 edits in branches/safari-534.20-branch/Source/WebKit2
Merge r79023.
- 7:43 PM Changeset in webkit [79080] by
-
- 2 edits in trunk/Source/WebCore
2011-02-18 Gyuyoung Kim <gyuyoung.kim@samsung.com>
Reviewed by Kent Tamura.
[EFL] Fix coding style errors in RenderThemeEfl.h
https://bugs.webkit.org/show_bug.cgi?id=54693
Fix style errors in RenderThemeEfl.h
- platform/efl/RenderThemeEfl.h:
- 7:43 PM Changeset in webkit [79079] by
-
- 3 edits in trunk/Source/JavaScriptCore
2011-02-18 Geoffrey Garen <ggaren@apple.com>
(Rolled back in r79022 with crash fixed.)
Reviewed by Sam Weinig.
Use hashing instead of linear search in the conservative pointer test
https://bugs.webkit.org/show_bug.cgi?id=54767
SunSpider reports no change.
- runtime/MarkedSpace.cpp: (JSC::MarkedSpace::destroy): No need to explicitly clear the blocks array, since freeBlock removes items for us.
(JSC::MarkedSpace::freeBlock): Fixed a typo that always removed the last
block from the block set instead of the block being freed. Changed to
remove a block from our data structures before deallocating it, since
this is slightly cleaner.
- runtime/MarkedSpace.h: (JSC::MarkedSpace::contains): Variable-sized objects will use more, smaller blocks, so it's important for the contains check not to be O(n) in the number of blocks.
- 7:41 PM Changeset in webkit [79078] by
-
- 3 edits in branches/safari-534.20-branch/Source/WebKit2
Merge r78959.
- 7:38 PM Changeset in webkit [79077] by
-
- 2 edits in trunk/Source/WebCore
2011-02-18 Ademar de Souza Reis Jr <Ademar Reis>
Reviewed by Andreas Kling.
[Qt] The localized vendor name for Qt SIS packages should be "Nokia"
https://bugs.webkit.org/show_bug.cgi?id=54742
This change was applied in the Qt repository (qt/src/3rdparty/webkit),
so we should do the same here in QtWebKit.
Patch by Eckhart Koppen <eckhart.koppen@nokia.com>
a8a84f1667966acfa093c4be0b7d4b0900ddd3d9:
The previously used name "Nokia, Qt" was not usable for Nokia
Content Signing, which only allows "Nokia" as the visible vendor
name. The unique vendor ID remains as "Nokia, Qt"
- WebCore.pro:
- 7:35 PM Changeset in webkit [79076] by
-
- 14 edits in branches/safari-534.20-branch/Source/WebKit2
Merge r78956.
- 7:35 PM Changeset in webkit [79075] by
-
- 2 edits in trunk/Source/WebKit/efl
2011-02-18 Gyuyoung Kim <gyuyoung.kim@samsung.com>
Reviewed by Kent Tamura.
[EFL] Fix coding style errors in ewk_frame.h
https://bugs.webkit.org/show_bug.cgi?id=54718
Fix style errors in ewk_frame.h.
- ewk/ewk_frame.h:
- 7:31 PM Changeset in webkit [79074] by
-
- 2 edits in trunk/Source/WebCore
2011-02-18 Alexis Menard <alexis.menard@openbossa.org>
Reviewed by Andreas Kling.
[Qt] REGRESSION(r67516) : on www.gmail.com a strange rendering issue appears on the
menu bar due to flash.
https://bugs.webkit.org/show_bug.cgi?id=54741
Only show plugins with a valid size. We then don't involve X11 if there is
nothing to see anyway.
- plugins/qt/PluginViewQt.cpp: (WebCore::PluginView::updatePluginWidget): (WebCore::PluginView::platformStart):
- 7:27 PM Changeset in webkit [79073] by
-
- 2 edits in branches/safari-534.20-branch/Source/WebKit2
Merge r79050.
- 7:25 PM Changeset in webkit [79072] by
-
- 2 edits in trunk
2011-02-18 Kristian Amlie <kristian.amlie@nokia.com>
Reviewed by Kenneth Rohde Christiansen.
Avoided UiTools dependency if the module is not present.
[Qt] WebKit patches required to work with a modularized version of Qt
https://bugs.webkit.org/show_bug.cgi?id=53916
- Source/WebKit.pri:
- 7:23 PM Changeset in webkit [79071] by
-
- 2 edits in branches/safari-534.20-branch/Source/WebKit2
Merge r79059.
- 7:20 PM Changeset in webkit [79070] by
-
- 2 edits in trunk/Source/WebKit/efl
2011-02-18 Gyuyoung Kim <gyuyoung.kim@samsung.com>
Reviewed by Antonio Gomes.
[EFL] Remove proxy feature of soup when proxy is null
https://bugs.webkit.org/show_bug.cgi?id=54621
When proxy value is NULL, remove proxy feature in soup.
- ewk/ewk_settings.cpp: (ewk_settings_proxy_uri_set):
- 7:13 PM Changeset in webkit [79069] by
-
- 5 edits in trunk
2011-02-18 Ryuan Choi <ryuan.choi@samsung.com>
Reviewed by Kent Tamura.
[EFL] Remove GDK dependency.
https://bugs.webkit.org/show_bug.cgi?id=53978
Remove checking GDK library.
- Source/cmake/OptionsEfl.cmake:
2011-02-18 Ryuan Choi <ryuan.choi@samsung.com>
Reviewed by Kent Tamura.
[EFL] Remove GDK dependency.
https://bugs.webkit.org/show_bug.cgi?id=53978
Remove GLIB_SUPPORT macro in GDK related code.
Regardless of GLIB_SUPPORT, getDefaultFontOptions() will works same way.
- CMakeListsEfl.txt:
- platform/graphics/freetype/FontPlatformDataFreeType.cpp: (WebCore::getDefaultFontOptions):
- 7:09 PM Changeset in webkit [79068] by
-
- 4 edits in branches/safari-534.20-branch/Source/WebCore
Merge r79053.
- 7:07 PM Changeset in webkit [79067] by
-
- 3 edits in trunk/Source/WebKit/efl
2011-02-18 Gyuyoung Kim <gyuyoung.kim@samsung.com>
Reviewed by Kent Tamura.
[EFL] Fix coding style errors in ewk_view.h
https://bugs.webkit.org/show_bug.cgi?id=54624
Fix style errors in ewk_view.h.
- ewk/ewk_view.cpp: (ewk_view_pre_render_relative_radius):
- ewk/ewk_view.h:
- 7:04 PM Changeset in webkit [79066] by
-
- 2 edits in trunk/LayoutTests
2011-02-18 Peter Kasting <pkasting@google.com>
Reviewed by James Robinson.
https://bugs.webkit.org/show_bug.cgi?id=54605
Remove some time limits in a test, let test harnesses kill the test if
it runs long. Also changes a busy loop from 1 ms to 5 ms repeats since
this should be much less CPU at little visible cost.
- http/tests/security/resources/cross-frame-access.js: (canAccessFrame.test): (canAccessFrame): (cannotAccessFrame.test): (cannotAccessFrame): (closeWindowAndNotifyDone.doneHandler): (closeWindowAndNotifyDone):
- 7:02 PM Changeset in webkit [79065] by
-
- 2 edits in branches/safari-534.20-branch/Source/WebKit2
Merge r79048.
- 6:22 PM Changeset in webkit [79064] by
-
- 3 edits in trunk/Source/WebKit2
Real fix for <rdar://problem/9025723> CrashTracer: [USER]
1 crash in WebProcess at com.apple.WebKit2:
WebKit::WebPage::didChangeScrollOffsetForMainFrame + 31
Reviewed by Adele Peterson.
- WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:
(WebKit::WebFrameLoaderClient::didChangeScrollOffset):
Add null check for the FrameView. This function can be called when the
FrameView is being torn down during a transition to a new FrameView.
- WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::didChangeScrollOffsetForMainFrame):
Revert last attempt.
- 6:18 PM Changeset in webkit [79063] by
-
- 2 edits in trunk/Source/WebCore
2011-02-18 Noel Gordon <noel.gordon@gmail.com>
Reviewed by James Robinson.
[Chromium] Add elliptical gradient support to GradientSkia
https://bugs.webkit.org/show_bug.cgi?id=51841
Covered by existing tests, these need new rebaselines once this patch
lands for chrome linux, win32
fast/gradients/css3-color-stop-units.html
fast/gradients/css3-color-stops.html
fast/gradients/css3-linear-angle-gradients.html
fast/gradients/css3-radial-gradients.html
fast/gradients/css3-radial-gradients2.html
fast/gradients/css3-radial-gradients3.html
fast/gradients/css3-repeating-radial-gradients.html
- platform/graphics/skia/GradientSkia.cpp: (WebCore::Gradient::platformGradient):
- 6:18 PM Changeset in webkit [79062] by
-
- 6 edits in trunk/Tools
2011-02-18 Dirk Pranke <dpranke@chromium.org>
Reviewed by James Robinson.
new-run-webkit-tests: enable multiple processes by default on
mac. This change removes the artificial restrictions we placed
on the # of child processes we used with the old threading
model, and switches to the new message-based model and multiple
processes, where available. If multiple processes are not
available (Leopard / Python 2.5), then we use the 'inline' model
instead of the 'old-threads' model on the 'mac' port or one
process on the 'chromium-mac' port. We need additional testing
to see if the new 'threads' model works reliably and is worth
supporting, or if we should just live with things being slightly
slow.
- Scripts/webkitpy/layout_tests/port/chromium_mac.py:
- Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
- Scripts/webkitpy/layout_tests/port/mac.py:
- Scripts/webkitpy/layout_tests/port/mac_unittest.py:
- Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
- 6:08 PM Changeset in webkit [79061] by
-
- 2 edits in branches/safari-534.20-branch/Source/WebKit2
Merge r78832.
- 5:43 PM Changeset in webkit [79060] by
-
- 5 edits in trunk
2011-02-18 chris reiss <christopher.reiss@nokia.com>
Reviewed by Andreas Kling.
REGRESSION: Date.parse("Tue Nov 23 20:40:05 2010 GMT") returns NaN
https://bugs.webkit.org/show_bug.cgi?id=49989
- fast/js/date-parse-test-expected.txt:
- fast/js/script-tests/date-parse-test.js:
2011-02-18 chris reiss <christopher.reiss@nokia.com>
Reviewed by Andreas Kling.
REGRESSION: Date.parse("Tue Nov 23 20:40:05 2010 GMT") returns NaN
https://bugs.webkit.org/show_bug.cgi?id=49989
updated test fast/js/script-tests/date-parse-test.js
- wtf/DateMath.cpp: (WTF::parseDateFromNullTerminatedCharacters):
- 5:43 PM Changeset in webkit [79059] by
-
- 2 edits in trunk/Source/WebKit2
Hang trying to load nytimes.com with Flash installed
<rdar://problem/9018113>
Reviewed by Sam Weinig.
- Platform/CoreIPC/Connection.cpp:
(CoreIPC::Connection::sendSyncMessage):
Call beginWaitForSyncReply() before sending the message. Otherwise, in some cases we could
have gotten back a synchronous request before calling beginWaitForSyncReply(), and then we wouldn't
process it correctly. (Which would lead to the hang).
- 5:41 PM Changeset in webkit [79058] by
-
- 3 edits in trunk/Source/WebKit2
2011-02-18 Simon Fraser <Simon Fraser>
Reviewed by Kevin Decker.
<rdar://problem/9021296> Some plug-ins are the wrong size after zooming
Use the same frame/bounds adjustment that we use for NSView-based
plugins in WebKit2, which allows plug-ins and their snapshots to
render with the correct size after scaling.
- WebProcess/Plugins/PluginView.cpp: (WebKit::PluginView::setBoundsSize): (WebKit::PluginView::viewGeometryDidChange): (WebKit::PluginView::clipRectInWindowCoordinates):
- WebProcess/Plugins/PluginView.h:
- 5:31 PM Changeset in webkit [79057] by
-
- 2 edits in trunk/Source/WebKit2
Fix for <rdar://problem/9025723> CrashTracer: [USER]
1 crash in WebProcess at com.apple.WebKit2:
WebKit::WebPage::didChangeScrollOffsetForMainFrame + 31
Rubber-stamped by Adele Peterson.
Simple null-check.
- WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::didChangeScrollOffsetForMainFrame):
- 5:23 PM Changeset in webkit [79056] by
-
- 2 edits in trunk/Source/WebCore
2011-02-18 James Robinson <jamesr@chromium.org>
Fix typo in boundary test in ASSERT() - test is for an inclusive range, not exclusive.
- platform/graphics/chromium/ContentLayerChromium.cpp: (WebCore::ContentLayerChromium::updateTextureIfNeeded):
- 5:15 PM Changeset in webkit [79055] by
-
- 3 edits in trunk/Tools
2011-02-18 Andrew Wilson <atwilson@chromium.org>
Unreviewed, rolling out r79047.
http://trac.webkit.org/changeset/79047
https://bugs.webkit.org/show_bug.cgi?id=54596
Broke canary bots - please watch the canaries the next time
you land this
- Scripts/webkitpy/layout_tests/port/chromium_mac.py:
- Scripts/webkitpy/layout_tests/port/mac.py:
- 5:11 PM Changeset in webkit [79054] by
-
- 4 edits in trunk/Source
2011-02-18 Viatcheslav Ostapenko <ostapenko.viatcheslav@nokia.com>
Reviewed by Kenneth Rohde Christiansen.
Tiled backing store area is too big.
Error in area calculcation causes size of backing store
up to 6 times bigger than viewport with default multipliers.
https://bugs.webkit.org/show_bug.cgi?id=54587
- platform/graphics/TiledBackingStore.cpp: (WebCore::TiledBackingStore::createTiles):
2011-02-18 Viatcheslav Ostapenko <ostapenko.viatcheslav@nokia.com>
Reviewed by Kenneth Rohde Christiansen.
Tiled backing store area is too big.
Error in area calculcation causes size of backing store
up to 8 times bigger than viewport with default multipliers.
https://bugs.webkit.org/show_bug.cgi?id=54587
- UIProcess/TiledDrawingAreaProxy.cpp: (WebKit::TiledDrawingAreaProxy::calculateKeepRect): (WebKit::TiledDrawingAreaProxy::calculateCoverRect):
- 5:05 PM Changeset in webkit [79053] by
-
- 4 edits in trunk/Source/WebCore
Fix for <rdar://problem/9018729> Horizontal scroller doesn't
appear when loading a page with a Horizontal scrollbar from
the back/forward cache.
Reviewed by Sam Weinig.
This patch adds a new bool member variable to FrameView to
keep track of whether we are loading a page from the back/
forward cache. If we are, don't suppress scrollbars on
first layout.
- history/CachedFrame.cpp:
(WebCore::CachedFrameBase::restore):
- page/FrameView.cpp:
(WebCore::FrameView::FrameView):
(WebCore::FrameView::reset):
(WebCore::FrameView::layout):
- page/FrameView.h:
(WebCore::FrameView::setIsRestoringFromBackForward):
(WebCore::FrameView::isRestoringFromBackForward):
- 5:00 PM Changeset in webkit [79052] by
-
- 4 edits in trunk/Source/WebCore
2011-02-18 Patrick Gansterer <Patrick Gansterer>
Unreviewed WinCE build fix for r78846.
- platform/graphics/wince/FontWinCE.cpp: (WebCore::TextRunComponent::TextRunComponent):
- platform/graphics/wince/GraphicsContextWinCE.cpp: (WebCore::GraphicsContext::drawLineForText): (WebCore::GraphicsContext::drawLineForTextChecking): (WebCore::GraphicsContext::drawText):
- platform/wince/FileChooserWinCE.cpp: (WebCore::FileChooser::basenameForWidth):
- 4:49 PM Changeset in webkit [79051] by
-
- 4 edits in trunk/Source/WebKit
2011-02-18 Patrick Gansterer <Patrick Gansterer>
- CMakeLists.txt:
2011-02-18 Patrick Gansterer <Patrick Gansterer>
- CMakeListsEfl.txt:
- 4:48 PM Changeset in webkit [79050] by
-
- 2 edits in trunk/Source/WebKit2
<rdar://problem/9026169>
https://bugs.webkit.org/show_bug.cgi?id=54780
pendingAPIRequestURL isn't updated for WKPageGoToBackForwardListItem
Reviewed by Maciej Stachowiak.
- UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::goToBackForwardItem):
Update the pending API URL.
- 4:42 PM Changeset in webkit [79049] by
-
- 8 edits2 adds in trunk
2011-02-18 Emil A Eklund <eae@chromium.org>
Reviewed by Darin Adler.
Crash in EventHandler::sendContextMenuEventForKey
https://bugs.webkit.org/show_bug.cgi?id=54495
Add test for triggering the context menu key event (VK_APPS) on a hidden
element.
- fast/events/menu-keydown-on-hidden-element-expected.txt: Added.
- fast/events/menu-keydown-on-hidden-element.html: Added.
2011-02-18 Emil A Eklund <eae@chromium.org>
Reviewed by Darin Adler.
Crash in EventHandler::sendContextMenuEventForKey
https://bugs.webkit.org/show_bug.cgi?id=54495
Test: fast/events/menu-keydown-on-hidden-element.html
- page/EventHandler.cpp: (WebCore::EventHandler::sendContextMenuEventForKey): Add null check.
2011-02-18 Emil A Eklund <eae@chromium.org>
Reviewed by Darin Adler.
Crash in EventHandler::sendContextMenuEventForKey
https://bugs.webkit.org/show_bug.cgi?id=54495
Add support for the context menu key (VK_APPS) to EventSender for
platforms that support the key.
- DumpRenderTree/chromium/EventSender.cpp: (EventSender::keyDown):
- DumpRenderTree/gtk/EventSender.cpp: (keyDownCallback):
- DumpRenderTree/qt/EventSenderQt.cpp: (EventSender::keyDown):
- DumpRenderTree/win/EventSender.cpp: (keyDownCallback):
- 4:32 PM Changeset in webkit [79048] by
-
- 2 edits in trunk/Source/WebKit2
Accelerated content fades in when using a layer backed WKView
<rdar://problem/9021586>
Reviewed by Sam Weinig.
- UIProcess/API/mac/WKView.mm:
(-[WKView _enterAcceleratedCompositingMode:]):
Make a new nested CATransaction and disable animations when adding the layer
hosting subview. This avoids an implicit fade animation that would otherwise occur.
- 3:53 PM Changeset in webkit [79047] by
-
- 3 edits in trunk/Tools
2011-02-18 Dirk Pranke <dpranke@chromium.org>
Reviewed by Ojan Vafai.
new-run-webkit-tests: enable multiple processes by default on mac
https://bugs.webkit.org/show_bug.cgi?id=54596
- Scripts/webkitpy/layout_tests/port/chromium_mac.py:
- Scripts/webkitpy/layout_tests/port/mac.py:
- 3:47 PM Changeset in webkit [79046] by
-
- 2 edits in trunk/Tools
2011-02-18 Dirk Pranke <dpranke@chromium.org>
Reviewed by Adam Roben.
Skip pretty patch unit tests if ruby isn't installed.
- Scripts/webkitpy/common/prettypatch_unittest.py:
- 3:42 PM Changeset in webkit [79045] by
-
- 2 edits in trunk/Tools
2011-02-18 Dirk Pranke <dpranke@chromium.org>
Reviewed by Adam Roben.
Skip mac.test_skipped_file_paths() when running on win32; the
test has hardcoded '/' directory separators and since it's a
port-specific test and we have coverage on other ports it's not
worth it to make the test more generic.
- Scripts/webkitpy/layout_tests/port/mac_unittest.py:
- 3:42 PM Changeset in webkit [79044] by
-
- 12 edits1 copy694 adds in trunk/LayoutTests
Unreviewed.
[Qt] Add Qt specific expected results for passing svg/custom tests.
- platform/qt/Skipped: Unskip passing tests.
- platform/qt/svg/custom/ [...] : Added.
- 3:39 PM Changeset in webkit [79043] by
-
- 18 edits1 copy5 adds in trunk/Source/WebCore
2011-02-15 Adrienne Walker <enne@google.com>
Reviewed by James Robinson.
[chromium] Clean up shader code from LayerChromium classes
https://bugs.webkit.org/show_bug.cgi?id=54484
This is a refactoring and there should be no change in functionality.
All shader code is pulled out into classes in ShaderChromium.
The SharedValues classes are now turned into ProgramBinding, one per
shader program. These contain shader classes that know about what
variables they can bind.
- WebCore.gypi:
- platform/graphics/chromium/CanvasLayerChromium.cpp: (WebCore::CanvasLayerChromium::draw):
- platform/graphics/chromium/CanvasLayerChromium.h:
- platform/graphics/chromium/ContentLayerChromium.cpp: (WebCore::ContentLayerChromium::draw):
- platform/graphics/chromium/ContentLayerChromium.h:
- platform/graphics/chromium/GeometryBinding.cpp: Added. (WebCore::GeometryBinding::GeometryBinding): (WebCore::GeometryBinding::~GeometryBinding): (WebCore::GeometryBinding::prepareForDraw):
- platform/graphics/chromium/GeometryBinding.h: Copied from Source/WebCore/platform/graphics/chromium/PluginLayerChromium.h. (WebCore::GeometryBinding::initialized): (WebCore::GeometryBinding::context): (WebCore::GeometryBinding::quadVerticesVbo): (WebCore::GeometryBinding::quadElementsVbo): (WebCore::GeometryBinding::positionAttribLocation): (WebCore::GeometryBinding::texCoordAttribLocation):
- platform/graphics/chromium/LayerChromium.cpp: (WebCore::LayerChromium::drawDebugBorder):
- platform/graphics/chromium/LayerChromium.h:
- platform/graphics/chromium/LayerRendererChromium.cpp: (WebCore::LayerRendererChromium::drawLayers): (WebCore::LayerRendererChromium::initializeSharedObjects): (WebCore::LayerRendererChromium::cleanupSharedObjects):
- platform/graphics/chromium/LayerRendererChromium.h: (WebCore::LayerRendererChromium::sharedGeometry): (WebCore::LayerRendererChromium::borderProgram): (WebCore::LayerRendererChromium::contentLayerProgram): (WebCore::LayerRendererChromium::canvasLayerProgram): (WebCore::LayerRendererChromium::videoLayerRGBAProgram): (WebCore::LayerRendererChromium::videoLayerYUVProgram): (WebCore::LayerRendererChromium::pluginLayerProgram): (WebCore::LayerRendererChromium::renderSurfaceProgram): (WebCore::LayerRendererChromium::renderSurfaceMaskProgram): (WebCore::LayerRendererChromium::tilerProgram):
- platform/graphics/chromium/LayerTilerChromium.cpp: (WebCore::LayerTilerChromium::draw): (WebCore::LayerTilerChromium::drawTexturedQuad):
- platform/graphics/chromium/LayerTilerChromium.h:
- platform/graphics/chromium/PluginLayerChromium.cpp: (WebCore::PluginLayerChromium::draw):
- platform/graphics/chromium/PluginLayerChromium.h:
- platform/graphics/chromium/ProgramBinding.cpp: Added. (WebCore::ProgramBindingBase::ProgramBindingBase): (WebCore::ProgramBindingBase::~ProgramBindingBase): (WebCore::ProgramBindingBase::init): (WebCore::ProgramBindingBase::loadShader): (WebCore::ProgramBindingBase::createShaderProgram):
- platform/graphics/chromium/ProgramBinding.h: Added. (WebCore::ProgramBindingBase::program): (WebCore::ProgramBindingBase::initialized): (WebCore::ProgramBinding::ProgramBinding): (WebCore::ProgramBinding::vertexShader): (WebCore::ProgramBinding::fragmentShader):
- platform/graphics/chromium/RenderSurfaceChromium.cpp: (WebCore::RenderSurfaceChromium::drawSurface):
- platform/graphics/chromium/RenderSurfaceChromium.h:
- platform/graphics/chromium/ShaderChromium.cpp: Added. (WebCore::VertexShaderPosTex::VertexShaderPosTex): (WebCore::VertexShaderPosTex::init): (WebCore::VertexShaderPosTex::getShaderString): (WebCore::VertexShaderPosTexYUVStretch::VertexShaderPosTexYUVStretch): (WebCore::VertexShaderPosTexYUVStretch::init): (WebCore::VertexShaderPosTexYUVStretch::getShaderString): (WebCore::VertexShaderPos::VertexShaderPos): (WebCore::VertexShaderPos::init): (WebCore::VertexShaderPos::getShaderString): (WebCore::VertexShaderPosTexTransform::VertexShaderPosTexTransform): (WebCore::VertexShaderPosTexTransform::init): (WebCore::VertexShaderPosTexTransform::getShaderString): (WebCore::FragmentTexAlphaBinding::FragmentTexAlphaBinding): (WebCore::FragmentTexAlphaBinding::init): (WebCore::FragmentShaderRGBATexFlipAlpha::getShaderString): (WebCore::FragmentShaderRGBATexAlpha::getShaderString): (WebCore::FragmentShaderBGRATexAlpha::getShaderString): (WebCore::FragmentShaderRGBATexAlphaMask::FragmentShaderRGBATexAlphaMask): (WebCore::FragmentShaderRGBATexAlphaMask::init): (WebCore::FragmentShaderRGBATexAlphaMask::getShaderString): (WebCore::FragmentShaderYUVVideo::FragmentShaderYUVVideo): (WebCore::FragmentShaderYUVVideo::init): (WebCore::FragmentShaderYUVVideo::getShaderString): (WebCore::FragmentShaderColor::FragmentShaderColor): (WebCore::FragmentShaderColor::init): (WebCore::FragmentShaderColor::getShaderString):
- platform/graphics/chromium/ShaderChromium.h: Added. (WebCore::VertexShaderPosTex::matrixLocation): (WebCore::VertexShaderPosTexYUVStretch::matrixLocation): (WebCore::VertexShaderPosTexYUVStretch::yWidthScaleFactorLocation): (WebCore::VertexShaderPosTexYUVStretch::uvWidthScaleFactorLocation): (WebCore::VertexShaderPos::matrixLocation): (WebCore::VertexShaderPosTexTransform::matrixLocation): (WebCore::VertexShaderPosTexTransform::texTransformLocation): (WebCore::FragmentTexAlphaBinding::alphaLocation): (WebCore::FragmentTexAlphaBinding::samplerLocation): (WebCore::FragmentShaderRGBATexAlphaMask::alphaLocation): (WebCore::FragmentShaderRGBATexAlphaMask::samplerLocation): (WebCore::FragmentShaderRGBATexAlphaMask::maskSamplerLocation): (WebCore::FragmentShaderYUVVideo::yTextureLocation): (WebCore::FragmentShaderYUVVideo::uTextureLocation): (WebCore::FragmentShaderYUVVideo::vTextureLocation): (WebCore::FragmentShaderYUVVideo::alphaLocation): (WebCore::FragmentShaderYUVVideo::ccMatrixLocation): (WebCore::FragmentShaderYUVVideo::signAdjLocation): (WebCore::FragmentShaderColor::colorLocation):
- platform/graphics/chromium/VideoLayerChromium.cpp: (WebCore::VideoLayerChromium::draw): (WebCore::VideoLayerChromium::drawYUV): (WebCore::VideoLayerChromium::drawRGBA):
- platform/graphics/chromium/VideoLayerChromium.h:
- 3:39 PM Changeset in webkit [79042] by
-
- 2 edits in trunk/Tools
2011-02-18 Dirk Pranke <dpranke@chromium.org>
Reviewed by Adam Roben.
Fix webkitpy.layout_tests.port.config_unittest to work on Win32.
- Scripts/webkitpy/layout_tests/port/config_unittest.py:
- 3:34 PM Changeset in webkit [79041] by
-
- 2 edits in trunk/Tools
2011-02-18 Dirk Pranke <dpranke@chromium.org>
Reviewed by Adam Roben.
Change the default port we're mocking out on win32 when we
run mock_drt_unittest. Normally we'd default to the
port-specific default, but that would be "win", which doesn't
currently work.
- Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
- 3:27 PM Changeset in webkit [79040] by
-
- 2 edits in trunk/Source/WebKit2
2011-02-18 Simon Fraser <Simon Fraser>
Reviewed by Dan Bernstein.
Plugin snapshot location is wrong for subframes
https://bugs.webkit.org/show_bug.cgi?id=54776
Only change the CTM to the way that the plugin expects it
when painting the plugin, not when drawing the snapshot.
This fixes the snapshot location when painting flattened
frames.
- WebProcess/Plugins/PluginView.cpp: (WebKit::PluginView::paint):
- 3:21 PM Changeset in webkit [79039] by
-
- 2 edits in trunk/LayoutTests
Unreviewed expectations change.
- platform/chromium/test_expectations.txt:
- 3:20 PM Changeset in webkit [79038] by
-
- 5 edits in trunk
2011-02-18 Kenneth Russell <kbr@google.com>
Reviewed by James Robinson.
[chromium] Clean up initialization of minimum timer interval
https://bugs.webkit.org/show_bug.cgi?id=54772
Rolled forward Chromium DEPS to pick up new webkit_support entry
point. Removed setting of default minimum timer interval, as this
is now done every time WebPreferences are applied.
Tested with Chromium DRT port built from WebKit workspace; ran
fast/dom/ layout tests.
- DEPS:
- src/WebKit.cpp: (WebKit::initialize):
2011-02-18 Kenneth Russell <kbr@google.com>
Reviewed by James Robinson.
[chromium] Clean up initialization of minimum timer interval
https://bugs.webkit.org/show_bug.cgi?id=54772
Use new GetForegroundTabTimerInterval function in webkit_support
to reset the minimum timer interval before each test.
- DumpRenderTree/chromium/WebViewHost.cpp: (WebViewHost::reset):
- 3:07 PM Changeset in webkit [79037] by
-
- 2 edits in trunk/Source/JavaScriptCore
Unreviewed, rolling out r79022.
http://trac.webkit.org/changeset/79022
https://bugs.webkit.org/show_bug.cgi?id=54775
Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-02-18
It broke the whole world (Requested by Ossy on #webkit).
- runtime/MarkedSpace.h:
(JSC::MarkedSpace::contains):
- 2:58 PM Changeset in webkit [79036] by
-
- 2 edits in trunk/Tools
2011-02-18 Dirk Pranke <dpranke@chromium.org>
Reviewed by Adam Roben.
r78494 fixed the chromium_win unittest failing under win32,
but not cygwin. This fixes cygwin as well.
- Scripts/webkitpy/layout_tests/port/chromium_win.py:
- 2:48 PM Changeset in webkit [79035] by
-
- 6 edits in trunk/Tools
2011-02-18 Dirk Pranke <dpranke@chromium.org>
Reviewed by Ojan Vafai, Mihai Parparita.
new-run-webkit-tests: r78522 made it impossible to create a
'chromium-win' or 'chromium-mac' port; they would always get the
version tacked on to the end. It turns out that we actually need
to be able to create these ports in order for
rebaseline-chromium-webkit-tests to work correctly given the
broken coverage of our layout bots. As soon as we get SL and
Win 7 bots running reliably on the canaries, we can get rid of
this change. Note that we only need to change the chromium_mac
and win ports because linux doesn't yet use versions and that
script doesn't work with non-chromium ports.
Also, this change fixes a bug where we were using
"platform/chromium-win-win7" and
"platform/chromium-mac-snowleopard" as the baseline dirs for
Win 7 and SL; we should've been using the generic directories
instead since they are the newest versions of the os's.
- Scripts/webkitpy/layout_tests/port/chromium_mac.py:
- Scripts/webkitpy/layout_tests/port/chromium_mac_unittest.py:
- Scripts/webkitpy/layout_tests/port/chromium_win.py:
- Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
- Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
- 2:21 PM Changeset in webkit [79034] by
-
- 112 edits449 adds16 deletes in trunk/LayoutTests
Unreviewed rebaselines for Chromium.
- platform/chromium-mac/compositing/reflections/deeply-nested-reflections-expected.checksum: Added.
- platform/chromium-mac/compositing/reflections/deeply-nested-reflections-expected.png: Added.
- platform/chromium-mac/css1/box_properties/clear_float-expected.checksum:
- platform/chromium-mac/css1/box_properties/clear_float-expected.png:
- platform/chromium-mac/css1/box_properties/float_elements_in_series-expected.checksum: Added.
- platform/chromium-mac/css1/box_properties/float_elements_in_series-expected.png: Added.
- platform/chromium-mac/css1/box_properties/float_on_text_elements-expected.checksum:
- platform/chromium-mac/css1/box_properties/float_on_text_elements-expected.png:
- platform/chromium-mac/css1/text_properties/text_align-expected.checksum: Added.
- platform/chromium-mac/css1/text_properties/text_align-expected.png: Added.
- platform/chromium-mac/css2.1/t0805-c5518-brdr-t-01-e-expected.checksum: Added.
- platform/chromium-mac/css2.1/t0805-c5518-brdr-t-01-e-expected.png: Added.
- platform/chromium-mac/css2.1/t0905-c5525-fltcont-00-d-g-expected.checksum:
- platform/chromium-mac/css2.1/t0905-c5525-fltcont-00-d-g-expected.png:
- platform/chromium-mac/css2.1/t0905-c5525-fltwidth-00-c-g-expected.checksum:
- platform/chromium-mac/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png:
- platform/chromium-mac/css2.1/t1202-counter-03-b-expected.checksum: Added.
- platform/chromium-mac/css2.1/t1202-counter-03-b-expected.png: Added.
- platform/chromium-mac/css2.1/t1202-counter-04-b-expected.checksum: Added.
- platform/chromium-mac/css2.1/t1202-counter-04-b-expected.png: Added.
- platform/chromium-mac/css2.1/t1202-counter-04-b-expected.txt: Added.
- platform/chromium-mac/css2.1/t1202-counters-03-b-expected.checksum: Added.
- platform/chromium-mac/css2.1/t1202-counters-03-b-expected.png: Added.
- platform/chromium-mac/css2.1/t1202-counters-04-b-expected.checksum: Added.
- platform/chromium-mac/css2.1/t1202-counters-04-b-expected.png: Added.
- platform/chromium-mac/css2.1/t1202-counters-04-b-expected.txt: Added.
- platform/chromium-mac/css2.1/t1602-c43-center-00-d-ag-expected.checksum: Added.
- platform/chromium-mac/css2.1/t1602-c43-center-00-d-ag-expected.png: Added.
- platform/chromium-mac/css2.1/t1602-c546-txt-align-00-b-expected.checksum: Added.
- platform/chromium-mac/css2.1/t1602-c546-txt-align-00-b-expected.png: Added.
- platform/chromium-mac/editing/deleting/delete-tab-003-expected.checksum: Added.
- platform/chromium-mac/editing/deleting/delete-tab-003-expected.png: Added.
- platform/chromium-mac/editing/deleting/delete-ws-fixup-001-expected.checksum: Added.
- platform/chromium-mac/editing/deleting/delete-ws-fixup-001-expected.png: Added.
- platform/chromium-mac/editing/inserting/insert-tab-003-expected.checksum: Added.
- platform/chromium-mac/editing/inserting/insert-tab-003-expected.png: Added.
- platform/chromium-mac/editing/inserting/typing-tab-designmode-forms-expected.checksum: Added.
- platform/chromium-mac/editing/inserting/typing-tab-designmode-forms-expected.png: Added.
- platform/chromium-mac/editing/pasteboard/4641033-expected.checksum: Added.
- platform/chromium-mac/editing/pasteboard/4641033-expected.png: Added.
- platform/chromium-mac/editing/pasteboard/block-wrappers-necessary-expected.checksum: Added.
- platform/chromium-mac/editing/pasteboard/block-wrappers-necessary-expected.png: Added.
- platform/chromium-mac/editing/pasteboard/nested-blocks-with-text-area-expected.checksum: Added.
- platform/chromium-mac/editing/pasteboard/nested-blocks-with-text-area-expected.png: Added.
- platform/chromium-mac/editing/pasteboard/nested-blocks-with-text-field-expected.checksum: Added.
- platform/chromium-mac/editing/pasteboard/nested-blocks-with-text-field-expected.png: Added.
- platform/chromium-mac/editing/pasteboard/paste-blockquote-2-expected.checksum: Added.
- platform/chromium-mac/editing/pasteboard/paste-blockquote-2-expected.png: Added.
- platform/chromium-mac/editing/pasteboard/pasting-tabs-expected.checksum: Added.
- platform/chromium-mac/editing/pasteboard/pasting-tabs-expected.png: Added.
- platform/chromium-mac/editing/selection/3690703-2-expected.checksum: Added.
- platform/chromium-mac/editing/selection/3690703-2-expected.png: Added.
- platform/chromium-mac/editing/selection/3690703-expected.checksum: Added.
- platform/chromium-mac/editing/selection/3690703-expected.png: Added.
- platform/chromium-mac/editing/selection/3690719-expected.checksum: Added.
- platform/chromium-mac/editing/selection/3690719-expected.png: Added.
- platform/chromium-mac/editing/selection/4397952-expected.checksum: Added.
- platform/chromium-mac/editing/selection/4397952-expected.png: Added.
- platform/chromium-mac/editing/selection/4975120-expected.checksum: Added.
- platform/chromium-mac/editing/selection/4975120-expected.png: Added.
- platform/chromium-mac/editing/selection/5240265-expected.checksum: Added.
- platform/chromium-mac/editing/selection/5240265-expected.png: Added.
- platform/chromium-mac/editing/selection/caret-rtl-2-expected.checksum:
- platform/chromium-mac/editing/selection/caret-rtl-2-expected.png:
- platform/chromium-mac/editing/selection/caret-rtl-2-left-expected.checksum:
- platform/chromium-mac/editing/selection/caret-rtl-2-left-expected.png:
- platform/chromium-mac/editing/selection/caret-rtl-expected.checksum:
- platform/chromium-mac/editing/selection/caret-rtl-expected.png:
- platform/chromium-mac/editing/selection/caret-rtl-right-expected.checksum:
- platform/chromium-mac/editing/selection/caret-rtl-right-expected.png:
- platform/chromium-mac/editing/selection/extend-selection-bidi-expected.checksum: Added.
- platform/chromium-mac/editing/selection/extend-selection-bidi-expected.png: Added.
- platform/chromium-mac/editing/selection/move-past-trailing-space-expected.checksum: Removed.
- platform/chromium-mac/editing/selection/replaced-boundaries-3-expected.checksum:
- platform/chromium-mac/editing/selection/replaced-boundaries-3-expected.png: Added.
- platform/chromium-mac/editing/selection/select-from-textfield-outwards-expected.checksum: Added.
- platform/chromium-mac/editing/selection/select-from-textfield-outwards-expected.png: Added.
- platform/chromium-mac/editing/style/5046875-1-expected.checksum: Added.
- platform/chromium-mac/editing/style/5046875-1-expected.png: Added.
- platform/chromium-mac/editing/style/create-block-for-style-011-expected.checksum: Removed.
- platform/chromium-mac/editing/style/create-block-for-style-011-expected.png: Removed.
- platform/chromium-mac/editing/style/create-block-for-style-012-expected.checksum: Removed.
- platform/chromium-mac/editing/style/create-block-for-style-012-expected.png: Removed.
- platform/chromium-mac/editing/style/table-selection-expected.checksum: Added.
- platform/chromium-mac/editing/style/table-selection-expected.png: Added.
- platform/chromium-mac/fast/block/margin-collapse/103-expected.checksum:
- platform/chromium-mac/fast/block/margin-collapse/103-expected.png:
- platform/chromium-mac/fast/block/positioning/inline-block-relposition-expected.checksum: Added.
- platform/chromium-mac/fast/block/positioning/inline-block-relposition-expected.png: Added.
- platform/chromium-mac/fast/blockflow/Kusa-Makura-background-canvas-expected.checksum: Added.
- platform/chromium-mac/fast/blockflow/Kusa-Makura-background-canvas-expected.png: Added.
- platform/chromium-mac/fast/blockflow/border-vertical-lr-expected.checksum:
- platform/chromium-mac/fast/blockflow/border-vertical-lr-expected.png:
- platform/chromium-mac/fast/blockflow/border-vertical-lr-expected.txt: Added.
- platform/chromium-mac/fast/blockflow/japanese-lr-selection-expected.checksum:
- platform/chromium-mac/fast/blockflow/japanese-lr-selection-expected.png:
- platform/chromium-mac/fast/blockflow/japanese-lr-text-expected.checksum:
- platform/chromium-mac/fast/blockflow/japanese-lr-text-expected.png:
- platform/chromium-mac/fast/blockflow/japanese-rl-selection-expected.checksum:
- platform/chromium-mac/fast/blockflow/japanese-rl-selection-expected.png:
- platform/chromium-mac/fast/blockflow/japanese-rl-text-expected.checksum:
- platform/chromium-mac/fast/blockflow/japanese-rl-text-expected.png: Added.
- platform/chromium-mac/fast/blockflow/japanese-ruby-vertical-lr-expected.checksum: Added.
- platform/chromium-mac/fast/blockflow/japanese-ruby-vertical-lr-expected.png: Added.
- platform/chromium-mac/fast/blockflow/japanese-ruby-vertical-rl-expected.checksum: Added.
- platform/chromium-mac/fast/blockflow/japanese-ruby-vertical-rl-expected.png: Added.
- platform/chromium-mac/fast/blockflow/vertical-align-table-baseline-expected.checksum:
- platform/chromium-mac/fast/blockflow/vertical-align-table-baseline-expected.png:
- platform/chromium-mac/fast/blockflow/vertical-baseline-alignment-expected.checksum:
- platform/chromium-mac/fast/blockflow/vertical-baseline-alignment-expected.png:
- platform/chromium-mac/fast/blockflow/vertical-font-fallback-expected.checksum: Added.
- platform/chromium-mac/fast/blockflow/vertical-font-fallback-expected.png: Added.
- platform/chromium-mac/fast/css/beforeSelectorOnCodeElement-expected.checksum: Added.
- platform/chromium-mac/fast/css/beforeSelectorOnCodeElement-expected.png: Added.
- platform/chromium-mac/fast/css/continuationCrash-expected.checksum: Added.
- platform/chromium-mac/fast/css/continuationCrash-expected.png: Added.
- platform/chromium-mac/fast/css/css2-system-fonts-expected.checksum: Added.
- platform/chromium-mac/fast/css/css2-system-fonts-expected.png: Added.
- platform/chromium-mac/fast/css/font-face-default-font-expected.checksum: Added.
- platform/chromium-mac/fast/css/font-face-default-font-expected.png: Added.
- platform/chromium-mac/fast/css/font-face-locally-installed-expected.checksum: Added.
- platform/chromium-mac/fast/css/font-face-locally-installed-expected.png: Added.
- platform/chromium-mac/fast/css/margin-top-bottom-dynamic-expected.checksum: Added.
- platform/chromium-mac/fast/css/margin-top-bottom-dynamic-expected.png: Added.
- platform/chromium-mac/fast/css/rtl-ordering-expected.checksum: Added.
- platform/chromium-mac/fast/css/rtl-ordering-expected.png: Added.
- platform/chromium-mac/fast/css/text-input-with-webkit-border-radius-expected.checksum: Added.
- platform/chromium-mac/fast/css/text-input-with-webkit-border-radius-expected.png: Added.
- platform/chromium-mac/fast/css/text-overflow-ellipsis-bidi-expected.checksum: Added.
- platform/chromium-mac/fast/css/text-overflow-ellipsis-bidi-expected.png: Added.
- platform/chromium-mac/fast/css/text-overflow-ellipsis-strict-expected.checksum: Added.
- platform/chromium-mac/fast/css/text-overflow-ellipsis-strict-expected.png: Added.
- platform/chromium-mac/fast/css/text-security-expected.checksum: Added.
- platform/chromium-mac/fast/css/text-security-expected.png: Added.
- platform/chromium-mac/fast/dom/52776-expected.txt:
- platform/chromium-mac/fast/dom/HTMLInputElement/input-image-alt-text-expected.checksum: Added.
- platform/chromium-mac/fast/dom/HTMLInputElement/input-image-alt-text-expected.png: Added.
- platform/chromium-mac/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.checksum: Added.
- platform/chromium-mac/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.png: Added.
- platform/chromium-mac/fast/dom/HTMLTextAreaElement/reset-textarea-expected.checksum: Added.
- platform/chromium-mac/fast/dom/HTMLTextAreaElement/reset-textarea-expected.png: Added.
- platform/chromium-mac/fast/dynamic/008-expected.checksum: Added.
- platform/chromium-mac/fast/dynamic/008-expected.png: Added.
- platform/chromium-mac/fast/events/autoscroll-expected.checksum: Added.
- platform/chromium-mac/fast/events/autoscroll-expected.png: Added.
- platform/chromium-mac/fast/events/context-no-deselect-expected.checksum: Added.
- platform/chromium-mac/fast/events/context-no-deselect-expected.png: Added.
- platform/chromium-mac/fast/forms/HTMLOptionElement_label01-expected.checksum: Added.
- platform/chromium-mac/fast/forms/HTMLOptionElement_label01-expected.png: Added.
- platform/chromium-mac/fast/forms/HTMLOptionElement_label02-expected.checksum: Added.
- platform/chromium-mac/fast/forms/HTMLOptionElement_label02-expected.png: Added.
- platform/chromium-mac/fast/forms/HTMLOptionElement_label03-expected.checksum: Added.
- platform/chromium-mac/fast/forms/HTMLOptionElement_label03-expected.png: Added.
- platform/chromium-mac/fast/forms/HTMLOptionElement_label04-expected.checksum: Added.
- platform/chromium-mac/fast/forms/HTMLOptionElement_label04-expected.png: Added.
- platform/chromium-mac/fast/forms/basic-buttons-expected.checksum: Added.
- platform/chromium-mac/fast/forms/basic-buttons-expected.png: Added.
- platform/chromium-mac/fast/forms/basic-selects-expected.checksum: Added.
- platform/chromium-mac/fast/forms/basic-selects-expected.png: Added.
- platform/chromium-mac/fast/forms/basic-selects-expected.txt: Added.
- platform/chromium-mac/fast/forms/basic-textareas-expected.checksum: Added.
- platform/chromium-mac/fast/forms/basic-textareas-expected.png: Added.
- platform/chromium-mac/fast/forms/basic-textareas-quirks-expected.checksum: Added.
- platform/chromium-mac/fast/forms/basic-textareas-quirks-expected.png: Added.
- platform/chromium-mac/fast/forms/blankbuttons-expected.checksum: Added.
- platform/chromium-mac/fast/forms/blankbuttons-expected.png: Added.
- platform/chromium-mac/fast/forms/button-align-expected.checksum: Added.
- platform/chromium-mac/fast/forms/button-align-expected.png: Added.
- platform/chromium-mac/fast/forms/button-cannot-be-nested-expected.checksum: Added.
- platform/chromium-mac/fast/forms/button-cannot-be-nested-expected.png: Added.
- platform/chromium-mac/fast/forms/button-default-title-expected.checksum: Added.
- platform/chromium-mac/fast/forms/button-default-title-expected.png: Added.
- platform/chromium-mac/fast/forms/button-generated-content-expected.checksum: Added.
- platform/chromium-mac/fast/forms/button-generated-content-expected.png: Added.
- platform/chromium-mac/fast/forms/button-positioned-expected.checksum: Added.
- platform/chromium-mac/fast/forms/button-positioned-expected.png: Added.
- platform/chromium-mac/fast/forms/button-sizes-expected.checksum: Added.
- platform/chromium-mac/fast/forms/button-sizes-expected.png: Added.
- platform/chromium-mac/fast/forms/button-style-color-expected.checksum: Added.
- platform/chromium-mac/fast/forms/button-style-color-expected.png: Added.
- platform/chromium-mac/fast/forms/button-table-styles-expected.checksum: Added.
- platform/chromium-mac/fast/forms/button-table-styles-expected.png: Added.
- platform/chromium-mac/fast/forms/button-text-transform-expected.checksum: Added.
- platform/chromium-mac/fast/forms/button-text-transform-expected.png: Added.
- platform/chromium-mac/fast/forms/button-white-space-expected.checksum: Added.
- platform/chromium-mac/fast/forms/button-white-space-expected.png: Added.
- platform/chromium-mac/fast/forms/control-clip-expected.checksum: Added.
- platform/chromium-mac/fast/forms/control-clip-expected.png: Added.
- platform/chromium-mac/fast/forms/control-restrict-line-height-expected.checksum: Added.
- platform/chromium-mac/fast/forms/control-restrict-line-height-expected.png: Added.
- platform/chromium-mac/fast/forms/file-input-direction-expected.checksum:
- platform/chromium-mac/fast/forms/file-input-direction-expected.png:
- platform/chromium-mac/fast/forms/file-input-direction-expected.txt:
- platform/chromium-mac/fast/forms/formmove3-expected.checksum: Added.
- platform/chromium-mac/fast/forms/formmove3-expected.png: Added.
- platform/chromium-mac/fast/forms/input-align-expected.checksum: Added.
- platform/chromium-mac/fast/forms/input-align-expected.png: Added.
- platform/chromium-mac/fast/forms/input-appearance-bkcolor-expected.checksum:
- platform/chromium-mac/fast/forms/input-appearance-bkcolor-expected.png: Added.
- platform/chromium-mac/fast/forms/input-appearance-default-bkcolor-expected.checksum: Added.
- platform/chromium-mac/fast/forms/input-appearance-default-bkcolor-expected.png: Added.
- platform/chromium-mac/fast/forms/input-appearance-disabled-expected.checksum: Added.
- platform/chromium-mac/fast/forms/input-appearance-disabled-expected.png: Added.
- platform/chromium-mac/fast/forms/input-appearance-focus-expected.checksum: Added.
- platform/chromium-mac/fast/forms/input-appearance-focus-expected.png: Added.
- platform/chromium-mac/fast/forms/input-appearance-preventDefault-expected.checksum: Added.
- platform/chromium-mac/fast/forms/input-appearance-preventDefault-expected.png: Added.
- platform/chromium-mac/fast/forms/input-appearance-readonly-expected.checksum: Added.
- platform/chromium-mac/fast/forms/input-appearance-readonly-expected.png: Added.
- platform/chromium-mac/fast/forms/input-appearance-selection-expected.checksum: Added.
- platform/chromium-mac/fast/forms/input-appearance-selection-expected.png: Added.
- platform/chromium-mac/fast/forms/input-appearance-visibility-expected.checksum: Added.
- platform/chromium-mac/fast/forms/input-appearance-visibility-expected.png: Added.
- platform/chromium-mac/fast/forms/input-appearance-width-expected.checksum: Added.
- platform/chromium-mac/fast/forms/input-appearance-width-expected.png: Added.
- platform/chromium-mac/fast/forms/input-button-sizes-expected.checksum: Added.
- platform/chromium-mac/fast/forms/input-button-sizes-expected.png: Added.
- platform/chromium-mac/fast/forms/input-disabled-color-expected.checksum: Added.
- platform/chromium-mac/fast/forms/input-disabled-color-expected.png: Added.
- platform/chromium-mac/fast/forms/input-double-click-selection-gap-bug-expected.checksum: Added.
- platform/chromium-mac/fast/forms/input-double-click-selection-gap-bug-expected.png: Added.
- platform/chromium-mac/fast/forms/input-field-text-truncated-expected.checksum: Added.
- platform/chromium-mac/fast/forms/input-field-text-truncated-expected.png: Added.
- platform/chromium-mac/fast/forms/input-file-re-render-expected.checksum:
- platform/chromium-mac/fast/forms/input-file-re-render-expected.png:
- platform/chromium-mac/fast/forms/input-first-letter-expected.checksum: Added.
- platform/chromium-mac/fast/forms/input-first-letter-expected.png: Added.
- platform/chromium-mac/fast/forms/input-readonly-autoscroll-expected.checksum: Added.
- platform/chromium-mac/fast/forms/input-readonly-autoscroll-expected.png: Added.
- platform/chromium-mac/fast/forms/input-readonly-dimmed-expected.checksum: Added.
- platform/chromium-mac/fast/forms/input-readonly-dimmed-expected.png: Added.
- platform/chromium-mac/fast/forms/input-spaces-expected.checksum: Added.
- platform/chromium-mac/fast/forms/input-spaces-expected.png: Added.
- platform/chromium-mac/fast/forms/input-table-expected.checksum: Added.
- platform/chromium-mac/fast/forms/input-table-expected.png: Added.
- platform/chromium-mac/fast/forms/input-text-double-click-expected.checksum: Added.
- platform/chromium-mac/fast/forms/input-text-double-click-expected.png: Added.
- platform/chromium-mac/fast/forms/input-text-drag-down-expected.checksum: Added.
- platform/chromium-mac/fast/forms/input-text-drag-down-expected.png: Added.
- platform/chromium-mac/fast/forms/input-text-scroll-left-on-blur-expected.checksum: Added.
- platform/chromium-mac/fast/forms/input-text-scroll-left-on-blur-expected.png: Added.
- platform/chromium-mac/fast/forms/input-text-word-wrap-expected.checksum: Added.
- platform/chromium-mac/fast/forms/input-text-word-wrap-expected.png: Added.
- platform/chromium-mac/fast/forms/menulist-no-overflow-expected.checksum: Added.
- platform/chromium-mac/fast/forms/menulist-no-overflow-expected.png: Added.
- platform/chromium-mac/fast/forms/menulist-option-wrap-expected.checksum: Added.
- platform/chromium-mac/fast/forms/menulist-option-wrap-expected.png: Added.
- platform/chromium-mac/fast/forms/menulist-restrict-line-height-expected.checksum: Added.
- platform/chromium-mac/fast/forms/menulist-restrict-line-height-expected.png: Added.
- platform/chromium-mac/fast/forms/menulist-style-color-expected.checksum: Added.
- platform/chromium-mac/fast/forms/menulist-style-color-expected.png: Added.
- platform/chromium-mac/fast/forms/menulist-width-change-expected.checksum: Added.
- platform/chromium-mac/fast/forms/menulist-width-change-expected.png: Added.
- platform/chromium-mac/fast/forms/option-strip-whitespace-expected.checksum: Added.
- platform/chromium-mac/fast/forms/option-strip-whitespace-expected.png: Added.
- platform/chromium-mac/fast/forms/option-text-clip-expected.checksum: Added.
- platform/chromium-mac/fast/forms/option-text-clip-expected.png: Added.
- platform/chromium-mac/fast/forms/placeholder-position-expected.checksum:
- platform/chromium-mac/fast/forms/placeholder-position-expected.png:
- platform/chromium-mac/fast/forms/placeholder-set-value-expected.checksum: Added.
- platform/chromium-mac/fast/forms/placeholder-set-value-expected.png: Added.
- platform/chromium-mac/fast/forms/plaintext-mode-2-expected.checksum: Added.
- platform/chromium-mac/fast/forms/plaintext-mode-2-expected.png: Added.
- platform/chromium-mac/fast/forms/search-cancel-button-style-sharing-expected.checksum: Added.
- platform/chromium-mac/fast/forms/search-cancel-button-style-sharing-expected.png: Added.
- platform/chromium-mac/fast/forms/search-rtl-expected.checksum: Added.
- platform/chromium-mac/fast/forms/search-rtl-expected.png: Added.
- platform/chromium-mac/fast/forms/search-transformed-expected.checksum:
- platform/chromium-mac/fast/forms/search-transformed-expected.png:
- platform/chromium-mac/fast/forms/search-zoomed-expected.checksum: Added.
- platform/chromium-mac/fast/forms/search-zoomed-expected.png: Added.
- platform/chromium-mac/fast/forms/select-align-expected.checksum: Added.
- platform/chromium-mac/fast/forms/select-align-expected.png: Added.
- platform/chromium-mac/fast/forms/select-baseline-expected.checksum:
- platform/chromium-mac/fast/forms/select-baseline-expected.png:
- platform/chromium-mac/fast/forms/select-change-listbox-to-popup-expected.checksum: Added.
- platform/chromium-mac/fast/forms/select-change-listbox-to-popup-expected.png: Added.
- platform/chromium-mac/fast/forms/select-disabled-appearance-expected.checksum: Added.
- platform/chromium-mac/fast/forms/select-disabled-appearance-expected.png: Added.
- platform/chromium-mac/fast/forms/select-initial-position-expected.checksum: Added.
- platform/chromium-mac/fast/forms/select-initial-position-expected.png: Added.
- platform/chromium-mac/fast/forms/select-selected-expected.checksum: Added.
- platform/chromium-mac/fast/forms/select-selected-expected.png: Added.
- platform/chromium-mac/fast/forms/select-visual-hebrew-expected.checksum: Added.
- platform/chromium-mac/fast/forms/select-visual-hebrew-expected.png: Added.
- platform/chromium-mac/fast/forms/stuff-on-my-optgroup-expected.checksum: Added.
- platform/chromium-mac/fast/forms/stuff-on-my-optgroup-expected.png: Added.
- platform/chromium-mac/fast/forms/tabbing-input-iframe-expected.checksum: Added.
- platform/chromium-mac/fast/forms/tabbing-input-iframe-expected.png: Added.
- platform/chromium-mac/fast/forms/targeted-frame-submission-expected.checksum: Added.
- platform/chromium-mac/fast/forms/targeted-frame-submission-expected.png: Added.
- platform/chromium-mac/fast/forms/text-style-color-expected.checksum:
- platform/chromium-mac/fast/forms/text-style-color-expected.png:
- platform/chromium-mac/fast/forms/textarea-align-expected.checksum: Added.
- platform/chromium-mac/fast/forms/textarea-align-expected.png: Added.
- platform/chromium-mac/fast/forms/textarea-placeholder-set-value-expected.checksum: Added.
- platform/chromium-mac/fast/forms/textarea-placeholder-set-value-expected.png: Added.
- platform/chromium-mac/fast/forms/textarea-scroll-height-expected.checksum: Added.
- platform/chromium-mac/fast/forms/textarea-scroll-height-expected.png: Added.
- platform/chromium-mac/fast/forms/textarea-scrolled-type-expected.checksum: Added.
- platform/chromium-mac/fast/forms/textarea-scrolled-type-expected.png: Added.
- platform/chromium-mac/fast/forms/visual-hebrew-text-field-expected.checksum: Added.
- platform/chromium-mac/fast/forms/visual-hebrew-text-field-expected.png: Added.
- platform/chromium-mac/fast/html/keygen-expected.checksum: Added.
- platform/chromium-mac/fast/html/keygen-expected.png: Added.
- platform/chromium-mac/fast/inline/inline-box-background-expected.checksum:
- platform/chromium-mac/fast/inline/inline-box-background-expected.png:
- platform/chromium-mac/fast/inline/inline-box-background-long-image-expected.checksum:
- platform/chromium-mac/fast/inline/inline-box-background-long-image-expected.png:
- platform/chromium-mac/fast/inline/inline-box-background-repeat-x-expected.checksum:
- platform/chromium-mac/fast/inline/inline-box-background-repeat-x-expected.png:
- platform/chromium-mac/fast/inline/inline-box-background-repeat-y-expected.checksum:
- platform/chromium-mac/fast/inline/inline-box-background-repeat-y-expected.png:
- platform/chromium-mac/fast/lists/dynamic-marker-crash-expected.checksum: Added.
- platform/chromium-mac/fast/lists/dynamic-marker-crash-expected.png: Added.
- platform/chromium-mac/fast/multicol/float-avoidance-expected.checksum: Added.
- platform/chromium-mac/fast/multicol/float-avoidance-expected.png: Added.
- platform/chromium-mac/fast/multicol/shadow-breaking-expected.checksum:
- platform/chromium-mac/fast/multicol/shadow-breaking-expected.png:
- platform/chromium-mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.checksum: Added.
- platform/chromium-mac/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.png: Added.
- platform/chromium-mac/fast/parser/document-write-option-expected.checksum: Added.
- platform/chromium-mac/fast/parser/document-write-option-expected.png: Added.
- platform/chromium-mac/fast/parser/entity-comment-in-textarea-expected.checksum: Added.
- platform/chromium-mac/fast/parser/entity-comment-in-textarea-expected.png: Added.
- platform/chromium-mac/fast/parser/open-comment-in-textarea-expected.checksum: Added.
- platform/chromium-mac/fast/parser/open-comment-in-textarea-expected.png: Added.
- platform/chromium-mac/fast/repaint/japanese-rl-selection-clear-expected.checksum:
- platform/chromium-mac/fast/repaint/japanese-rl-selection-clear-expected.png:
- platform/chromium-mac/fast/repaint/japanese-rl-selection-repaint-expected.checksum:
- platform/chromium-mac/fast/repaint/japanese-rl-selection-repaint-expected.png:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-1-expected.checksum:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-1-expected.png:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-10-expected.checksum:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-10-expected.png:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-2-expected.checksum:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-2-expected.png:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-3-expected.checksum:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-3-expected.png:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-4-expected.checksum:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-4-expected.png:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-5-expected.checksum:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-5-expected.png:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-6-expected.checksum:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-6-expected.png:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-7-expected.checksum:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-7-expected.png:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-8-expected.checksum:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-8-expected.png:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-9-expected.checksum:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-9-expected.png:
- platform/chromium-mac/fast/repaint/repaint-across-writing-mode-boundary-expected.checksum:
- platform/chromium-mac/fast/repaint/repaint-across-writing-mode-boundary-expected.png:
- platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.checksum: Removed.
- platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png: Removed.
- platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.checksum: Removed.
- platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png: Removed.
- platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.checksum: Removed.
- platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png: Removed.
- platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.checksum: Removed.
- platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png: Removed.
- platform/chromium-mac/fast/replaced/width100percent-button-expected.checksum: Added.
- platform/chromium-mac/fast/replaced/width100percent-button-expected.png: Added.
- platform/chromium-mac/fast/replaced/width100percent-searchfield-expected.checksum: Added.
- platform/chromium-mac/fast/replaced/width100percent-searchfield-expected.png: Added.
- platform/chromium-mac/fast/replaced/width100percent-textarea-expected.checksum:
- platform/chromium-mac/fast/replaced/width100percent-textarea-expected.png:
- platform/chromium-mac/fast/replaced/width100percent-textfield-expected.checksum: Added.
- platform/chromium-mac/fast/replaced/width100percent-textfield-expected.png: Added.
- platform/chromium-mac/fast/selectors/064-expected.checksum: Added.
- platform/chromium-mac/fast/selectors/064-expected.png: Added.
- platform/chromium-mac/fast/speech/input-appearance-speechbutton-expected.checksum:
- platform/chromium-mac/fast/speech/input-appearance-speechbutton-expected.png:
- platform/chromium-mac/fast/speech/input-appearance-speechbutton-expected.txt:
- platform/chromium-mac/fast/table/append-cells2-expected.checksum: Added.
- platform/chromium-mac/fast/table/append-cells2-expected.png: Added.
- platform/chromium-mac/fast/table/border-collapsing/004-vertical-expected.checksum: Added.
- platform/chromium-mac/fast/table/border-collapsing/004-vertical-expected.png: Added.
- platform/chromium-mac/fast/table/frame-and-rules-expected.checksum: Added.
- platform/chromium-mac/fast/table/frame-and-rules-expected.png: Added.
- platform/chromium-mac/fast/table/remove-td-display-none-expected.checksum: Added.
- platform/chromium-mac/fast/table/remove-td-display-none-expected.png: Added.
- platform/chromium-mac/fast/text/atsui-negative-spacing-features-expected.checksum: Added.
- platform/chromium-mac/fast/text/atsui-negative-spacing-features-expected.png: Added.
- platform/chromium-mac/fast/text/atsui-partial-selection-expected.checksum: Added.
- platform/chromium-mac/fast/text/atsui-partial-selection-expected.png: Added.
- platform/chromium-mac/fast/text/atsui-spacing-features-expected.checksum: Added.
- platform/chromium-mac/fast/text/atsui-spacing-features-expected.png: Added.
- platform/chromium-mac/fast/text/backslash-to-yen-sign-euc-expected.checksum: Added.
- platform/chromium-mac/fast/text/backslash-to-yen-sign-euc-expected.png: Added.
- platform/chromium-mac/fast/text/bidi-embedding-pop-and-push-same-expected.checksum: Added.
- platform/chromium-mac/fast/text/bidi-embedding-pop-and-push-same-expected.png: Added.
- platform/chromium-mac/fast/text/capitalize-boundaries-expected.checksum: Added.
- platform/chromium-mac/fast/text/capitalize-boundaries-expected.png: Added.
- platform/chromium-mac/fast/text/in-rendered-text-rtl-expected.checksum: Added.
- platform/chromium-mac/fast/text/in-rendered-text-rtl-expected.png: Added.
- platform/chromium-mac/fast/text/international/bidi-AN-after-L-expected.checksum: Added.
- platform/chromium-mac/fast/text/international/bidi-AN-after-L-expected.png: Added.
- platform/chromium-mac/fast/text/international/bidi-AN-after-L-expected.txt: Added.
- platform/chromium-mac/fast/text/international/bidi-L2-run-reordering-expected.checksum: Added.
- platform/chromium-mac/fast/text/international/bidi-L2-run-reordering-expected.png: Added.
- platform/chromium-mac/fast/text/international/bidi-LDB-2-CSS-expected.checksum: Added.
- platform/chromium-mac/fast/text/international/bidi-LDB-2-CSS-expected.png: Added.
- platform/chromium-mac/fast/text/international/bidi-LDB-2-HTML-expected.checksum: Added.
- platform/chromium-mac/fast/text/international/bidi-LDB-2-HTML-expected.png: Added.
- platform/chromium-mac/fast/text/international/bidi-LDB-2-formatting-characters-expected.checksum: Added.
- platform/chromium-mac/fast/text/international/bidi-LDB-2-formatting-characters-expected.png: Added.
- platform/chromium-mac/fast/text/international/bidi-european-terminators-expected.checksum: Added.
- platform/chromium-mac/fast/text/international/bidi-european-terminators-expected.png: Added.
- platform/chromium-mac/fast/text/international/bidi-ignored-for-first-child-inline-expected.checksum: Added.
- platform/chromium-mac/fast/text/international/bidi-ignored-for-first-child-inline-expected.png: Added.
- platform/chromium-mac/fast/text/international/bidi-innertext-expected.checksum: Added.
- platform/chromium-mac/fast/text/international/bidi-innertext-expected.png: Added.
- platform/chromium-mac/fast/text/international/bidi-layout-across-linebreak-expected.checksum: Added.
- platform/chromium-mac/fast/text/international/bidi-layout-across-linebreak-expected.png: Added.
- platform/chromium-mac/fast/text/international/bidi-linebreak-001-expected.checksum: Added.
- platform/chromium-mac/fast/text/international/bidi-linebreak-001-expected.png: Added.
- platform/chromium-mac/fast/text/international/bidi-linebreak-002-expected.checksum: Added.
- platform/chromium-mac/fast/text/international/bidi-linebreak-002-expected.png: Added.
- platform/chromium-mac/fast/text/international/bidi-linebreak-003-expected.checksum: Added.
- platform/chromium-mac/fast/text/international/bidi-linebreak-003-expected.png: Added.
- platform/chromium-mac/fast/text/international/bidi-listbox-atsui-expected.checksum: Added.
- platform/chromium-mac/fast/text/international/bidi-listbox-atsui-expected.png: Added.
- platform/chromium-mac/fast/text/international/bidi-listbox-expected.checksum: Added.
- platform/chromium-mac/fast/text/international/bidi-listbox-expected.png: Added.
- platform/chromium-mac/fast/text/international/bidi-mirror-he-ar-expected.checksum: Added.
- platform/chromium-mac/fast/text/international/bidi-mirror-he-ar-expected.png: Added.
- platform/chromium-mac/fast/text/international/bidi-mirror-he-ar-expected.txt: Added.
- platform/chromium-mac/fast/text/international/bidi-neutral-run-expected.checksum: Added.
- platform/chromium-mac/fast/text/international/bidi-neutral-run-expected.png: Added.
- platform/chromium-mac/fast/text/international/bidi-neutral-run-expected.txt: Added.
- platform/chromium-mac/fast/text/international/bidi-override-expected.checksum: Added.
- platform/chromium-mac/fast/text/international/bidi-override-expected.png: Added.
- platform/chromium-mac/fast/text/international/hebrew-vowels-expected.checksum: Added.
- platform/chromium-mac/fast/text/international/hebrew-vowels-expected.png: Added.
- platform/chromium-mac/fast/text/international/hindi-spacing-expected.checksum: Added.
- platform/chromium-mac/fast/text/international/hindi-spacing-expected.png: Added.
- platform/chromium-mac/fast/text/international/pop-up-button-text-alignment-and-direction-expected.checksum:
- platform/chromium-mac/fast/text/international/pop-up-button-text-alignment-and-direction-expected.png:
- platform/chromium-mac/fast/text/international/pop-up-button-text-alignment-and-direction-expected.txt: Removed.
- platform/chromium-mac/fast/text/international/rtl-caret-expected.checksum: Added.
- platform/chromium-mac/fast/text/international/rtl-caret-expected.png: Added.
- platform/chromium-mac/fast/text/international/rtl-white-space-pre-wrap-expected.checksum: Added.
- platform/chromium-mac/fast/text/international/rtl-white-space-pre-wrap-expected.png: Added.
- platform/chromium-mac/fast/text/international/text-combine-image-test-expected.checksum: Added.
- platform/chromium-mac/fast/text/international/text-combine-image-test-expected.png: Added.
- platform/chromium-mac/fast/text/international/text-combine-image-test-expected.txt: Added.
- platform/chromium-mac/fast/text/justified-selection-at-edge-expected.checksum: Added.
- platform/chromium-mac/fast/text/justified-selection-at-edge-expected.png: Added.
- platform/chromium-mac/fast/text/justify-ideograph-simple-expected.checksum:
- platform/chromium-mac/fast/text/justify-ideograph-simple-expected.png:
- platform/chromium-mac/fast/text/justify-ideograph-vertical-expected.checksum:
- platform/chromium-mac/fast/text/justify-ideograph-vertical-expected.png:
- platform/chromium-mac/fast/text/justify-nbsp-expected.checksum: Added.
- platform/chromium-mac/fast/text/justify-nbsp-expected.png: Added.
- platform/chromium-mac/fast/text/line-breaks-expected.checksum: Added.
- platform/chromium-mac/fast/text/line-breaks-expected.png: Added.
- platform/chromium-mac/fast/text/trailing-white-space-2-expected.checksum: Removed.
- platform/chromium-mac/fast/text/trailing-white-space-expected.checksum: Removed.
- platform/chromium-mac/fast/text/word-break-run-rounding-expected.checksum: Added.
- platform/chromium-mac/fast/text/word-break-run-rounding-expected.png: Added.
- platform/chromium-mac/fonts/sans-serif-expected.checksum: Added.
- platform/chromium-mac/fonts/sans-serif-expected.png: Added.
- platform/chromium-mac/svg/custom/animate-path-discrete-expected.checksum: Added.
- platform/chromium-mac/svg/custom/animate-path-discrete-expected.png: Added.
- platform/chromium-mac/svg/custom/inline-svg-in-xhtml-expected.checksum:
- platform/chromium-mac/svg/custom/inline-svg-in-xhtml-expected.png:
- platform/chromium-mac/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.checksum:
- platform/chromium-mac/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.png:
- platform/chromium-mac/svg/custom/svg-fonts-in-html-expected.checksum:
- platform/chromium-mac/svg/custom/svg-fonts-in-html-expected.png:
- platform/chromium-mac/svg/custom/text-dom-01-f-expected.checksum: Added.
- platform/chromium-mac/svg/custom/text-dom-01-f-expected.png: Added.
- platform/chromium-mac/svg/hixie/mixed/003-expected.checksum:
- platform/chromium-mac/svg/hixie/mixed/003-expected.png:
- platform/chromium-mac/svg/zoom/page/zoom-hixie-mixed-008-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug113424-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug113424-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug1188-expected.checksum:
- platform/chromium-mac/tables/mozilla/bugs/bug1188-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug1318-expected.checksum:
- platform/chromium-mac/tables/mozilla/bugs/bug1318-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug138725-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug138725-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug14323-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug14323-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug18359-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug18359-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug2479-2-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug2479-2-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug2479-3-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug2479-3-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug26178-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug26178-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug28928-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug28928-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug2962-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug2962-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug30692-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug30692-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug33855-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug33855-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug39209-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug39209-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug4429-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug4429-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug44505-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug44505-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug4527-expected.checksum:
- platform/chromium-mac/tables/mozilla/bugs/bug4527-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug46368-1-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug46368-1-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug46368-2-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug46368-2-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug51037-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug51037-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug51727-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug51727-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug52505-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug52505-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug52506-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug52506-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug60749-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug60749-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug67915-1-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug67915-1-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug68912-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug68912-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug7342-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug7342-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug88035-1-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug88035-1-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug88035-2-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug88035-2-expected.png: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug96334-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/bugs/bug96334-expected.png: Added.
- platform/chromium-mac/tables/mozilla/collapsing_borders/bug41262-4-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/collapsing_borders/bug41262-4-expected.png: Added.
- platform/chromium-mac/tables/mozilla/core/bloomberg-expected.checksum:
- platform/chromium-mac/tables/mozilla/core/bloomberg-expected.png:
- platform/chromium-mac/tables/mozilla/core/misc-expected.checksum:
- platform/chromium-mac/tables/mozilla/core/misc-expected.png: Added.
- platform/chromium-mac/tables/mozilla/dom/tableDom-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/dom/tableDom-expected.png: Added.
- platform/chromium-mac/tables/mozilla/marvin/x_tbody_align_justify-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/marvin/x_tbody_align_justify-expected.png: Added.
- platform/chromium-mac/tables/mozilla/marvin/x_td_align_justify-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/marvin/x_td_align_justify-expected.png: Added.
- platform/chromium-mac/tables/mozilla/marvin/x_tfoot_align_justify-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/marvin/x_tfoot_align_justify-expected.png: Added.
- platform/chromium-mac/tables/mozilla/marvin/x_th_align_justify-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/marvin/x_th_align_justify-expected.png: Added.
- platform/chromium-mac/tables/mozilla/marvin/x_thead_align_justify-expected.checksum:
- platform/chromium-mac/tables/mozilla/marvin/x_thead_align_justify-expected.png:
- platform/chromium-mac/tables/mozilla/marvin/x_tr_align_justify-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/marvin/x_tr_align_justify-expected.png: Added.
- platform/chromium-mac/tables/mozilla/other/move_row-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/other/move_row-expected.png: Added.
- platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug1725-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug1725-expected.png: Added.
- platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png: Added.
- platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug58402-2-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug58402-2-expected.png: Added.
- platform/chromium-mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.png: Added.
- platform/chromium-mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.png: Added.
- platform/chromium/test_expectations.txt:
- 2:18 PM Changeset in webkit [79033] by
-
- 6 edits in trunk/Source/WebCore
2011-02-18 James Robinson <jamesr@chromium.org>
Reviewed by Kenneth Russell.
[chromium] Update texture for ContentLayerChromiums in draw() call instead of updateContents..() call
https://bugs.webkit.org/show_bug.cgi?id=54315
This defers all operations on the compositor's GL context until the
draw() call which is a prerequisite for moving the draw() off-thread.
Also cleans up the update cycle a bit - there were some unused local
variables and whatnot.
One consequence of this change is that the upload buffer is retained
across updates now instead of allocated by each paint. This is
necessary so that the full layer contents can be uploaded if the
texture manager evicts the layer's backing texture. This costs more
persistent memory but avoids lots of allocator churn on updates.
Another nonobvious detail is that I have to update the texture for
ContentLayerChromiums in bindContentsTexture() because mask layers
never draw(), they are instead bound to the secondary texture unit.
- platform/graphics/chromium/ContentLayerChromium.cpp: (WebCore::ContentLayerChromium::requiresClippedUpdateRect): (WebCore::ContentLayerChromium::updateContentsIfDirty): (WebCore::ContentLayerChromium::resizeUploadBufferForImage): (WebCore::ContentLayerChromium::resizeUploadBuffer): (WebCore::SkBitmapConditionalAutoLockerPixels::SkBitmapConditionalAutoLockerPixels): (WebCore::SkBitmapConditionalAutoLockerPixels::~SkBitmapConditionalAutoLockerPixels): (WebCore::SkBitmapConditionalAutoLockerPixels::lockPixels): (WebCore::ContentLayerChromium::updateTextureIfNeeded): (WebCore::ContentLayerChromium::draw): (WebCore::ContentLayerChromium::unreserveContentsTexture): (WebCore::ContentLayerChromium::bindContentsTexture):
- platform/graphics/chromium/ContentLayerChromium.h:
- platform/graphics/chromium/ImageLayerChromium.cpp: (WebCore::ImageLayerChromium::updateContentsIfDirty):
- platform/graphics/chromium/LayerChromium.cpp: (WebCore::LayerChromium::setBounds):
- platform/graphics/chromium/LayerChromium.h:
- 2:16 PM Changeset in webkit [79032] by
-
- 2 edits in trunk/Source/WebKit/qt
Unreviewed.
[Qt] Buildfix for platforms with geolocation disabled.
- Api/qwebpage.cpp: Add the missing guard.
- 1:53 PM Changeset in webkit [79031] by
-
- 2 edits in trunk/Source/WebCore
2011-02-18 Kenneth Russell <kbr@google.com>
Unreviewed, Chromium build fix on certain Linux platforms.
- platform/graphics/gpu/LoopBlinnSolidFillShader.cpp:
- 1:51 PM Changeset in webkit [79030] by
-
- 2 edits in trunk/Source/WebKit2
2011-02-18 Anders Carlsson <andersca@apple.com>
Reviewed by Simon Fraser.
Implement NetscapePlugin::pluginComplexTextInputIdentifier
https://bugs.webkit.org/show_bug.cgi?id=54770
- WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm: (WebKit::NetscapePlugin::pluginComplexTextInputIdentifier):
- 1:44 PM Changeset in webkit [79029] by
-
- 1 edit1 add in trunk/LayoutTests
Unreviewed expectations update.
- platform/chromium-win/inspector/styles-update-from-js-expected.txt: Added.
- 1:40 PM Changeset in webkit [79028] by
-
- 11 edits2 adds2 deletes in trunk
[Qt] Implement client based geolocation for qtport
https://bugs.webkit.org/show_bug.cgi?id=42629
Patch by Mahesh Kulkarni <mahesh.kulkarni@nokia.com> on 2011-02-18
Reviewed by Kenneth Rohde Christiansen.
Source/WebCore:
Implements client based geolocation for qtwebkit. Removed old code related to non-client based geolocation
No tests as yet. This will be raised as different bug as new mock client implementation need to be done.
- WebCore.pro:
- features.pri:
- platform/qt/GeolocationServiceQt.cpp: Removed.
- platform/qt/GeolocationServiceQt.h: Removed.
Source/WebKit/qt:
Implements client based geolocation for qtwebkit.
New client based geolocation contains permission API's as well,
so removed the implementation from ChromeClientQt.cpp.
- Api/qwebpage.cpp:
(QWebPagePrivate::QWebPagePrivate):
- WebCoreSupport/ChromeClientQt.cpp:
- WebCoreSupport/ChromeClientQt.h:
(WebCore::ChromeClientQt::requestGeolocationPermissionForFrame):
(WebCore::ChromeClientQt::cancelGeolocationPermissionRequestForFrame):
- WebCoreSupport/GeolocationClientQt.cpp: Added.
(WebCore::GeolocationClientQt::GeolocationClientQt):
(WebCore::GeolocationClientQt::~GeolocationClientQt):
(WebCore::GeolocationClientQt::geolocationDestroyed):
(WebCore::GeolocationClientQt::positionUpdated):
(WebCore::GeolocationClientQt::startUpdating):
(WebCore::GeolocationClientQt::stopUpdating):
(WebCore::GeolocationClientQt::setEnableHighAccuracy):
(WebCore::GeolocationClientQt::requestPermission):
(WebCore::GeolocationClientQt::cancelPermissionRequest):
- WebCoreSupport/GeolocationClientQt.h: Added.
(WebCore::GeolocationClientQt::lastPosition):
LayoutTests:
Disable Geolocation layout test case until client-based mock layout controller is implemented.
- platform/qt/Skipped:
- 1:32 PM Changeset in webkit [79027] by
-
- 5 edits in trunk/LayoutTests
2011-02-18 Mihai Parparita <mihaip@chromium.org>
Unreviewed mac baseline update. Update some lingering failures after
r78846 (initial baselines in r78884 and r78855 were incorrect).
- media/controls-without-preload-expected.txt:
- platform/mac/fast/forms/text-control-intrinsic-widths-expected.txt:
- platform/mac/fast/text/international/bidi-control-chars-treated-as-ZWS-expected.txt:
- platform/mac/fast/text/international/bidi-mirror-he-ar-expected.txt:
- 1:30 PM Changeset in webkit [79026] by
-
- 2 edits in trunk/LayoutTests
2011-02-18 Martin Robinson <mrobinson@igalia.com>
Reorganize the GTK+ skipped list to make it easier to triage issues
and ease any future switch to test_expectations.txt format.
- platform/gtk/Skipped: Reorganize the GTK+ skipped list.
- 1:29 PM Changeset in webkit [79025] by
-
- 10 edits in trunk/Source/WebKit2
Add the ability to ask the WKPage if the main frame is pinned
to the right or left hand side.
Part of <rdar://problem/9017043>.
Reviewed by Maciej Stachowiak.
- UIProcess/API/C/WKPage.cpp:
(WKPageIsPinnedToLeftSide):
(WKPageIsPinnedToRightSide):
- UIProcess/API/C/WKPage.h:
Add new API calls.
- UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::WebPageProxy):
(WebKit::WebPageProxy::close):
(WebKit::WebPageProxy::processDidCrash):
(WebKit::WebPageProxy::didChangeScrollOffsetPinningForMainFrame):
- UIProcess/WebPageProxy.h:
(WebKit::WebPageProxy::isPinnedToLeftSide):
(WebKit::WebPageProxy::isPinnedToRightSide):
Initialize, reset and update the pinned state.
- UIProcess/WebPageProxy.messages.in:
Add message to update the pinned state.
- WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:
(WebKit::WebFrameLoaderClient::didChangeScrollOffset):
- WebProcess/WebCoreSupport/WebFrameLoaderClient.h:
- WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::WebPage):
(WebKit::WebPage::didChangeScrollOffsetForMainFrame):
- WebProcess/WebPage/WebPage.h:
Cache the pinned state, and only update the UIProcess when it
changes.
- 1:28 PM Changeset in webkit [79024] by
-
- 12 edits14 adds in trunk
Add support for dir=auto
https://bugs.webkit.org/show_bug.cgi?id=50916
Reviewed by Dave Hyatt.
Source/JavaScriptCore:
Change defaultWritingDirection() to return if the writing direction
was determined from a letter with strong directionality or not.
- JavaScriptCore.exp:
- JavaScriptCore.order:
- wtf/text/StringImpl.cpp:
(WTF::StringImpl::defaultWritingDirection):
- wtf/text/StringImpl.h:
- wtf/text/WTFString.h:
(WTF::String::defaultWritingDirection):
Source/WebCore:
When an element has dir attribute with value "auto", call defaultWritingMode
to find its directionality.
Added a flag SelfOrAncestorHasDirAutoFlag, and added hooks in the DOM to set
and check this flag. This flag is set on every node between an element with
dir=auto attribute and its first text node. Changes in the DOM between those
elements will trigger re-evaluating the directionality, but changes not
between those element do not need to be concerned.
The DOM hooks were added to childrenChanged, and to parseMappedAttribute.
The directionality is evaluated when children are added, and cleared when they are
removed. Directionality flag is also cleared on a child that is no longer determining
the directionality due to a sibling being added before that child.
Added 2 static CSSMutableStyleDeclarations to be used for elements with dir=auto.
We cannot used the mapped declaration, because it can take only one value.
Tests: fast/dom/HTMLElement/attr-dir-auto-change-before-text-node.html
fast/dom/HTMLElement/attr-dir-auto-change-child-node.html
fast/dom/HTMLElement/attr-dir-auto-change-text.html
fast/dom/HTMLElement/attr-dir-auto-children.html
fast/dom/HTMLElement/attr-dir-auto-remove-add-children.html
fast/dom/HTMLElement/attr-dir-auto.html
fast/dom/HTMLElement/attr-dir-value-change.html
- css/CSSStyleSelector.cpp:
(WebCore::leftToRightDeclaration):
(WebCore::rightToLeftDeclaration):
(WebCore::CSSStyleSelector::canShareStyleWithElement):
(WebCore::CSSStyleSelector::styleForElement):
- dom/Node.h:
(WebCore::Node::selfOrAncestorHasDirAutoAttribute):
(WebCore::Node::setSelfOrAncestorHasDirAutoAttribute):
- html/HTMLElement.cpp:
(WebCore::HTMLElement::mapToEntry):
(WebCore::HTMLElement::parseMappedAttribute):
(WebCore::setHasDirAutoFlagRecursively):
(WebCore::HTMLElement::childrenChanged):
(WebCore::HTMLElement::directionalityIfhasDirAutoAttribute):
(WebCore::HTMLElement::directionality):
(WebCore::HTMLElement::dirAttributeChanged):
(WebCore::HTMLElement::adjustDirectionalityIfNeededAfterChildAttributeChanged):
(WebCore::HTMLElement::calculateAndAdjustDirectionality):
(WebCore::HTMLElement::adjustDirectionalityIfNeededAfterChildrenChanged):
- html/HTMLElement.h:
LayoutTests:
- fast/dom/HTMLElement/attr-dir-auto-change-before-text-node.html: Added.
- fast/dom/HTMLElement/attr-dir-auto-change-before-text-node-expected.txt: Added.
- fast/dom/HTMLElement/attr-dir-auto-change-child-node-expected.txt: Added.
- fast/dom/HTMLElement/attr-dir-auto-change-child-node.html: Added.
- fast/dom/HTMLElement/attr-dir-auto-change-text-expected.txt: Added.
- fast/dom/HTMLElement/attr-dir-auto-change-text.html: Added.
- fast/dom/HTMLElement/attr-dir-auto-children-expected.txt: Added.
- fast/dom/HTMLElement/attr-dir-auto-children.html: Added.
- fast/dom/HTMLElement/attr-dir-auto-expected.txt: Added.
- fast/dom/HTMLElement/attr-dir-auto-remove-add-children-expected.txt: Added.
- fast/dom/HTMLElement/attr-dir-auto-remove-add-children.html: Added.
- fast/dom/HTMLElement/attr-dir-auto.html: Added.
- fast/dom/HTMLElement/attr-dir-value-change-expected.txt: Added.
- fast/dom/HTMLElement/attr-dir-value-change.html: Added.
- 1:23 PM Changeset in webkit [79023] by
-
- 3 edits in trunk/Source/WebKit2
2011-02-18 Anders Carlsson <andersca@apple.com>
Reviewed by Simon Fraser.
Fix assertion in SharedMemory::create when trying to snapshot 0x0 plug-in
https://bugs.webkit.org/show_bug.cgi?id=54768
- PluginProcess/PluginControllerProxy.cpp: (WebKit::PluginControllerProxy::snapshot): Don't try to create a handle from a null ShareableBitmap.
- WebProcess/Plugins/Netscape/NetscapePlugin.cpp: (WebKit::NetscapePlugin::snapshot): Check for a zero sized plug-in before trying to create a snapshot.
- 1:10 PM Changeset in webkit [79022] by
-
- 2 edits in trunk/Source/JavaScriptCore
2011-02-18 Geoffrey Garen <ggaren@apple.com>
Reviewed by Sam Weinig.
Use hashing instead of linear search in the conservative pointer test
https://bugs.webkit.org/show_bug.cgi?id=54767
SunSpider reports no change.
- runtime/MarkedSpace.h: (JSC::MarkedSpace::contains): Variable-sized objects will use more, smaller blocks, so it's important for the contains check not to be O(n) in the number of blocks.
- 1:05 PM Changeset in webkit [79021] by
-
- 5 edits2 adds in trunk
Navigating downwards / upwards does not focus on the links spread across more than one line.
https://bugs.webkit.org/show_bug.cgi?id=54639
Reviewed by Antonio Gomes.
Source/WebCore:
When 2 anchor elements span more than one line each, and one ends on the same line that the
second starts on, the rects reported by their renderers are overlapping. When handling
2 overlapping nodes, check for this case, and don't assume that one of the nodes is on a higher layer.
Test: fast/spatial-navigation/snav-two-elements-one-line.html
- page/FocusController.cpp:
(WebCore::updateFocusCandidateIfNeeded):
(WebCore::FocusController::findFocusCandidateInContainer):
- page/SpatialNavigation.cpp:
(WebCore::areElementsOnSameLine):
(WebCore::distanceDataForNode):
- page/SpatialNavigation.h:
LayoutTests:
- fast/spatial-navigation/snav-two-elements-one-line-expected.txt: Added.
- fast/spatial-navigation/snav-two-elements-one-line.html: Added.
- 12:55 PM Changeset in webkit [79020] by
-
- 7 edits in trunk/Source/WebKit2
2011-02-18 Anders Carlsson <andersca@apple.com>
Reviewed by Simon Fraser.
WKView flashes when entering/exiting compositing mode
https://bugs.webkit.org/show_bug.cgi?id=54695
<rdar://problem/9011554>
- UIProcess/API/mac/WKView.mm: (-[WKView _exitAcceleratedCompositingMode]): Remove the layer hosting view before clearing out its layer, otherwise we can get white flashes when exiting accelerated compositing mode.
- WebProcess/WebPage/DrawingAreaImpl.cpp: When entering accelerated compositing mode, we want to defer sending the message until we've actually committed the layer tree and pushed all changes over to the UI process.
(WebKit::DrawingAreaImpl::layerHostDidFlushLayers):
Tell the layer tree host to force a repaint. This will ensure that all layer tree
changes are pushed over to the UI process. When that is done, send the new layer tree
context over to the UI process.
(WebKit::DrawingAreaImpl::setRootCompositingLayer):
When exiting compositing mode in response to a didSetSize, we want to exit accelerated
compositing mode right away to avoid flashes. This is safe since we've laid out the page
already so we won't end up reentering setRootCompositingLayer.
(WebKit::DrawingAreaImpl::enterAcceleratedCompositingMode):
Tell the layer tree host to notify us when the next layer tree flush happened, so we can
let the UI process know. If we're entering accelerated compositing mode in response to a
SetSize message, the new layer tree context will be passed in the DidSetSize message.
- WebProcess/WebPage/DrawingAreaImpl.h: Add layerHostDidFlushLayers.
- WebProcess/WebPage/LayerTreeHost.h: Add setShouldNotifyAfterNextScheduledLayerFlush.
- WebProcess/WebPage/mac/LayerTreeHostMac.h: Add a m_notifyAfterScheduledLayerFlush flag.
- WebProcess/WebPage/mac/LayerTreeHostMac.mm: (WebKit::LayerTreeHostMac::LayerTreeHostMac): Initialize m_notifyAfterScheduledLayerFlush to false.
(WebKit::LayerTreeHostMac::setShouldNotifyAfterNextScheduledLayerFlush):
Set m_notifyAfterScheduledLayerFlush to true.
(WebKit::LayerTreeHostMac::flushPendingLayerChangesRunLoopObserverCallback):
If m_notifyAfterScheduledLayerFlush is true, call DrawingAreaImpl::layerHostDidFlushLayers.
- 12:43 PM Changeset in webkit [79019] by
-
- 2 edits566 deletes in trunk/LayoutTests
2011-02-18 Andrew Wilson <atwilson@chromium.org>
Unreviewed, rolling out r79007.
http://trac.webkit.org/changeset/79007
Rebaselines were put in the wrong directory due to bug 54691
- platform/chromium-mac-snowleopard/compositing/reflections/deeply-nested-reflections-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/compositing/reflections/deeply-nested-reflections-expected.png: Removed.
- platform/chromium-mac-snowleopard/css1/box_properties/clear_float-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/css1/box_properties/clear_float-expected.png: Removed.
- platform/chromium-mac-snowleopard/css1/box_properties/float_elements_in_series-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/css1/box_properties/float_elements_in_series-expected.png: Removed.
- platform/chromium-mac-snowleopard/css1/box_properties/float_on_text_elements-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/css1/box_properties/float_on_text_elements-expected.png: Removed.
- platform/chromium-mac-snowleopard/css1/text_properties/text_align-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/css1/text_properties/text_align-expected.png: Removed.
- platform/chromium-mac-snowleopard/css2.1/t0805-c5518-brdr-t-01-e-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/css2.1/t0805-c5518-brdr-t-01-e-expected.png: Removed.
- platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltcont-00-d-g-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltcont-00-d-g-expected.png: Removed.
- platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltwidth-00-c-g-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png: Removed.
- platform/chromium-mac-snowleopard/css2.1/t1202-counter-03-b-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/css2.1/t1202-counter-03-b-expected.png: Removed.
- platform/chromium-mac-snowleopard/css2.1/t1202-counter-04-b-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/css2.1/t1202-counter-04-b-expected.png: Removed.
- platform/chromium-mac-snowleopard/css2.1/t1202-counter-04-b-expected.txt: Removed.
- platform/chromium-mac-snowleopard/css2.1/t1202-counters-03-b-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/css2.1/t1202-counters-03-b-expected.png: Removed.
- platform/chromium-mac-snowleopard/css2.1/t1202-counters-04-b-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/css2.1/t1202-counters-04-b-expected.png: Removed.
- platform/chromium-mac-snowleopard/css2.1/t1202-counters-04-b-expected.txt: Removed.
- platform/chromium-mac-snowleopard/css2.1/t1602-c43-center-00-d-ag-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/css2.1/t1602-c43-center-00-d-ag-expected.png: Removed.
- platform/chromium-mac-snowleopard/css2.1/t1602-c546-txt-align-00-b-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/css2.1/t1602-c546-txt-align-00-b-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/deleting/delete-tab-003-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/deleting/delete-tab-003-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/deleting/delete-ws-fixup-001-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/deleting/delete-ws-fixup-001-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/inserting/insert-tab-003-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/inserting/insert-tab-003-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/inserting/typing-tab-designmode-forms-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/inserting/typing-tab-designmode-forms-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/pasteboard/4641033-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/pasteboard/4641033-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/pasteboard/block-wrappers-necessary-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/pasteboard/block-wrappers-necessary-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/pasteboard/nested-blocks-with-text-area-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/pasteboard/nested-blocks-with-text-area-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/pasteboard/nested-blocks-with-text-field-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/pasteboard/nested-blocks-with-text-field-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/pasteboard/paste-blockquote-2-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/pasteboard/paste-blockquote-2-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/pasteboard/pasting-tabs-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/pasteboard/pasting-tabs-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/selection/3690703-2-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/selection/3690703-2-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/selection/3690703-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/selection/3690703-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/selection/3690719-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/selection/3690719-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/selection/4397952-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/selection/4397952-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/selection/4975120-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/selection/4975120-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/selection/5240265-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/selection/5240265-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/selection/caret-rtl-2-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/selection/caret-rtl-2-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/selection/caret-rtl-2-left-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/selection/caret-rtl-2-left-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/selection/caret-rtl-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/selection/caret-rtl-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/selection/caret-rtl-right-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/selection/caret-rtl-right-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/selection/extend-selection-bidi-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/selection/extend-selection-bidi-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/selection/move-past-trailing-space-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/selection/replaced-boundaries-3-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/selection/replaced-boundaries-3-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/selection/select-from-textfield-outwards-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/selection/select-from-textfield-outwards-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/style/5046875-1-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/style/5046875-1-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/style/create-block-for-style-011-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/style/create-block-for-style-011-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/style/create-block-for-style-012-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/style/create-block-for-style-012-expected.png: Removed.
- platform/chromium-mac-snowleopard/editing/style/table-selection-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/editing/style/table-selection-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/block/margin-collapse/103-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/block/margin-collapse/103-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/block/positioning/inline-block-relposition-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/block/positioning/inline-block-relposition-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/blockflow/Kusa-Makura-background-canvas-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/blockflow/Kusa-Makura-background-canvas-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/blockflow/border-vertical-lr-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/blockflow/border-vertical-lr-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/blockflow/border-vertical-lr-expected.txt: Removed.
- platform/chromium-mac-snowleopard/fast/blockflow/japanese-lr-selection-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/blockflow/japanese-lr-selection-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/blockflow/japanese-lr-text-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/blockflow/japanese-lr-text-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/blockflow/japanese-rl-selection-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/blockflow/japanese-rl-selection-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/blockflow/japanese-rl-text-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/blockflow/japanese-rl-text-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/blockflow/japanese-ruby-vertical-lr-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/blockflow/japanese-ruby-vertical-lr-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/blockflow/japanese-ruby-vertical-rl-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/blockflow/japanese-ruby-vertical-rl-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/blockflow/vertical-align-table-baseline-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/blockflow/vertical-align-table-baseline-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/blockflow/vertical-baseline-alignment-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/blockflow/vertical-baseline-alignment-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/blockflow/vertical-font-fallback-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/blockflow/vertical-font-fallback-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/css/beforeSelectorOnCodeElement-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/css/beforeSelectorOnCodeElement-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/css/continuationCrash-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/css/continuationCrash-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/css/css2-system-fonts-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/css/css2-system-fonts-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/css/font-face-default-font-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/css/font-face-default-font-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/css/font-face-locally-installed-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/css/font-face-locally-installed-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/css/margin-top-bottom-dynamic-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/css/margin-top-bottom-dynamic-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/css/rtl-ordering-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/css/rtl-ordering-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/css/text-input-with-webkit-border-radius-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/css/text-input-with-webkit-border-radius-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/css/text-overflow-ellipsis-bidi-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/css/text-overflow-ellipsis-bidi-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/css/text-overflow-ellipsis-strict-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/css/text-overflow-ellipsis-strict-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/css/text-security-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/css/text-security-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/dom/52776-expected.txt: Removed.
- platform/chromium-mac-snowleopard/fast/dom/HTMLInputElement/input-image-alt-text-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/dom/HTMLInputElement/input-image-alt-text-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/dom/HTMLTextAreaElement/reset-textarea-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/dom/HTMLTextAreaElement/reset-textarea-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/dynamic/008-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/dynamic/008-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/events/autoscroll-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/events/autoscroll-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/events/context-no-deselect-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/events/context-no-deselect-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label01-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label01-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label02-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label02-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label03-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label03-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label04-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label04-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/basic-buttons-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/basic-buttons-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/basic-selects-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/basic-selects-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/basic-selects-expected.txt: Removed.
- platform/chromium-mac-snowleopard/fast/forms/basic-textareas-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/basic-textareas-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/basic-textareas-quirks-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/basic-textareas-quirks-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/blankbuttons-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/blankbuttons-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/button-align-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/button-align-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/button-cannot-be-nested-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/button-cannot-be-nested-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/button-default-title-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/button-default-title-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/button-generated-content-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/button-generated-content-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/button-positioned-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/button-positioned-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/button-sizes-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/button-sizes-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/button-style-color-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/button-style-color-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/button-table-styles-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/button-table-styles-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/button-text-transform-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/button-text-transform-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/button-white-space-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/button-white-space-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/control-clip-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/control-clip-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/control-restrict-line-height-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/control-restrict-line-height-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/file-input-direction-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/file-input-direction-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/file-input-direction-expected.txt: Removed.
- platform/chromium-mac-snowleopard/fast/forms/formmove3-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/formmove3-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-align-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-align-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-bkcolor-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-bkcolor-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-default-bkcolor-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-default-bkcolor-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-disabled-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-disabled-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-focus-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-focus-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-preventDefault-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-preventDefault-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-readonly-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-readonly-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-selection-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-selection-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-visibility-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-visibility-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-width-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-width-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-button-sizes-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-button-sizes-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-disabled-color-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-disabled-color-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-double-click-selection-gap-bug-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-double-click-selection-gap-bug-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-field-text-truncated-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-field-text-truncated-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-file-re-render-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-file-re-render-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-first-letter-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-first-letter-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-readonly-autoscroll-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-readonly-autoscroll-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-readonly-dimmed-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-readonly-dimmed-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-spaces-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-spaces-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-table-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-table-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-text-double-click-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-text-double-click-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-text-drag-down-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-text-drag-down-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-text-scroll-left-on-blur-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-text-scroll-left-on-blur-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-text-word-wrap-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/input-text-word-wrap-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/menulist-no-overflow-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/menulist-no-overflow-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/menulist-option-wrap-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/menulist-option-wrap-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/menulist-restrict-line-height-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/menulist-restrict-line-height-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/menulist-style-color-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/menulist-style-color-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/menulist-width-change-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/menulist-width-change-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/option-strip-whitespace-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/option-strip-whitespace-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/option-text-clip-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/option-text-clip-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/placeholder-position-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/placeholder-position-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/placeholder-set-value-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/placeholder-set-value-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/plaintext-mode-2-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/plaintext-mode-2-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/search-cancel-button-style-sharing-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/search-cancel-button-style-sharing-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/search-rtl-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/search-rtl-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/search-transformed-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/search-transformed-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/search-zoomed-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/search-zoomed-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/select-align-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/select-align-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/select-baseline-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/select-baseline-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/select-change-listbox-to-popup-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/select-change-listbox-to-popup-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/select-disabled-appearance-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/select-disabled-appearance-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/select-initial-position-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/select-initial-position-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/select-selected-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/select-selected-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/select-visual-hebrew-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/select-visual-hebrew-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/stuff-on-my-optgroup-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/stuff-on-my-optgroup-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/tabbing-input-iframe-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/tabbing-input-iframe-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/targeted-frame-submission-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/targeted-frame-submission-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/text-control-intrinsic-widths-expected.txt: Removed.
- platform/chromium-mac-snowleopard/fast/forms/text-style-color-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/text-style-color-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/textarea-align-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/textarea-align-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/textarea-placeholder-set-value-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/textarea-placeholder-set-value-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/textarea-scroll-height-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/textarea-scroll-height-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/textarea-scrolled-type-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/textarea-scrolled-type-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/forms/visual-hebrew-text-field-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/forms/visual-hebrew-text-field-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/html/keygen-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/html/keygen-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/inline/inline-box-background-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/inline/inline-box-background-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/inline/inline-box-background-long-image-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/inline/inline-box-background-long-image-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/inline/inline-box-background-repeat-x-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/inline/inline-box-background-repeat-x-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/inline/inline-box-background-repeat-y-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/inline/inline-box-background-repeat-y-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/lists/dynamic-marker-crash-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/lists/dynamic-marker-crash-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/multicol/float-avoidance-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/multicol/float-avoidance-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/multicol/shadow-breaking-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/multicol/shadow-breaking-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/parser/document-write-option-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/parser/document-write-option-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/parser/entity-comment-in-textarea-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/parser/entity-comment-in-textarea-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/parser/open-comment-in-textarea-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/parser/open-comment-in-textarea-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/japanese-rl-selection-clear-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/japanese-rl-selection-clear-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/japanese-rl-selection-repaint-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/japanese-rl-selection-repaint-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-1-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-1-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-10-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-10-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-2-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-2-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-3-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-3-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-4-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-4-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-5-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-5-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-6-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-6-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-7-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-7-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-8-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-8-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-9-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-9-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/repaint-across-writing-mode-boundary-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/repaint-across-writing-mode-boundary-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-horizontal-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-horizontal-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-strict-horizontal-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-strict-horizontal-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-strict-vertical-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-strict-vertical-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-vertical-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-vertical-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/replaced/width100percent-button-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/replaced/width100percent-button-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/replaced/width100percent-searchfield-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/replaced/width100percent-searchfield-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/replaced/width100percent-textarea-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/replaced/width100percent-textarea-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/replaced/width100percent-textfield-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/replaced/width100percent-textfield-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/selectors/064-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/selectors/064-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/speech/input-appearance-speechbutton-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/speech/input-appearance-speechbutton-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/speech/input-appearance-speechbutton-expected.txt: Removed.
- platform/chromium-mac-snowleopard/fast/table/append-cells2-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/table/append-cells2-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/table/border-collapsing/004-vertical-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/table/border-collapsing/004-vertical-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/table/frame-and-rules-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/table/frame-and-rules-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/table/remove-td-display-none-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/table/remove-td-display-none-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/atsui-partial-selection-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/atsui-partial-selection-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/backslash-to-yen-sign-euc-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/backslash-to-yen-sign-euc-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/bidi-embedding-pop-and-push-same-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/bidi-embedding-pop-and-push-same-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/capitalize-boundaries-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/capitalize-boundaries-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/in-rendered-text-rtl-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/in-rendered-text-rtl-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-AN-after-L-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-AN-after-L-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-AN-after-L-expected.txt: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-L2-run-reordering-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-L2-run-reordering-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-CSS-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-CSS-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-HTML-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-HTML-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-formatting-characters-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-formatting-characters-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-control-chars-treated-as-ZWS-expected.txt: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-european-terminators-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-european-terminators-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-ignored-for-first-child-inline-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-ignored-for-first-child-inline-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-innertext-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-innertext-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-layout-across-linebreak-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-layout-across-linebreak-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-linebreak-001-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-linebreak-001-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-linebreak-002-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-linebreak-002-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-linebreak-003-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-linebreak-003-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-listbox-atsui-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-listbox-atsui-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-listbox-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-listbox-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-mirror-he-ar-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-mirror-he-ar-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-mirror-he-ar-expected.txt: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-neutral-run-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-neutral-run-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-neutral-run-expected.txt: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-override-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-override-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/hebrew-vowels-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/hebrew-vowels-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/hindi-spacing-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/hindi-spacing-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/pop-up-button-text-alignment-and-direction-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/pop-up-button-text-alignment-and-direction-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/pop-up-button-text-alignment-and-direction-expected.txt: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/rtl-caret-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/rtl-caret-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/rtl-white-space-pre-wrap-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/rtl-white-space-pre-wrap-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/text-combine-image-test-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/text-combine-image-test-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/international/text-combine-image-test-expected.txt: Removed.
- platform/chromium-mac-snowleopard/fast/text/justified-selection-at-edge-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/justified-selection-at-edge-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/justify-ideograph-simple-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/justify-ideograph-simple-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/justify-ideograph-vertical-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/justify-ideograph-vertical-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/justify-nbsp-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/justify-nbsp-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/line-breaks-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/line-breaks-expected.png: Removed.
- platform/chromium-mac-snowleopard/fast/text/trailing-white-space-2-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/trailing-white-space-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/word-break-run-rounding-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fast/text/word-break-run-rounding-expected.png: Removed.
- platform/chromium-mac-snowleopard/fonts/sans-serif-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/fonts/sans-serif-expected.png: Removed.
- platform/chromium-mac-snowleopard/svg/custom/animate-path-discrete-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/svg/custom/animate-path-discrete-expected.png: Removed.
- platform/chromium-mac-snowleopard/svg/custom/inline-svg-in-xhtml-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/svg/custom/inline-svg-in-xhtml-expected.png: Removed.
- platform/chromium-mac-snowleopard/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.png: Removed.
- platform/chromium-mac-snowleopard/svg/custom/svg-fonts-in-html-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/svg/custom/svg-fonts-in-html-expected.png: Removed.
- platform/chromium-mac-snowleopard/svg/custom/text-dom-01-f-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/svg/custom/text-dom-01-f-expected.png: Removed.
- platform/chromium-mac-snowleopard/svg/hixie/mixed/003-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/svg/hixie/mixed/003-expected.png: Removed.
- platform/chromium-mac-snowleopard/svg/zoom/page/zoom-hixie-mixed-008-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug113424-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug113424-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1188-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1188-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1318-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1318-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug138725-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug138725-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug14323-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug14323-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug18359-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug18359-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2479-2-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2479-2-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2479-3-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2479-3-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug26178-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug26178-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug28928-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug28928-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2962-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2962-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug30692-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug30692-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug33855-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug33855-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug39209-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug39209-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4429-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4429-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug44505-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug44505-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4527-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4527-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug46368-1-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug46368-1-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug46368-2-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug46368-2-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug51037-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug51037-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug51727-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug51727-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug52505-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug52505-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug52506-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug52506-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug60749-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug60749-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug67915-1-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug67915-1-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug68912-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug68912-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug7342-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug7342-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug88035-1-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug88035-1-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug88035-2-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug88035-2-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug96334-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug96334-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/collapsing_borders/bug41262-4-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/collapsing_borders/bug41262-4-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/core/bloomberg-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/core/bloomberg-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/core/misc-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/core/misc-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/dom/tableDom-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/dom/tableDom-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_tbody_align_justify-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_tbody_align_justify-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_td_align_justify-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_td_align_justify-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_tfoot_align_justify-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_tfoot_align_justify-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_th_align_justify-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_th_align_justify-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_thead_align_justify-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_thead_align_justify-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_tr_align_justify-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_tr_align_justify-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/other/move_row-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla/other/move_row-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug1725-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug1725-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug2479-5-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug58402-2-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug58402-2-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.png: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.checksum: Removed.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.png: Removed.
- platform/chromium/test_expectations.txt:
- 12:26 PM Changeset in webkit [79018] by
-
- 2 edits202 adds in trunk/LayoutTests
2011-02-18 Martin Robinson <mrobinson@igalia.com>
Unskip the final set of tests on GTK+ that are missing results.
- platform/gtk/Skipped: Unskip tests that now have results.
- 12:07 PM Changeset in webkit [79017] by
-
- 6 edits in trunk/Source/JavaScriptCore
2011-02-18 Geoffrey Garen <ggaren@apple.com>
Reviewed by Sam Weinig.
Tightened some usage accounting code in MarkedSpace
https://bugs.webkit.org/show_bug.cgi?id=54761
SunSpider reports no change.
- runtime/Heap.cpp: (JSC::Heap::Heap): Initialize the marked space high water mark on construction, instead of relying on some implicit subtleties to make not initializing it work out OK.
- runtime/Heap.h: Fixed up includes.
- runtime/MarkedBlock.h: Made firstAtom() static so clients can call it even without having allocated a block.
- runtime/MarkedSpace.cpp: (JSC::MarkedSpace::MarkedSpace): Don't pre-allocate a block, since this would be prohibitively expensive with multiple size classes.
(JSC::MarkedSpace::allocateBlock):
(JSC::MarkedSpace::freeBlock): Track allocated blocks in a hash set,
since linear search in the contains check will be prohibitively
expensive once we're using lots of smaller blocks.
(JSC::MarkedSpace::allocate): Don't assume that we always have a block
allocated, since we don't anymore. (See above.)
(JSC::MarkedSpace::reset):
- runtime/MarkedSpace.h: Updated for changes mentioned above.
- 11:58 AM Changeset in webkit [79016] by
-
- 2 edits221 adds in trunk/LayoutTests
2011-02-18 Martin Robinson <mrobinson@igalia.com>
Import the final set of GTK+ baselines for the Mozilla table test suite.
- platform/gtk/Skipped: Unskip tests which now have results.
- 11:53 AM Changeset in webkit [79015] by
-
- 2 edits304 adds in trunk/LayoutTests
2011-02-18 Martin Robinson <mrobinson@igalia.com>
Import another set of GTK+ baselines for the Mozilla table tests.
- platform/gtk/Skipped: Unskip tests which now have results.
- 11:43 AM Changeset in webkit [79014] by
-
- 2 edits300 adds in trunk/LayoutTests
2011-02-18 Martin Robinson <mrobinson@igalia.com>
Continue importing GTK+ results for Mozilla table tests.
- platform/gtk/Skipped: Unskip test which now have results.
- 11:20 AM Changeset in webkit [79013] by
-
- 2 edits in trunk/LayoutTests
(new) media/video-controls-in-media-documents.html needs baselines for win & mac
https://bugs.webkit.org/show_bug.cgi?id=54757
Unreviewed, adding to the skip list for now until someone can generate the expected results.
- platform/win/Skipped:
- 11:10 AM Changeset in webkit [79012] by
-
- 2 edits in trunk/LayoutTests
2011-02-18 Alexander Pavlov <apavlov@chromium.org>
[Qt] Unreviewed, skip failing inspector/styles/styles-update-from-js.html.
- platform/qt/Skipped:
- 10:42 AM Changeset in webkit [79011] by
-
- 24 edits7 adds in trunk/Source
2011-02-18 Ben Vanik <benvanik@google.com>
Reviewed by Kenneth Russell.
Bug 53940: Implement the OES_vertex_array_object WebGL extension
https://bugs.webkit.org/show_bug.cgi?id=53940
Stubbed out methods for the new OES_vertex_array_object methods.
- src/Extensions3DChromium.cpp: (WebCore::Extensions3DChromium::createVertexArrayOES): (WebCore::Extensions3DChromium::deleteVertexArrayOES): (WebCore::Extensions3DChromium::isVertexArrayOES): (WebCore::Extensions3DChromium::bindVertexArrayOES):
2011-02-18 Ben Vanik <benvanik@google.com>
Reviewed by Kenneth Russell.
Bug 53940: Implement the OES_vertex_array_object WebGL extension
https://bugs.webkit.org/show_bug.cgi?id=53940
Initial implementation of the OES_vertex_array_object extension adding the OESVertexArrayObject
extension container and WebGLVertexArrayObjectOES VAO object. The extension is plumbed through
the Extensions3D interface and implemented in the Extensions3DOpenGL (WebKit/OSX) version when
it is available.
Two big changes touching code outside of the extension files:
- Moved the typedefs at the top of GraphicsContext3D.h to GraphicsTypes3D.h (modeled after GraphicsTypes.h). They are not namespaced as they weren't before.
- To make the code cleaner/clearer all vertex attribute state has been moved to the WebGLVertexArrayObjectOES type (struct VertexAttribState) except for values which are still on the WebGLRenderingContext. A default VAO is now used to store the existing attribute states for when no other VAO is used. Code in WebGLRenderingContext dealing with buffers and vertex attributes now defers to or stores values in the bound array object.
Tested against the WebGL conformance suite and the new
oes-vertex-array-object test:
https://cvs.khronos.org/svn/repos/registry/trunk/public/webgl/sdk/tests/conformance/oes-vertex-array-object.html
- CMakeLists.txt:
- CodeGenerators.pri:
- DerivedSources.make:
- GNUmakefile.am:
- WebCore.gyp: Modified property svn:ignore.
- WebCore.gypi:
- WebCore.pro:
- WebCore.xcodeproj/project.pbxproj:
- bindings/js/JSWebGLRenderingContextCustom.cpp: (WebCore::toJS):
- bindings/v8/custom/V8WebGLRenderingContextCustom.cpp: (WebCore::toV8Object):
- html/canvas/OESVertexArrayObject.cpp: Added. (WebCore::OESVertexArrayObject::OESVertexArrayObject): (WebCore::OESVertexArrayObject::~OESVertexArrayObject): (WebCore::OESVertexArrayObject::getName): (WebCore::OESVertexArrayObject::create): (WebCore::OESVertexArrayObject::createVertexArrayOES): (WebCore::OESVertexArrayObject::deleteVertexArrayOES): (WebCore::OESVertexArrayObject::isVertexArrayOES): (WebCore::OESVertexArrayObject::bindVertexArrayOES):
- html/canvas/OESVertexArrayObject.h: Added.
- html/canvas/OESVertexArrayObject.idl: Added.
- html/canvas/WebGLExtension.h:
- html/canvas/WebGLGetInfo.cpp: (WebCore::WebGLGetInfo::WebGLGetInfo): (WebCore::WebGLGetInfo::getWebGLVertexArrayObjectOES):
- html/canvas/WebGLGetInfo.h:
- html/canvas/WebGLRenderingContext.cpp: (WebCore::WebGLRenderingContext::initializeNewContext): (WebCore::WebGLRenderingContext::bindBuffer): (WebCore::WebGLRenderingContext::deleteBuffer): (WebCore::WebGLRenderingContext::disableVertexAttribArray): (WebCore::WebGLRenderingContext::validateElementArraySize): (WebCore::WebGLRenderingContext::validateIndexArrayConservative): (WebCore::WebGLRenderingContext::validateIndexArrayPrecise): (WebCore::WebGLRenderingContext::validateRenderingState): (WebCore::WebGLRenderingContext::drawElements): (WebCore::WebGLRenderingContext::enableVertexAttribArray): (WebCore::WebGLRenderingContext::getExtension): (WebCore::WebGLRenderingContext::getParameter): (WebCore::WebGLRenderingContext::getSupportedExtensions): (WebCore::WebGLRenderingContext::getVertexAttrib): (WebCore::WebGLRenderingContext::vertexAttribPointer): (WebCore::WebGLRenderingContext::validateBufferDataParameters): (WebCore::WebGLRenderingContext::vertexAttribfImpl): (WebCore::WebGLRenderingContext::vertexAttribfvImpl): (WebCore::WebGLRenderingContext::initVertexAttrib0): (WebCore::WebGLRenderingContext::simulateVertexAttrib0): (WebCore::WebGLRenderingContext::restoreStatesAfterVertexAttrib0Simulation): (WebCore::WebGLRenderingContext::getNumberOfExtensions): (WebCore::WebGLRenderingContext::getExtensionNumber):
- html/canvas/WebGLRenderingContext.h: (WebCore::WebGLRenderingContext::getMaxVertexAttribs): (WebCore::WebGLRenderingContext::setBoundVertexArrayObject): (WebCore::WebGLRenderingContext::VertexAttribValue::VertexAttribValue):
- html/canvas/WebGLVertexArrayObjectOES.cpp: Added. (WebCore::WebGLVertexArrayObjectOES::create): (WebCore::WebGLVertexArrayObjectOES::WebGLVertexArrayObjectOES): (WebCore::WebGLVertexArrayObjectOES::deleteObjectImpl):
- html/canvas/WebGLVertexArrayObjectOES.h: Added. (WebCore::WebGLVertexArrayObjectOES::~WebGLVertexArrayObjectOES): (WebCore::WebGLVertexArrayObjectOES::VertexAttribState::VertexAttribState): (WebCore::WebGLVertexArrayObjectOES::isDefaultObject): (WebCore::WebGLVertexArrayObjectOES::hasEverBeenBound): (WebCore::WebGLVertexArrayObjectOES::setHasEverBeenBound): (WebCore::WebGLVertexArrayObjectOES::getElementArrayBuffer): (WebCore::WebGLVertexArrayObjectOES::setElementArrayBuffer): (WebCore::WebGLVertexArrayObjectOES::getVertexAttribState): (WebCore::WebGLVertexArrayObjectOES::isVertexArray):
- html/canvas/WebGLVertexArrayObjectOES.idl: Added.
- platform/graphics/Extensions3D.h:
- platform/graphics/GraphicsContext3D.h:
- platform/graphics/GraphicsTypes3D.h: Added.
- platform/graphics/chromium/Extensions3DChromium.h:
- platform/graphics/opengl/Extensions3DOpenGL.cpp: (WebCore::Extensions3DOpenGL::supports): (WebCore::Extensions3DOpenGL::createVertexArrayOES): (WebCore::Extensions3DOpenGL::deleteVertexArrayOES): (WebCore::Extensions3DOpenGL::isVertexArrayOES): (WebCore::Extensions3DOpenGL::bindVertexArrayOES):
- platform/graphics/opengl/Extensions3DOpenGL.h:
- platform/graphics/qt/Extensions3DQt.cpp: (WebCore::Extensions3DQt::createVertexArrayOES): (WebCore::Extensions3DQt::deleteVertexArrayOES): (WebCore::Extensions3DQt::isVertexArrayOES): (WebCore::Extensions3DQt::bindVertexArrayOES):
- platform/graphics/qt/Extensions3DQt.h:
- 10:23 AM Changeset in webkit [79010] by
-
- 2 edits in trunk/LayoutTests
[Windows 7 Release Tests] ~26 tests failing after r78846
https://bugs.webkit.org/show_bug.cgi?id=54748
Unreviewed. Missed the contents of one of the expected result files.
- platform/win/fast/text/backslash-to-yen-sign-euc-expected.txt:
- 10:13 AM Changeset in webkit [79009] by
-
- 11 edits2 adds in trunk
2011-02-17 Alexander Pavlov <apavlov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: reflect changes to styles when they happen outside inspector.
https://bugs.webkit.org/show_bug.cgi?id=44620
Notify InspectorInstrumentation of inline style changes from CSSMutableStyleDeclaration
whenever the style change does not come from a direct "style" attribute modification.
The performance regression occurs only with the Web Inspector opened, when inline styles
are modified through setting style.cssText or style.<styleAttribute>: according to the Web Inspector protocol,
an attribute change requires that all attributes for the node in question be pushed into the frontend.
Test: inspector/styles/styles-update-from-js.html
WebCore:
- css/CSSMutableStyleDeclaration.cpp: (WebCore::CSSMutableStyleDeclaration::setNeedsStyleRecalc):
- inspector/InspectorDOMAgent.cpp: (WebCore::RevalidateStyleAttributeTask::reset): (WebCore::RevalidateStyleAttributeTask::RevalidateStyleAttributeTask): (WebCore::RevalidateStyleAttributeTask::scheduleFor): (WebCore::RevalidateStyleAttributeTask::onTimer): (WebCore::InspectorDOMAgent::reset): (WebCore::InspectorDOMAgent::didInvalidateStyleAttr):
- inspector/InspectorDOMAgent.h:
- inspector/InspectorInstrumentation.cpp: (WebCore::InspectorInstrumentation::didInvalidateStyleAttrImpl):
- inspector/InspectorInstrumentation.h: (WebCore::InspectorInstrumentation::didInvalidateStyleAttr):
- inspector/InspectorStyleSheet.cpp: (WebCore::InspectorStyleSheetForInlineStyle::didModifyElementAttribute): (WebCore::InspectorStyleSheetForInlineStyle::ensureParsedDataReady): (WebCore::InspectorStyleSheetForInlineStyle::elementStyleText):
- inspector/InspectorStyleSheet.h:
- inspector/front-end/ElementsPanel.js: (WebInspector.ElementsPanel.prototype._attributesUpdated):
- inspector/front-end/StylesSidebarPane.js: (WebInspector.StylesSidebarPane.prototype._rebuildSectionsForStyleRules): (WebInspector.StylesSidebarPane.prototype.addBlankSection): (WebInspector.StylePropertiesSection.prototype.onpopulate): (WebInspector.StylePropertiesSection.prototype.addNewBlankProperty): (WebInspector.ComputedStylePropertiesSection.prototype.onpopulate): (WebInspector.BlankStylePropertiesSection): (WebInspector.StylePropertyTreeElement): (WebInspector.StylePropertyTreeElement.prototype): (WebInspector.StylePropertyTreeElement.prototype.element.userInput.previousContent.context.moveDirection):
LayoutTests:
- inspector/styles/styles-update-from-js-expected.txt: Added.
- inspector/styles/styles-update-from-js.html: Added.
- 10:01 AM Changeset in webkit [79008] by
-
- 2 edits in trunk/Source/WebKit2
Reviewed by Adele Peterson.
REGRESSION (WebKit2): Wrong frame printed on tivofaq.com
https://bugs.webkit.org/show_bug.cgi?id=54677
<rdar://problem/8994133>
- WebProcess/WebCoreSupport/WebChromeClient.cpp: (WebKit::area): Use visible frame bounds. (WebKit::findLargestFrameInFrameSet): Added a comment explaining what we're up to here. WebKit2 shouldn't be making policy decisions for the client, but it gets dangerously close to that. We used to expose the same as WK1 API though.
- 9:46 AM Changeset in webkit [79007] by
-
- 2 edits614 adds in trunk/LayoutTests
Unreviewed expectations changes for Chromium.
- platform/chromium-mac-snowleopard/compositing/reflections/deeply-nested-reflections-expected.checksum: Added.
- platform/chromium-mac-snowleopard/compositing/reflections/deeply-nested-reflections-expected.png: Added.
- platform/chromium-mac-snowleopard/css1/box_properties/clear_float-expected.checksum: Added.
- platform/chromium-mac-snowleopard/css1/box_properties/clear_float-expected.png: Added.
- platform/chromium-mac-snowleopard/css1/box_properties/float_elements_in_series-expected.checksum: Added.
- platform/chromium-mac-snowleopard/css1/box_properties/float_elements_in_series-expected.png: Added.
- platform/chromium-mac-snowleopard/css1/box_properties/float_on_text_elements-expected.checksum: Added.
- platform/chromium-mac-snowleopard/css1/box_properties/float_on_text_elements-expected.png: Added.
- platform/chromium-mac-snowleopard/css1/text_properties/text_align-expected.checksum: Added.
- platform/chromium-mac-snowleopard/css1/text_properties/text_align-expected.png: Added.
- platform/chromium-mac-snowleopard/css2.1/t0805-c5518-brdr-t-01-e-expected.checksum: Added.
- platform/chromium-mac-snowleopard/css2.1/t0805-c5518-brdr-t-01-e-expected.png: Added.
- platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltcont-00-d-g-expected.checksum: Added.
- platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltcont-00-d-g-expected.png: Added.
- platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltwidth-00-c-g-expected.checksum: Added.
- platform/chromium-mac-snowleopard/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png: Added.
- platform/chromium-mac-snowleopard/css2.1/t1202-counter-03-b-expected.checksum: Added.
- platform/chromium-mac-snowleopard/css2.1/t1202-counter-03-b-expected.png: Added.
- platform/chromium-mac-snowleopard/css2.1/t1202-counter-04-b-expected.checksum: Added.
- platform/chromium-mac-snowleopard/css2.1/t1202-counter-04-b-expected.png: Added.
- platform/chromium-mac-snowleopard/css2.1/t1202-counter-04-b-expected.txt: Added.
- platform/chromium-mac-snowleopard/css2.1/t1202-counters-03-b-expected.checksum: Added.
- platform/chromium-mac-snowleopard/css2.1/t1202-counters-03-b-expected.png: Added.
- platform/chromium-mac-snowleopard/css2.1/t1202-counters-04-b-expected.checksum: Added.
- platform/chromium-mac-snowleopard/css2.1/t1202-counters-04-b-expected.png: Added.
- platform/chromium-mac-snowleopard/css2.1/t1202-counters-04-b-expected.txt: Added.
- platform/chromium-mac-snowleopard/css2.1/t1602-c43-center-00-d-ag-expected.checksum: Added.
- platform/chromium-mac-snowleopard/css2.1/t1602-c43-center-00-d-ag-expected.png: Added.
- platform/chromium-mac-snowleopard/css2.1/t1602-c546-txt-align-00-b-expected.checksum: Added.
- platform/chromium-mac-snowleopard/css2.1/t1602-c546-txt-align-00-b-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/deleting/delete-tab-003-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/deleting/delete-tab-003-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/deleting/delete-ws-fixup-001-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/deleting/delete-ws-fixup-001-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/inserting/insert-tab-003-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/inserting/insert-tab-003-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/inserting/typing-tab-designmode-forms-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/inserting/typing-tab-designmode-forms-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/pasteboard/4641033-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/pasteboard/4641033-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/pasteboard/block-wrappers-necessary-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/pasteboard/block-wrappers-necessary-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/pasteboard/nested-blocks-with-text-area-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/pasteboard/nested-blocks-with-text-area-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/pasteboard/nested-blocks-with-text-field-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/pasteboard/nested-blocks-with-text-field-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/pasteboard/paste-blockquote-2-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/pasteboard/paste-blockquote-2-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/pasteboard/pasting-tabs-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/pasteboard/pasting-tabs-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/selection/3690703-2-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/selection/3690703-2-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/selection/3690703-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/selection/3690703-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/selection/3690719-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/selection/3690719-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/selection/4397952-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/selection/4397952-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/selection/4975120-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/selection/4975120-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/selection/5240265-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/selection/5240265-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/selection/caret-rtl-2-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/selection/caret-rtl-2-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/selection/caret-rtl-2-left-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/selection/caret-rtl-2-left-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/selection/caret-rtl-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/selection/caret-rtl-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/selection/caret-rtl-right-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/selection/caret-rtl-right-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/selection/extend-selection-bidi-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/selection/extend-selection-bidi-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/selection/move-past-trailing-space-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/selection/replaced-boundaries-3-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/selection/replaced-boundaries-3-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/selection/select-from-textfield-outwards-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/selection/select-from-textfield-outwards-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/style/5046875-1-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/style/5046875-1-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/style/create-block-for-style-011-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/style/create-block-for-style-011-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/style/create-block-for-style-012-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/style/create-block-for-style-012-expected.png: Added.
- platform/chromium-mac-snowleopard/editing/style/table-selection-expected.checksum: Added.
- platform/chromium-mac-snowleopard/editing/style/table-selection-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/block/margin-collapse/103-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/block/margin-collapse/103-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/block/positioning/inline-block-relposition-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/block/positioning/inline-block-relposition-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/blockflow/Kusa-Makura-background-canvas-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/blockflow/Kusa-Makura-background-canvas-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/blockflow/border-vertical-lr-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/blockflow/border-vertical-lr-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/blockflow/border-vertical-lr-expected.txt: Added.
- platform/chromium-mac-snowleopard/fast/blockflow/japanese-lr-selection-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/blockflow/japanese-lr-selection-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/blockflow/japanese-lr-text-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/blockflow/japanese-lr-text-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/blockflow/japanese-rl-selection-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/blockflow/japanese-rl-selection-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/blockflow/japanese-rl-text-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/blockflow/japanese-rl-text-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/blockflow/japanese-ruby-vertical-lr-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/blockflow/japanese-ruby-vertical-lr-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/blockflow/japanese-ruby-vertical-rl-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/blockflow/japanese-ruby-vertical-rl-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/blockflow/vertical-align-table-baseline-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/blockflow/vertical-align-table-baseline-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/blockflow/vertical-baseline-alignment-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/blockflow/vertical-baseline-alignment-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/blockflow/vertical-font-fallback-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/blockflow/vertical-font-fallback-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/css/beforeSelectorOnCodeElement-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/css/beforeSelectorOnCodeElement-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/css/continuationCrash-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/css/continuationCrash-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/css/css2-system-fonts-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/css/css2-system-fonts-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/css/font-face-default-font-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/css/font-face-default-font-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/css/font-face-locally-installed-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/css/font-face-locally-installed-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/css/margin-top-bottom-dynamic-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/css/margin-top-bottom-dynamic-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/css/rtl-ordering-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/css/rtl-ordering-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/css/text-input-with-webkit-border-radius-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/css/text-input-with-webkit-border-radius-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/css/text-overflow-ellipsis-bidi-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/css/text-overflow-ellipsis-bidi-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/css/text-overflow-ellipsis-strict-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/css/text-overflow-ellipsis-strict-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/css/text-security-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/css/text-security-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/dom/52776-expected.txt: Added.
- platform/chromium-mac-snowleopard/fast/dom/HTMLInputElement/input-image-alt-text-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/dom/HTMLInputElement/input-image-alt-text-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/dom/HTMLTextAreaElement/reset-textarea-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/dom/HTMLTextAreaElement/reset-textarea-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/dynamic/008-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/dynamic/008-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/events/autoscroll-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/events/autoscroll-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/events/context-no-deselect-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/events/context-no-deselect-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label01-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label01-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label02-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label02-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label03-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label03-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label04-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/HTMLOptionElement_label04-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/basic-buttons-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/basic-buttons-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/basic-selects-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/basic-selects-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/basic-selects-expected.txt: Added.
- platform/chromium-mac-snowleopard/fast/forms/basic-textareas-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/basic-textareas-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/basic-textareas-quirks-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/basic-textareas-quirks-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/blankbuttons-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/blankbuttons-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/button-align-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/button-align-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/button-cannot-be-nested-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/button-cannot-be-nested-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/button-default-title-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/button-default-title-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/button-generated-content-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/button-generated-content-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/button-positioned-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/button-positioned-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/button-sizes-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/button-sizes-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/button-style-color-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/button-style-color-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/button-table-styles-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/button-table-styles-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/button-text-transform-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/button-text-transform-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/button-white-space-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/button-white-space-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/control-clip-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/control-clip-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/control-restrict-line-height-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/control-restrict-line-height-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/file-input-direction-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/file-input-direction-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/file-input-direction-expected.txt: Added.
- platform/chromium-mac-snowleopard/fast/forms/formmove3-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/formmove3-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-align-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-align-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-bkcolor-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-bkcolor-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-default-bkcolor-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-default-bkcolor-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-disabled-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-disabled-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-focus-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-focus-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-preventDefault-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-preventDefault-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-readonly-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-readonly-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-selection-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-selection-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-visibility-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-visibility-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-width-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-appearance-width-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-button-sizes-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-button-sizes-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-disabled-color-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-disabled-color-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-double-click-selection-gap-bug-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-double-click-selection-gap-bug-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-field-text-truncated-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-field-text-truncated-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-file-re-render-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-file-re-render-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-first-letter-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-first-letter-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-readonly-autoscroll-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-readonly-autoscroll-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-readonly-dimmed-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-readonly-dimmed-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-spaces-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-spaces-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-table-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-table-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-text-double-click-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-text-double-click-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-text-drag-down-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-text-drag-down-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-text-scroll-left-on-blur-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-text-scroll-left-on-blur-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-text-word-wrap-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/input-text-word-wrap-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/menulist-no-overflow-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/menulist-no-overflow-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/menulist-option-wrap-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/menulist-option-wrap-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/menulist-restrict-line-height-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/menulist-restrict-line-height-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/menulist-style-color-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/menulist-style-color-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/menulist-width-change-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/menulist-width-change-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/option-strip-whitespace-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/option-strip-whitespace-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/option-text-clip-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/option-text-clip-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/placeholder-position-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/placeholder-position-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/placeholder-set-value-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/placeholder-set-value-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/plaintext-mode-2-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/plaintext-mode-2-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/search-cancel-button-style-sharing-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/search-cancel-button-style-sharing-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/search-rtl-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/search-rtl-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/search-transformed-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/search-transformed-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/search-zoomed-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/search-zoomed-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/select-align-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/select-align-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/select-baseline-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/select-baseline-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/select-change-listbox-to-popup-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/select-change-listbox-to-popup-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/select-disabled-appearance-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/select-disabled-appearance-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/select-initial-position-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/select-initial-position-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/select-selected-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/select-selected-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/select-visual-hebrew-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/select-visual-hebrew-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/stuff-on-my-optgroup-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/stuff-on-my-optgroup-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/tabbing-input-iframe-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/tabbing-input-iframe-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/targeted-frame-submission-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/targeted-frame-submission-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/text-control-intrinsic-widths-expected.txt: Added.
- platform/chromium-mac-snowleopard/fast/forms/text-style-color-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/text-style-color-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/textarea-align-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/textarea-align-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/textarea-placeholder-set-value-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/textarea-placeholder-set-value-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/textarea-scroll-height-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/textarea-scroll-height-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/textarea-scrolled-type-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/textarea-scrolled-type-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/visual-hebrew-text-field-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/forms/visual-hebrew-text-field-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/html/keygen-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/html/keygen-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/inline/inline-box-background-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/inline/inline-box-background-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/inline/inline-box-background-long-image-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/inline/inline-box-background-long-image-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/inline/inline-box-background-repeat-x-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/inline/inline-box-background-repeat-x-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/inline/inline-box-background-repeat-y-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/inline/inline-box-background-repeat-y-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/lists/dynamic-marker-crash-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/lists/dynamic-marker-crash-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/multicol/float-avoidance-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/multicol/float-avoidance-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/multicol/shadow-breaking-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/multicol/shadow-breaking-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/overflow/scroll-nested-positioned-layer-in-overflow-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/parser/document-write-option-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/parser/document-write-option-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/parser/entity-comment-in-textarea-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/parser/entity-comment-in-textarea-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/parser/open-comment-in-textarea-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/parser/open-comment-in-textarea-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/repaint/japanese-rl-selection-clear-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/repaint/japanese-rl-selection-clear-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/repaint/japanese-rl-selection-repaint-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/repaint/japanese-rl-selection-repaint-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-1-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-1-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-10-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-10-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-2-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-2-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-3-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-3-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-4-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-4-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-5-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-5-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-6-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-6-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-7-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-7-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-8-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-8-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-9-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/repaint/line-flow-with-floats-9-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/repaint/repaint-across-writing-mode-boundary-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/repaint/repaint-across-writing-mode-boundary-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-horizontal-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-horizontal-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-strict-horizontal-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-strict-horizontal-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-strict-vertical-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-strict-vertical-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-vertical-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/repaint/shadow-multiple-vertical-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/replaced/width100percent-button-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/replaced/width100percent-button-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/replaced/width100percent-searchfield-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/replaced/width100percent-searchfield-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/replaced/width100percent-textarea-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/replaced/width100percent-textarea-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/replaced/width100percent-textfield-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/replaced/width100percent-textfield-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/selectors/064-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/selectors/064-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/speech/input-appearance-speechbutton-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/speech/input-appearance-speechbutton-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/speech/input-appearance-speechbutton-expected.txt: Added.
- platform/chromium-mac-snowleopard/fast/table/append-cells2-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/table/append-cells2-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/table/border-collapsing/004-vertical-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/table/border-collapsing/004-vertical-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/table/frame-and-rules-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/table/frame-and-rules-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/table/remove-td-display-none-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/table/remove-td-display-none-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/atsui-partial-selection-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/atsui-partial-selection-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/backslash-to-yen-sign-euc-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/backslash-to-yen-sign-euc-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/bidi-embedding-pop-and-push-same-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/bidi-embedding-pop-and-push-same-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/capitalize-boundaries-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/capitalize-boundaries-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/in-rendered-text-rtl-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/in-rendered-text-rtl-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-AN-after-L-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-AN-after-L-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-AN-after-L-expected.txt: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-L2-run-reordering-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-L2-run-reordering-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-CSS-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-CSS-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-HTML-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-HTML-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-formatting-characters-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-LDB-2-formatting-characters-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-control-chars-treated-as-ZWS-expected.txt: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-european-terminators-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-european-terminators-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-ignored-for-first-child-inline-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-ignored-for-first-child-inline-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-innertext-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-innertext-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-layout-across-linebreak-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-layout-across-linebreak-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-linebreak-001-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-linebreak-001-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-linebreak-002-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-linebreak-002-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-linebreak-003-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-linebreak-003-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-listbox-atsui-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-listbox-atsui-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-listbox-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-listbox-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-mirror-he-ar-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-mirror-he-ar-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-mirror-he-ar-expected.txt: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-neutral-run-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-neutral-run-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-neutral-run-expected.txt: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-override-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/international/bidi-override-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/international/hebrew-vowels-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/international/hebrew-vowels-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/international/hindi-spacing-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/international/hindi-spacing-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/international/pop-up-button-text-alignment-and-direction-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/international/pop-up-button-text-alignment-and-direction-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/international/pop-up-button-text-alignment-and-direction-expected.txt: Added.
- platform/chromium-mac-snowleopard/fast/text/international/rtl-caret-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/international/rtl-caret-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/international/rtl-white-space-pre-wrap-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/international/rtl-white-space-pre-wrap-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/international/text-combine-image-test-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/international/text-combine-image-test-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/international/text-combine-image-test-expected.txt: Added.
- platform/chromium-mac-snowleopard/fast/text/justified-selection-at-edge-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/justified-selection-at-edge-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/justify-ideograph-simple-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/justify-ideograph-simple-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/justify-ideograph-vertical-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/justify-ideograph-vertical-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/justify-nbsp-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/justify-nbsp-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/line-breaks-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/line-breaks-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/trailing-white-space-2-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/trailing-white-space-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/word-break-run-rounding-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/word-break-run-rounding-expected.png: Added.
- platform/chromium-mac-snowleopard/fonts/sans-serif-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fonts/sans-serif-expected.png: Added.
- platform/chromium-mac-snowleopard/svg/custom/animate-path-discrete-expected.checksum: Added.
- platform/chromium-mac-snowleopard/svg/custom/animate-path-discrete-expected.png: Added.
- platform/chromium-mac-snowleopard/svg/custom/inline-svg-in-xhtml-expected.checksum: Added.
- platform/chromium-mac-snowleopard/svg/custom/inline-svg-in-xhtml-expected.png: Added.
- platform/chromium-mac-snowleopard/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.checksum: Added.
- platform/chromium-mac-snowleopard/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.png: Added.
- platform/chromium-mac-snowleopard/svg/custom/svg-fonts-in-html-expected.checksum: Added.
- platform/chromium-mac-snowleopard/svg/custom/svg-fonts-in-html-expected.png: Added.
- platform/chromium-mac-snowleopard/svg/custom/text-dom-01-f-expected.checksum: Added.
- platform/chromium-mac-snowleopard/svg/custom/text-dom-01-f-expected.png: Added.
- platform/chromium-mac-snowleopard/svg/hixie/mixed/003-expected.checksum: Added.
- platform/chromium-mac-snowleopard/svg/hixie/mixed/003-expected.png: Added.
- platform/chromium-mac-snowleopard/svg/zoom/page/zoom-hixie-mixed-008-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug113424-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug113424-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1188-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1188-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1318-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1318-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug138725-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug138725-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug14323-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug14323-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug18359-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug18359-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2479-2-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2479-2-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2479-3-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2479-3-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug26178-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug26178-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug28928-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug28928-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2962-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2962-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug30692-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug30692-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug33855-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug33855-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug39209-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug39209-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4429-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4429-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug44505-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug44505-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4527-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4527-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug46368-1-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug46368-1-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug46368-2-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug46368-2-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug51037-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug51037-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug51727-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug51727-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug52505-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug52505-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug52506-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug52506-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug60749-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug60749-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug67915-1-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug67915-1-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug68912-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug68912-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug7342-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug7342-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug88035-1-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug88035-1-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug88035-2-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug88035-2-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug96334-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug96334-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/collapsing_borders/bug41262-4-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/collapsing_borders/bug41262-4-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/core/bloomberg-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/core/bloomberg-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/core/misc-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/core/misc-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/dom/tableDom-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/dom/tableDom-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_tbody_align_justify-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_tbody_align_justify-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_td_align_justify-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_td_align_justify-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_tfoot_align_justify-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_tfoot_align_justify-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_th_align_justify-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_th_align_justify-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_thead_align_justify-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_thead_align_justify-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_tr_align_justify-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/marvin/x_tr_align_justify-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/other/move_row-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla/other/move_row-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug1725-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug1725-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug2479-5-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug58402-2-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug58402-2-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.png: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.checksum: Added.
- platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.png: Added.
- platform/chromium/test_expectations.txt:
- 9:26 AM Changeset in webkit [79006] by
-
- 5 edits in trunk/Source/WebCore
2011-02-16 Tony Gentilcore <tonyg@chromium.org>
Reviewed by Eric Seidel.
Refactor pumpTokenizer loop
https://bugs.webkit.org/show_bug.cgi?id=54574
- This makes pumpTokenizer() safe to call when waiting for a script or when about to get the next token, although ASSERTs still enforce that we aren't waiting for a script. This enables resumeParsingAfterYield() to call pumpTokenizer with no modifications even if we yield before running a script rather than before taking a token (see bug 54355).
- This also picks up the refCount >= 1 assert when stopped.
Tested PerformanceTests/Parser to verify no regression. If anything it got faster.
Before:
avg 985.05
median 985.5
stdev 3.007906248539007
min 980
max 990
After:
avg 980.05
median 981
stdev 3.122098653149833
min 974
max 985
No new tests because no new functionality.
- html/parser/HTMLDocumentParser.cpp: (WebCore::HTMLDocumentParser::canTakeNextToken): Added. (WebCore::HTMLDocumentParser::pumpTokenizer):
- html/parser/HTMLDocumentParser.h:
- 9:19 AM Changeset in webkit [79005] by
-
- 4 edits in trunk/Source/WebCore
Unreviewed, rolling out r79003.
http://trac.webkit.org/changeset/79003
https://bugs.webkit.org/show_bug.cgi?id=54753
Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-02-18
It broke tests on GTK bots (Requested by Ossy on #webkit).
- accessibility/AccessibilityRenderObject.cpp:
(WebCore::lastChildConsideringContinuation):
- dom/Node.cpp:
(WebCore::Node::removeEventListener):
- html/DateComponents.cpp:
(WebCore::DateComponents::parseTime):
- 9:18 AM Changeset in webkit [79004] by
-
- 26 edits1 add in trunk/LayoutTests
[Windows 7 Release Tests] ~26 tests failing after r78846
https://bugs.webkit.org/show_bug.cgi?id=54748
Unreviewed. Landing expected (failing?) results to get the Windows 7 Release bots green.
Note: the pixel test results for fast/ruby/nested-ruby.html and
fast/blockflow/Kusa-Makura-background-canvas.html will be landed separately.
- platform/win/css2.1/t0905-c5525-fltwidth-00-c-g-expected.txt:
- platform/win/css2.1/t1202-counter-04-b-expected.txt:
- platform/win/css2.1/t1202-counters-04-b-expected.txt:
- platform/win/editing/pasteboard/nested-blocks-with-text-area-expected.txt:
- platform/win/editing/pasteboard/pasting-tabs-expected.txt:
- platform/win/editing/selection/mixed-editability-10-expected.txt:
- platform/win/fast/blockflow/Kusa-Makura-background-canvas-expected.txt:
- platform/win/fast/dom/HTMLTextAreaElement/reset-textarea-expected.txt:
- platform/win/fast/forms/basic-selects-expected.txt:
- platform/win/fast/forms/basic-textareas-expected.txt:
- platform/win/fast/forms/basic-textareas-quirks-expected.txt:
- platform/win/fast/forms/select-writing-direction-natural-expected.txt:
- platform/win/fast/forms/textAreaLineHeight-expected.txt:
- platform/win/fast/forms/textarea-scrollbar-expected.txt:
- platform/win/fast/forms/textarea-scrolled-type-expected.txt:
- platform/win/fast/parser/entity-comment-in-textarea-expected.txt:
- platform/win/fast/parser/open-comment-in-textarea-expected.txt:
- platform/win/fast/ruby/nested-ruby-expected.txt:
- platform/win/fast/text/atsui-negative-spacing-features-expected.txt:
- platform/win/fast/text/backslash-to-yen-sign-euc-expected.txt:
- platform/win/fast/text/international/bidi-control-chars-treated-as-ZWS-expected.txt: Added.
- platform/win/fast/text/international/bidi-menulist-expected.txt:
- platform/win/fast/text/international/pop-up-button-text-alignment-and-direction-expected.txt:
- platform/win/fast/text/justify-ideograph-complex-expected.txt:
- platform/win/fast/text/justify-ideograph-simple-expected.txt:
- platform/win/fast/text/justify-ideograph-vertical-expected.txt:
- 8:57 AM Changeset in webkit [79003] by
-
- 4 edits in trunk/Source/WebCore
Warning fix. Use ASSERT_UNUSED() instead of ASSERT().
Rubber-stamped by Andreas Kling.
- accessibility/AccessibilityRenderObject.cpp:
(WebCore::lastChildConsideringContinuation):
- dom/Node.cpp:
(WebCore::Node::removeEventListener):
- html/DateComponents.cpp:
(WebCore::DateComponents::parseTime):
- 8:34 AM Changeset in webkit [79002] by
-
- 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt
2011-02-18 Mikhail Naganov <mnaganov@chromium.org>
[Chromium] Unreviewed test expectations update.
Mark inspector/debugger/debug-inlined-scripts.html also as timing out.
https://bugs.webkit.org/show_bug.cgi?id=54659
- 8:00 AM Changeset in webkit [79001] by
-
- 2 edits756 adds in trunk/LayoutTests
Unreviewed.
[Qt] Add Qt specific expected results for passing svg/W3C-SVG-1.1 tests.
- platform/qt/Skipped: Unskip passing tests.
- platform/qt/svg/W3C-SVG-1.1/ [...] : Added.
- 6:54 AM Changeset in webkit [79000] by
-
- 1 edit2 adds in trunk/LayoutTests
2011-02-18 Philippe Normand <pnormand@igalia.com>
Unreviewed, GTK baselines for two new tests.
- platform/gtk/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.txt: Added.
- platform/gtk/svg/custom/nested-pattern-boundingBoxModeContent-expected.txt: Added.
- 6:27 AM Changeset in webkit [78999] by
-
- 3 edits253 adds in trunk/LayoutTests
Unreviewed.
[Qt] Add Qt specific expected results for passing svg tests.
- platform/qt/Skipped: Unskip a bunch of passing tests.
- platform/qt/svg/clip-path/clip-in-mask-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-in-mask-expected.png: Added.
- platform/qt/svg/clip-path/clip-in-mask-expected.txt: Added.
- platform/qt/svg/clip-path/clip-in-mask-objectBoundingBox-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-in-mask-objectBoundingBox-expected.png: Added.
- platform/qt/svg/clip-path/clip-in-mask-objectBoundingBox-expected.txt: Added.
- platform/qt/svg/clip-path/clip-in-mask-userSpaceOnUse-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-in-mask-userSpaceOnUse-expected.png: Added.
- platform/qt/svg/clip-path/clip-in-mask-userSpaceOnUse-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-child-clipped-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-child-clipped-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-child-clipped-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-childs-clipped-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-childs-clipped-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-childs-clipped-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-clipped-evenodd-twice-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-clipped-evenodd-twice-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-clipped-evenodd-twice-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-clipped-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-clipped-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-clipped-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-clipped-no-content-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-clipped-no-content-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-clipped-no-content-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-clipped-nonzero-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-clipped-nonzero-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-clipped-nonzero-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-evenodd-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-evenodd-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-evenodd-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-evenodd-nonzero-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-evenodd-nonzero-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-evenodd-nonzero-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-nonzero-evenodd-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-nonzero-evenodd-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-nonzero-evenodd-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-nonzero-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-nonzero-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-nonzero-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-objectBoundingBox-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-objectBoundingBox-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-objectBoundingBox-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-on-clipped-use-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-on-clipped-use-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-on-clipped-use-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-on-g-and-child-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-on-g-and-child-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-on-g-and-child-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-on-g-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-on-g-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-on-g-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-on-svg-and-child-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-on-svg-and-child-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-on-svg-and-child-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-on-svg-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-on-svg-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-on-svg-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-pixelation-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-pixelation-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-pixelation-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-recursive-call-by-child-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-recursive-call-by-child-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-recursive-call-by-child-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-recursive-call-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-recursive-call-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-recursive-call-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-text-and-shape-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-text-and-shape-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-text-and-shape-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-text-and-stroke-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-text-and-stroke-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-text-and-stroke-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-text-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-text-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-text-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-use-as-child-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-use-as-child-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-use-as-child-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-use-as-child2-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-use-as-child2-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-use-as-child2-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-use-as-child3-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-use-as-child3-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-use-as-child3-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-use-as-child4-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-use-as-child4-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-use-as-child4-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-use-as-child5-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-use-as-child5-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-use-as-child5-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-userSpaceOnUse-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-userSpaceOnUse-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-userSpaceOnUse-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-with-container-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-with-container-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-with-container-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-with-different-unittypes-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-with-different-unittypes-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-with-different-unittypes-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-with-different-unittypes2-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-with-different-unittypes2-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-with-different-unittypes2-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-with-invisibile-child-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-with-invisibile-child-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-with-invisibile-child-expected.txt: Added.
- platform/qt/svg/clip-path/clip-path-with-text-clipped-expected.checksum: Added.
- platform/qt/svg/clip-path/clip-path-with-text-clipped-expected.png: Added.
- platform/qt/svg/clip-path/clip-path-with-text-clipped-expected.txt: Added.
- platform/qt/svg/clip-path/deep-nested-clip-in-mask-different-unitTypes-expected.checksum: Added.
- platform/qt/svg/clip-path/deep-nested-clip-in-mask-different-unitTypes-expected.png: Added.
- platform/qt/svg/clip-path/deep-nested-clip-in-mask-different-unitTypes-expected.txt: Added.
- platform/qt/svg/clip-path/deep-nested-clip-in-mask-expected.checksum: Added.
- platform/qt/svg/clip-path/deep-nested-clip-in-mask-expected.png: Added.
- platform/qt/svg/clip-path/deep-nested-clip-in-mask-expected.txt: Added.
- platform/qt/svg/clip-path/deep-nested-clip-in-mask-panning-expected.checksum: Added.
- platform/qt/svg/clip-path/deep-nested-clip-in-mask-panning-expected.png: Added.
- platform/qt/svg/clip-path/deep-nested-clip-in-mask-panning-expected.txt: Added.
- platform/qt/svg/clip-path/nested-clip-in-mask-image-based-clipping-expected.checksum: Added.
- platform/qt/svg/clip-path/nested-clip-in-mask-image-based-clipping-expected.png: Added.
- platform/qt/svg/clip-path/nested-clip-in-mask-image-based-clipping-expected.txt: Added.
- platform/qt/svg/clip-path/nested-clip-in-mask-path-and-image-based-clipping-expected.checksum: Added.
- platform/qt/svg/clip-path/nested-clip-in-mask-path-and-image-based-clipping-expected.png: Added.
- platform/qt/svg/clip-path/nested-clip-in-mask-path-and-image-based-clipping-expected.txt: Added.
- platform/qt/svg/clip-path/nested-clip-in-mask-path-based-clipping-expected.checksum: Added.
- platform/qt/svg/clip-path/nested-clip-in-mask-path-based-clipping-expected.png: Added.
- platform/qt/svg/clip-path/nested-clip-in-mask-path-based-clipping-expected.txt: Added.
- platform/qt/svg/custom/clip-path-child-changes-expected.checksum: Added.
- platform/qt/svg/custom/clip-path-child-changes-expected.png: Added.
- platform/qt/svg/custom/clip-path-child-changes-expected.txt: Added.
- platform/qt/svg/custom/clip-path-href-changes-expected.checksum: Added.
- platform/qt/svg/custom/clip-path-href-changes-expected.png: Added.
- platform/qt/svg/custom/clip-path-href-changes-expected.txt: Added.
- platform/qt/svg/custom/clip-path-units-changes-expected.checksum: Added.
- platform/qt/svg/custom/clip-path-units-changes-expected.png: Added.
- platform/qt/svg/custom/clip-path-units-changes-expected.txt: Added.
- platform/qt/svg/custom/clip-path-with-transform-expected.checksum: Added.
- platform/qt/svg/custom/clip-path-with-transform-expected.png: Added.
- platform/qt/svg/custom/clip-path-with-transform-expected.txt: Added.
- platform/qt/svg/custom/marker-overflow-clip-expected.checksum: Added.
- platform/qt/svg/custom/marker-overflow-clip-expected.png: Added.
- platform/qt/svg/custom/marker-overflow-clip-expected.txt: Added.
- platform/qt/svg/custom/mask-with-all-units-expected.checksum: Added.
- platform/qt/svg/custom/mask-with-all-units-expected.png: Added.
- platform/qt/svg/custom/mask-with-all-units-expected.txt: Added.
- platform/qt/svg/custom/recursive-clippath-expected.checksum: Added.
- platform/qt/svg/custom/recursive-clippath-expected.png: Added.
- platform/qt/svg/custom/recursive-clippath-expected.txt: Added.
- platform/qt/svg/custom/svg-fonts-in-text-controls-expected.checksum: Added.
- platform/qt/svg/custom/svg-fonts-in-text-controls-expected.png: Added.
- platform/qt/svg/custom/svg-fonts-in-text-controls-expected.txt: Added.
- platform/qt/svg/custom/text-dom-removal-expected.checksum: Added.
- platform/qt/svg/custom/text-dom-removal-expected.png: Added.
- platform/qt/svg/custom/use-clipped-transform-expected.checksum: Added.
- platform/qt/svg/custom/use-clipped-transform-expected.png: Added.
- platform/qt/svg/dom/length-list-parser-expected.checksum: Added.
- platform/qt/svg/dom/length-list-parser-expected.png: Added.
- platform/qt/svg/dom/length-list-parser-expected.txt:
- platform/qt/svg/text/foreignObject-repaint-expected.checksum: Added.
- platform/qt/svg/text/foreignObject-repaint-expected.png: Added.
- platform/qt/svg/text/foreignObject-repaint-expected.txt: Added.
- platform/qt/svg/text/kerning-expected.checksum: Added.
- platform/qt/svg/text/kerning-expected.png: Added.
- platform/qt/svg/text/kerning-expected.txt: Added.
- platform/qt/svg/text/multichar-glyph-expected.checksum: Added.
- platform/qt/svg/text/multichar-glyph-expected.png: Added.
- platform/qt/svg/text/multichar-glyph-expected.txt: Added.
- platform/qt/svg/text/text-align-01-b-expected.checksum: Added.
- platform/qt/svg/text/text-align-01-b-expected.png: Added.
- platform/qt/svg/text/text-align-01-b-expected.txt: Added.
- platform/qt/svg/text/text-align-02-b-expected.checksum: Added.
- platform/qt/svg/text/text-align-02-b-expected.png: Added.
- platform/qt/svg/text/text-align-02-b-expected.txt: Added.
- platform/qt/svg/text/text-align-03-b-expected.checksum: Added.
- platform/qt/svg/text/text-align-03-b-expected.png: Added.
- platform/qt/svg/text/text-align-03-b-expected.txt: Added.
- platform/qt/svg/text/text-align-04-b-expected.checksum: Added.
- platform/qt/svg/text/text-align-04-b-expected.png: Added.
- platform/qt/svg/text/text-align-04-b-expected.txt: Added.
- platform/qt/svg/text/text-align-05-b-expected.checksum: Added.
- platform/qt/svg/text/text-align-05-b-expected.png: Added.
- platform/qt/svg/text/text-align-05-b-expected.txt: Added.
- platform/qt/svg/text/text-align-06-b-expected.checksum: Added.
- platform/qt/svg/text/text-align-06-b-expected.png: Added.
- platform/qt/svg/text/text-align-06-b-expected.txt: Added.
- platform/qt/svg/text/text-altglyph-01-b-expected.checksum: Added.
- platform/qt/svg/text/text-altglyph-01-b-expected.png: Added.
- platform/qt/svg/text/text-altglyph-01-b-expected.txt: Added.
- platform/qt/svg/text/text-deco-01-b-expected.checksum: Added.
- platform/qt/svg/text/text-deco-01-b-expected.png: Added.
- platform/qt/svg/text/text-deco-01-b-expected.txt: Added.
- platform/qt/svg/text/text-fonts-02-t-expected.checksum: Added.
- platform/qt/svg/text/text-fonts-02-t-expected.png: Added.
- platform/qt/svg/text/text-fonts-02-t-expected.txt: Added.
- platform/qt/svg/text/text-gradient-positioning-expected.checksum: Added.
- platform/qt/svg/text/text-gradient-positioning-expected.png: Added.
- platform/qt/svg/text/text-gradient-positioning-expected.txt: Added.
- platform/qt/svg/text/text-path-01-b-expected.checksum: Added.
- platform/qt/svg/text/text-path-01-b-expected.png: Added.
- platform/qt/svg/text/text-path-01-b-expected.txt: Added.
- platform/qt/svg/text/text-repaint-rects-expected.checksum: Added.
- platform/qt/svg/text/text-repaint-rects-expected.png: Added.
- platform/qt/svg/text/text-repaint-rects-expected.txt: Added.
- platform/qt/svg/text/text-spacing-01-b-expected.checksum: Added.
- platform/qt/svg/text/text-spacing-01-b-expected.png: Added.
- platform/qt/svg/text/text-spacing-01-b-expected.txt: Added.
- platform/qt/svg/text/text-text-01-b-expected.checksum: Added.
- platform/qt/svg/text/text-text-01-b-expected.png: Added.
- platform/qt/svg/text/text-text-01-b-expected.txt: Added.
- platform/qt/svg/text/text-text-03-b-expected.checksum: Added.
- platform/qt/svg/text/text-text-03-b-expected.png: Added.
- platform/qt/svg/text/text-text-03-b-expected.txt: Added.
- platform/qt/svg/text/text-text-04-t-expected.checksum: Added.
- platform/qt/svg/text/text-text-04-t-expected.png: Added.
- platform/qt/svg/text/text-text-04-t-expected.txt: Added.
- platform/qt/svg/text/text-text-05-t-expected.checksum: Added.
- platform/qt/svg/text/text-text-05-t-expected.png: Added.
- platform/qt/svg/text/text-text-05-t-expected.txt: Added.
- platform/qt/svg/text/text-text-06-t-expected.checksum: Added.
- platform/qt/svg/text/text-text-06-t-expected.png: Added.
- platform/qt/svg/text/text-text-06-t-expected.txt: Added.
- platform/qt/svg/text/text-text-07-t-expected.checksum: Added.
- platform/qt/svg/text/text-text-07-t-expected.png: Added.
- platform/qt/svg/text/text-text-07-t-expected.txt: Added.
- platform/qt/svg/text/text-text-08-b-expected.checksum: Added.
- platform/qt/svg/text/text-text-08-b-expected.png: Added.
- platform/qt/svg/text/text-text-08-b-expected.txt: Added.
- platform/qt/svg/text/text-tref-01-b-expected.checksum: Added.
- platform/qt/svg/text/text-tref-01-b-expected.png: Added.
- platform/qt/svg/text/text-tref-01-b-expected.txt: Added.
- platform/qt/svg/text/text-tselect-01-b-expected.checksum: Added.
- platform/qt/svg/text/text-tselect-01-b-expected.png: Added.
- platform/qt/svg/text/text-tselect-01-b-expected.txt: Added.
- platform/qt/svg/text/text-tspan-01-b-expected.checksum: Added.
- platform/qt/svg/text/text-tspan-01-b-expected.png: Added.
- platform/qt/svg/text/text-tspan-01-b-expected.txt: Added.
- platform/qt/svg/text/text-ws-01-t-expected.checksum: Added.
- platform/qt/svg/text/text-ws-01-t-expected.png: Added.
- platform/qt/svg/text/text-ws-01-t-expected.txt: Added.
- platform/qt/svg/text/text-ws-02-t-expected.checksum: Added.
- platform/qt/svg/text/text-ws-02-t-expected.png: Added.
- platform/qt/svg/text/text-ws-02-t-expected.txt: Added.
- platform/qt/svg/text/textPathBoundsBug-expected.checksum: Added.
- platform/qt/svg/text/textPathBoundsBug-expected.png: Added.
- platform/qt/svg/text/textPathBoundsBug-expected.txt: Added.
- platform/qt/svg/transforms/animated-path-inside-transformed-html-expected.checksum: Added.
- platform/qt/svg/transforms/animated-path-inside-transformed-html-expected.png: Added.
- platform/qt/svg/transforms/animated-path-inside-transformed-html-expected.txt: Added.
- platform/qt/svg/transforms/text-with-pattern-inside-transformed-html-expected.checksum: Added.
- platform/qt/svg/transforms/text-with-pattern-inside-transformed-html-expected.png: Added.
- platform/qt/svg/transforms/text-with-pattern-inside-transformed-html-expected.txt: Added.
- platform/qt/svg/transforms/text-with-pattern-with-svg-transform-expected.checksum: Added.
- platform/qt/svg/transforms/text-with-pattern-with-svg-transform-expected.png: Added.
- platform/qt/svg/transforms/text-with-pattern-with-svg-transform-expected.txt: Added.
- 5:38 AM Changeset in webkit [78998] by
-
- 2 edits in trunk/Source/WebCore
2011-02-18 Andrey Adaikin <aandrey@google.com>
Reviewed by Pavel Feldman.
Web Inspector: [Text editor] Optimize editing updates in main panel
https://bugs.webkit.org/show_bug.cgi?id=54661
- inspector/front-end/TextViewer.js: (WebInspector.TextViewer): (WebInspector.TextViewer.prototype._textChanged): (WebInspector.TextViewer.prototype._enterInternalTextChangeMode): (WebInspector.TextViewer.prototype._exitInternalTextChangeMode): (WebInspector.TextViewer.prototype._syncDecorationsForLine): (WebInspector.TextEditorChunkedPanel.prototype.textChanged): (WebInspector.TextEditorChunkedPanel.prototype._scroll): (WebInspector.TextEditorChunkedPanel.prototype.chunkForLine): (WebInspector.TextEditorChunkedPanel.prototype._totalHeight): (WebInspector.TextEditorGutterPanel.prototype._expandChunks): (WebInspector.TextEditorGutterChunk): (WebInspector.TextEditorGutterChunk.prototype.addDecoration): (WebInspector.TextEditorGutterChunk.prototype.removeDecoration): (WebInspector.TextEditorMainPanel): (WebInspector.TextEditorMainPanel.prototype._expandChunks): (WebInspector.TextEditorMainPanel.prototype._highlightDataReady): (WebInspector.TextEditorMainPanel.prototype._markSkippedPaintLines): (WebInspector.TextEditorMainPanel.prototype._paintSkippedLines): (WebInspector.TextEditorMainPanel.prototype._paintLines): (WebInspector.TextEditorMainPanel.prototype._paintLine): (WebInspector.TextEditorMainPanel.prototype._positionToSelection): (WebInspector.TextEditorMainPanel.prototype._applyDomUpdates): (WebInspector.TextEditorMainPanel.prototype._updateChunksForRanges): (WebInspector.TextEditorMainPanel.prototype._updateHighlightsForRange): (WebInspector.TextEditorMainPanel.prototype._collectLinesFromDiv): (WebInspector.TextEditorMainChunk): (WebInspector.TextEditorMainChunk.prototype.get startLine): (WebInspector.TextEditorMainChunk.prototype.set startLine): (WebInspector.TextEditorMainChunk.prototype.getExpandedLineRow): (WebInspector.TextEditorMainChunk.prototype.updateCollapsedLineRow):
- 5:28 AM Changeset in webkit [78997] by
-
- 1 edit2 deletes in trunk/Source/WebKit2
2011-02-18 Balazs Kelemen <kbalazs@webkit.org>
Unreviwed.
Remove CleanupHandler since we do not use it anymore.
- Shared/qt/CleanupHandler.cpp: Removed.
- Shared/qt/CleanupHandler.h: Removed.
- 5:06 AM Changeset in webkit [78996] by
-
- 2 edits in trunk
2011-02-18 Philippe Normand <pnormand@igalia.com>
Unreviewed, build fix after r78981
- configure.ac: datagrid is datagrid, it is not database. Also meter is not progress. Fixed copy/paste mistakes.
- 4:28 AM Changeset in webkit [78995] by
-
- 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt
2011-02-18 Mikhail Naganov <mnaganov@chromium.org>
[Chromium] Unreviewed test expectations update.
text-overflow-ellipsis may also fail with wrong image only.
- 4:27 AM Changeset in webkit [78994] by
-
- 2 edits in trunk/Source/WebCore
2011-02-18 Steve Block <steveblock@google.com>
Reviewed by Andreas Kling
Memory allocation error in convertV8ObjectToNPVariant() for strings
https://bugs.webkit.org/show_bug.cgi?id=54737
Include the termination character in the length when allocating memory
and copying the string. This fixes a crashing bug on Android.
This should be tested by the java/ tests on Chromium, but these
tests are currently skipped.
- bindings/v8/V8NPUtils.cpp: (WebCore::convertV8ObjectToNPVariant):
- 4:21 AM Changeset in webkit [78993] by
-
- 159 edits in trunk/LayoutTests
Unreviewed.
[Qt] Update pixel results for svg tests.
- platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-01-f-expected.checksum:
- platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-01-f-expected.png:
- platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-02-f-expected.checksum:
- platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-02-f-expected.png:
- platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-03-f-expected.checksum:
- platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-03-f-expected.png:
- platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-04-f-expected.checksum:
- platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-04-f-expected.png:
- platform/qt/svg/W3C-SVG-1.1-SE/paths-dom-02-f-expected.checksum:
- platform/qt/svg/W3C-SVG-1.1-SE/paths-dom-02-f-expected.png:
- platform/qt/svg/W3C-SVG-1.1-SE/types-dom-01-b-expected.checksum:
- platform/qt/svg/W3C-SVG-1.1-SE/types-dom-01-b-expected.png:
- platform/qt/svg/W3C-SVG-1.1-SE/types-dom-02-f-expected.checksum:
- platform/qt/svg/W3C-SVG-1.1-SE/types-dom-02-f-expected.png:
- platform/qt/svg/W3C-SVG-1.1-SE/types-dom-03-b-expected.checksum:
- platform/qt/svg/W3C-SVG-1.1-SE/types-dom-03-b-expected.png:
- platform/qt/svg/W3C-SVG-1.1-SE/types-dom-04-b-expected.checksum:
- platform/qt/svg/W3C-SVG-1.1-SE/types-dom-04-b-expected.png:
- platform/qt/svg/W3C-SVG-1.1-SE/types-dom-05-b-expected.checksum:
- platform/qt/svg/W3C-SVG-1.1-SE/types-dom-05-b-expected.png:
- platform/qt/svg/W3C-SVG-1.1-SE/types-dom-06-f-expected.checksum:
- platform/qt/svg/W3C-SVG-1.1-SE/types-dom-06-f-expected.png:
- platform/qt/svg/W3C-SVG-1.1-SE/types-dom-07-f-expected.checksum:
- platform/qt/svg/W3C-SVG-1.1-SE/types-dom-07-f-expected.png:
- platform/qt/svg/W3C-SVG-1.1/filters-turb-02-f-expected.checksum:
- platform/qt/svg/W3C-SVG-1.1/filters-turb-02-f-expected.png:
- platform/qt/svg/animations/repeatDur-zero-expected.checksum:
- platform/qt/svg/animations/repeatDur-zero-expected.png:
- platform/qt/svg/batik/paints/patternRegions-positioned-objects-expected.checksum:
- platform/qt/svg/batik/paints/patternRegions-positioned-objects-expected.png:
- platform/qt/svg/batik/text/textDecoration-expected.checksum:
- platform/qt/svg/batik/text/textDecoration-expected.png:
- platform/qt/svg/css/composite-shadow-text-expected.checksum:
- platform/qt/svg/css/composite-shadow-text-expected.png:
- platform/qt/svg/css/text-gradient-shadow-expected.checksum:
- platform/qt/svg/css/text-gradient-shadow-expected.png:
- platform/qt/svg/custom/absolute-sized-content-with-resources-expected.checksum:
- platform/qt/svg/custom/absolute-sized-content-with-resources-expected.png:
- platform/qt/svg/custom/bug45331-expected.checksum:
- platform/qt/svg/custom/bug45331-expected.png:
- platform/qt/svg/custom/clone-element-with-animated-svg-properties-expected.checksum:
- platform/qt/svg/custom/clone-element-with-animated-svg-properties-expected.png:
- platform/qt/svg/custom/convolution-crash-expected.checksum:
- platform/qt/svg/custom/convolution-crash-expected.png:
- platform/qt/svg/custom/getscreenctm-in-scrollable-div-area-expected.checksum:
- platform/qt/svg/custom/getscreenctm-in-scrollable-div-area-expected.png:
- platform/qt/svg/custom/getscreenctm-in-scrollable-div-area-nested-expected.checksum:
- platform/qt/svg/custom/getscreenctm-in-scrollable-div-area-nested-expected.png:
- platform/qt/svg/custom/getscreenctm-in-scrollable-svg-area-expected.checksum:
- platform/qt/svg/custom/getscreenctm-in-scrollable-svg-area-expected.png:
- platform/qt/svg/custom/image-rescale-expected.checksum:
- platform/qt/svg/custom/image-rescale-expected.png:
- platform/qt/svg/custom/image-rescale-scroll-expected.checksum:
- platform/qt/svg/custom/image-rescale-scroll-expected.png:
- platform/qt/svg/custom/js-update-stop-linked-gradient-expected.checksum:
- platform/qt/svg/custom/js-update-stop-linked-gradient-expected.png:
- platform/qt/svg/custom/marker-child-changes-css-expected.checksum:
- platform/qt/svg/custom/marker-child-changes-css-expected.png:
- platform/qt/svg/custom/marker-empty-path-expected.checksum:
- platform/qt/svg/custom/marker-empty-path-expected.png:
- platform/qt/svg/custom/mask-invalidation-expected.checksum:
- platform/qt/svg/custom/mask-invalidation-expected.png:
- platform/qt/svg/custom/massive-coordinates-expected.checksum:
- platform/qt/svg/custom/massive-coordinates-expected.png:
- platform/qt/svg/custom/mouse-move-on-svg-container-expected.checksum:
- platform/qt/svg/custom/mouse-move-on-svg-container-expected.png:
- platform/qt/svg/custom/mouse-move-on-svg-container-standalone-expected.checksum:
- platform/qt/svg/custom/mouse-move-on-svg-container-standalone-expected.png:
- platform/qt/svg/custom/mouse-move-on-svg-root-expected.checksum:
- platform/qt/svg/custom/mouse-move-on-svg-root-expected.png:
- platform/qt/svg/custom/mouse-move-on-svg-root-standalone-expected.checksum:
- platform/qt/svg/custom/mouse-move-on-svg-root-standalone-expected.png:
- platform/qt/svg/custom/non-scaling-stroke-expected.checksum:
- platform/qt/svg/custom/non-scaling-stroke-expected.png:
- platform/qt/svg/custom/pattern-incorrect-tiling-expected.checksum:
- platform/qt/svg/custom/pattern-incorrect-tiling-expected.png:
- platform/qt/svg/custom/pattern-no-pixelation-expected.checksum:
- platform/qt/svg/custom/pattern-no-pixelation-expected.png:
- platform/qt/svg/custom/pattern-size-bigger-than-target-size-expected.checksum:
- platform/qt/svg/custom/pattern-size-bigger-than-target-size-expected.png:
- platform/qt/svg/custom/pattern-skew-transformed-expected.checksum:
- platform/qt/svg/custom/pattern-skew-transformed-expected.png:
- platform/qt/svg/custom/radial-gradient-with-outstanding-focalPoint-expected.checksum:
- platform/qt/svg/custom/radial-gradient-with-outstanding-focalPoint-expected.png:
- platform/qt/svg/custom/recursive-filter-expected.checksum:
- platform/qt/svg/custom/recursive-filter-expected.png:
- platform/qt/svg/custom/recursive-gradient-expected.checksum:
- platform/qt/svg/custom/recursive-gradient-expected.png:
- platform/qt/svg/custom/recursive-mask-expected.checksum:
- platform/qt/svg/custom/recursive-mask-expected.png:
- platform/qt/svg/custom/recursive-pattern-expected.checksum:
- platform/qt/svg/custom/recursive-pattern-expected.png:
- platform/qt/svg/custom/relative-sized-content-with-resources-expected.checksum:
- platform/qt/svg/custom/relative-sized-content-with-resources-expected.png:
- platform/qt/svg/custom/relative-sized-inner-svg-expected.checksum:
- platform/qt/svg/custom/relative-sized-inner-svg-expected.png:
- platform/qt/svg/custom/relative-sized-use-without-attributes-on-symbol-expected.checksum:
- platform/qt/svg/custom/relative-sized-use-without-attributes-on-symbol-expected.png:
- platform/qt/svg/custom/repaint-on-constant-size-change-expected.checksum:
- platform/qt/svg/custom/repaint-on-constant-size-change-expected.png:
- platform/qt/svg/custom/repaint-stroke-width-changes-expected.checksum:
- platform/qt/svg/custom/repaint-stroke-width-changes-expected.png:
- platform/qt/svg/custom/text-rotation-expected.checksum:
- platform/qt/svg/custom/text-rotation-expected.png:
- platform/qt/svg/custom/text-x-dy-lists-expected.checksum:
- platform/qt/svg/custom/text-x-dy-lists-expected.png:
- platform/qt/svg/custom/use-on-clip-path-with-transformation-expected.checksum:
- platform/qt/svg/custom/use-on-clip-path-with-transformation-expected.png:
- platform/qt/svg/custom/use-property-synchronization-crash-expected.checksum:
- platform/qt/svg/custom/use-property-synchronization-crash-expected.png:
- platform/qt/svg/dom/SVGPathSegList-cloning-expected.checksum:
- platform/qt/svg/dom/SVGPathSegList-cloning-expected.png:
- platform/qt/svg/dom/SVGPathSegList-segment-modification-expected.checksum:
- platform/qt/svg/dom/SVGPathSegList-segment-modification-expected.png:
- platform/qt/svg/filters/filter-empty-g-expected.checksum:
- platform/qt/svg/filters/filter-empty-g-expected.png:
- platform/qt/svg/filters/filter-on-filter-for-text-expected.checksum:
- platform/qt/svg/filters/filter-on-filter-for-text-expected.png:
- platform/qt/svg/filters/filter-on-tspan-expected.checksum:
- platform/qt/svg/filters/filter-on-tspan-expected.png:
- platform/qt/svg/filters/filter-width-update-expected.checksum:
- platform/qt/svg/filters/filter-width-update-expected.png:
- platform/qt/svg/foreignObject/disallowed-svg-nodes-as-direct-children-expected.checksum:
- platform/qt/svg/foreignObject/disallowed-svg-nodes-as-direct-children-expected.png:
- platform/qt/svg/foreignObject/no-crash-with-svg-content-in-html-document-expected.checksum:
- platform/qt/svg/foreignObject/no-crash-with-svg-content-in-html-document-expected.png:
- platform/qt/svg/foreignObject/svg-document-as-direct-child-expected.checksum:
- platform/qt/svg/foreignObject/svg-document-as-direct-child-expected.png:
- platform/qt/svg/foreignObject/svg-document-in-html-document-expected.checksum:
- platform/qt/svg/foreignObject/svg-document-in-html-document-expected.png:
- platform/qt/svg/foreignObject/text-tref-02-b-expected.checksum:
- platform/qt/svg/foreignObject/text-tref-02-b-expected.png:
- platform/qt/svg/in-html/circle-expected.checksum:
- platform/qt/svg/in-html/circle-expected.png:
- platform/qt/svg/overflow/overflow-on-outermost-svg-element-defaults-expected.checksum:
- platform/qt/svg/overflow/overflow-on-outermost-svg-element-defaults-expected.png:
- platform/qt/svg/overflow/overflow-on-outermost-svg-element-ignore-attribute-1-expected.checksum:
- platform/qt/svg/overflow/overflow-on-outermost-svg-element-ignore-attribute-1-expected.png:
- platform/qt/svg/overflow/overflow-on-outermost-svg-element-ignore-attribute-2-expected.checksum:
- platform/qt/svg/overflow/overflow-on-outermost-svg-element-ignore-attribute-2-expected.png:
- platform/qt/svg/overflow/overflow-on-outermost-svg-element-ignore-attribute-3-expected.checksum:
- platform/qt/svg/overflow/overflow-on-outermost-svg-element-ignore-attribute-3-expected.png:
- platform/qt/svg/text/lengthAdjust-text-metrics-expected.checksum:
- platform/qt/svg/text/lengthAdjust-text-metrics-expected.png:
- platform/qt/svg/text/selection-styles-expected.checksum:
- platform/qt/svg/text/selection-styles-expected.png:
- platform/qt/svg/text/text-hkern-expected.checksum:
- platform/qt/svg/text/text-hkern-expected.png:
- platform/qt/svg/text/text-hkern-on-vertical-text-expected.checksum:
- platform/qt/svg/text/text-hkern-on-vertical-text-expected.png:
- platform/qt/svg/text/text-vkern-expected.checksum:
- platform/qt/svg/text/text-vkern-expected.png:
- platform/qt/svg/text/text-vkern-on-horizontal-text-expected.checksum:
- platform/qt/svg/text/text-vkern-on-horizontal-text-expected.png:
- platform/qt/svg/zoom/page/zoom-coords-viewattr-01-b-expected.checksum:
- platform/qt/svg/zoom/page/zoom-coords-viewattr-01-b-expected.png:
- platform/qt/svg/zoom/text/zoom-svg-float-border-padding-expected.checksum:
- platform/qt/svg/zoom/text/zoom-svg-float-border-padding-expected.png:
- 4:11 AM Changeset in webkit [78992] by
-
- 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt
2011-02-18 Mikhail Naganov < mnaganov@chromium.org>
[Chromium] Unreviewed test expectations fix.
Again, a quick fix for deeply-nested-reflections.html.
- 3:52 AM Changeset in webkit [78991] by
-
- 2 edits in trunk/LayoutTests
2011-02-18 Philippe Normand <pnormand@igalia.com>
Unreviewed, skip a GTK media test affected by pixel diferrence
between 32/64-Bits bots.
[GTK] media/video-display-toggle.html is flaky on debug bots
https://bugs.webkit.org/show_bug.cgi?id=54637
- platform/gtk/Skipped:
- 3:49 AM Changeset in webkit [78990] by
-
- 2 edits2 adds in trunk/LayoutTests
Unreviewed.
[Qt] http/tests/security/xssAuditor/script-tag-with-fancy-unicode.html fails
https://bugs.webkit.org/show_bug.cgi?id=54630
Platform independent expected fail isn't good for Qt, because
this test passes on Qt, so add Qt specific expected result.
- platform/qt/Skipped: Unskip the passing test.
- platform/qt/http/tests/security/xssAuditor/script-tag-with-fancy-unicode-expected.txt: Added.
- 3:42 AM Changeset in webkit [78989] by
-
- 2 edits in trunk/LayoutTests
2011-02-18 Philippe Normand <pnormand@igalia.com>
Unreviewed, skip a GTK media test affected by pixel diferrence
between 32/64-Bits bots.
[GTK] media/video-display-toggle.html is flaky on debug bots
https://bugs.webkit.org/show_bug.cgi?id=54637
- platform/gtk/Skipped:
- 2:56 AM Changeset in webkit [78988] by
-
- 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt
2011-02-18 Mikhail Naganov <mnaganov@chromium.org>
[Chromium] Unreviewed test expectations update.
Also mark deeply-nested-reflections as failing on GPU Mac.
- 2:52 AM Changeset in webkit [78987] by
-
- 3 edits2 deletes in trunk
2011-02-18 Philippe Normand <pnormand@igalia.com>
Unreviewed, rolling out r78979.
http://trac.webkit.org/changeset/78979
https://bugs.webkit.org/show_bug.cgi?id=53146
causes multiple crashes on GTK
- platform/gtk/accessibility/combo-box-collapsed-selection-changed-expected.txt: Removed.
- platform/gtk/accessibility/combo-box-collapsed-selection-changed.html: Removed.
2011-02-18 Philippe Normand <pnormand@igalia.com>
Unreviewed, rolling out r78979.
http://trac.webkit.org/changeset/78979
https://bugs.webkit.org/show_bug.cgi?id=53146
causes multiple crashes on GTK
- accessibility/gtk/AXObjectCacheAtk.cpp: (WebCore::notifyChildrenSelectionChange): (WebCore::AXObjectCache::postPlatformNotification):
- 2:51 AM Changeset in webkit [78986] by
-
- 2 edits in trunk/LayoutTests
2011-02-18 Philippe Normand <pnormand@igalia.com>
Unreviewed, rolling out r78982.
http://trac.webkit.org/changeset/78982
- platform/gtk/accessibility/combo-box-collapsed-selection-changed-expected.txt:
- 2:48 AM Changeset in webkit [78985] by
-
- 2 edits5 adds in trunk/LayoutTests/platform
2011-02-18 Mikhail Naganov <mnaganov@chromium.org>
[Chromium] Unreviewed test expectations update.
Rebaseline 3 windows tests, and mark tests from r78983 as Mac-specific.
https://bugs.webkit.org/show_bug.cgi?id=54736
- 2:44 AM Changeset in webkit [78984] by
-
- 3 edits in trunk/Tools
2011-02-16 MORITA Hajime <morrita@google.com>
Reviewed by Kent Tamura.
[Chromium][DRT] some PostDelayedTask() accesses possibly dangling this pointer.
http://webkit.org/b/53899
Replaced static invocation wrappers with MethodTask objects,
which are removed on WebViewHost destructor.
- DumpRenderTree/chromium/WebViewHost.cpp: (WebViewHost::requestCheckingOfText): (WebViewHost::scheduleAnimation): (WebViewHost::closeWidgetSoon):
- DumpRenderTree/chromium/WebViewHost.h: (WebViewHost::HostMethodTask::HostMethodTask): (WebViewHost::HostMethodTask::runIfValid): (WebViewHost::taskList):
- 2:39 AM Changeset in webkit [78983] by
-
- 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt
2011-02-18 Mikhail Naganov <mnaganov@chromium.org>
[Chromium] Unreviewed test expectations update.
Mark failing tests until we can rebaseline them.
https://bugs.webkit.org/show_bug.cgi?id=54736
- 2:26 AM Changeset in webkit [78982] by
-
- 2 edits in trunk/LayoutTests
2011-02-18 Philippe Normand <pnormand@igalia.com>
Unreviewed, update platform/gtk/accessibility test baselines as
requested by Mario Sanchez Prada.
- platform/gtk/accessibility/combo-box-collapsed-selection-changed-expected.txt:
- 2:05 AM Changeset in webkit [78981] by
-
- 4 edits in trunk
2011-02-18 Philippe Normand <pnormand@igalia.com>
Reviewed by Martin Robinson.
[GTK] minimal build unrecognized options
https://bugs.webkit.org/show_bug.cgi?id=50890
- configure.ac: added new configure options to enable/disable the meter element, progress element, datagrid and client-based geolocation support.
2011-02-18 Philippe Normand <pnormand@igalia.com>
Reviewed by Martin Robinson.
[GTK] minimal build unrecognized options
https://bugs.webkit.org/show_bug.cgi?id=50890
- GNUmakefile.am: new feature defines for optional features build.
- 1:56 AM Changeset in webkit [78980] by
-
- 6 edits in trunk
2011-02-17 Hans Wennborg <hans@chromium.org>
Reviewed by Jeremy Orlow.
IndexedDB: Populate indexes created for object stores with data
https://bugs.webkit.org/show_bug.cgi?id=54669
Test that creating an index for an object store that already holds
data works.
- storage/indexeddb/index-basics-expected.txt:
- storage/indexeddb/index-basics.html:
2011-02-17 Hans Wennborg <hans@chromium.org>
Reviewed by Jeremy Orlow.
IndexedDB: Populate indexes created for object stores with data
https://bugs.webkit.org/show_bug.cgi?id=54669
Make sure that indices for object stores that already hold data get
populated.
- storage/IDBIndexBackendImpl.h: (WebCore::IDBIndexBackendImpl::hasValidId):
- storage/IDBObjectStoreBackendImpl.cpp: (WebCore::IDBObjectStoreBackendImpl::putInternal): (WebCore::populateIndex): (WebCore::IDBObjectStoreBackendImpl::createIndexInternal):
- 1:46 AM Changeset in webkit [78979] by
-
- 3 edits2 adds in trunk
2011-02-18 Mario Sanchez Prada <msanchez@igalia.com>
[GTK] Combo boxes should emit object:selection-changed even when collapsed
https://bugs.webkit.org/show_bug.cgi?id=53146
New GTK-specific layout test to check the right signals are emitted.
- platform/gtk/accessibility/combo-box-collapsed-selection-changed-expected.txt: Added.
- platform/gtk/accessibility/combo-box-collapsed-selection-changed.html: Added.
2011-02-18 Mario Sanchez Prada <msanchez@igalia.com>
Reviewed by Martin Robinson.
[GTK] Combo boxes should emit object:selection-changed even when collapsed
https://bugs.webkit.org/show_bug.cgi?id=53146
Emit the selection-changed signals when the menu list value has changed
Test: platform/gtk/accessibility/combo-box-collapsed-selection-changed.html
- accessibility/gtk/AXObjectCacheAtk.cpp: (WebCore::getListObject): New, return the right list object for menu lists and list boxes. (WebCore::notifyChildrenSelectionChange): Support menu lists. (WebCore::AXObjectCache::postPlatformNotification): Call function notifyChildrenSelectionChange for AXMenuListValueChanged.
- 1:40 AM Changeset in webkit [78978] by
-
- 4 edits in trunk/Source
2011-02-18 Mario Sanchez Prada <msanchez@igalia.com>
Reviewed by Martin Robinson.
[Gtk] atk_text_get_selection/atk_text_set_selection fails for list items
https://bugs.webkit.org/show_bug.cgi?id=53453
Ensure that atk_text_{get|set}_selection() work with list items.
- accessibility/gtk/AccessibilityObjectWrapperAtk.cpp: (webkit_accessible_text_get_text): Properly handle list item markers when returning the text for an object for a given interval specified through the startOffset and endOffset parameters. (getSelectionOffsetsForObject): Bear in mind list item markers when returning the offsets for a selection over a list item. (webkit_accessible_text_set_selection): Adjust offsets if needed for list items with item markers. Ensure that it returns TRUE only when everything went fine setting the text selection.
2011-02-18 Mario Sanchez Prada <msanchez@igalia.com>
Reviewed by Martin Robinson.
[Gtk] atk_text_get_selection/atk_text_set_selection fails for list items
https://bugs.webkit.org/show_bug.cgi?id=53453
Update unit test to check the fix for this bug.
- tests/testatk.c: (testWebkitAtkTextSelections): Check that functions from AtkText interface to set and get text selections work with list items.
- 1:31 AM Changeset in webkit [78977] by
-
- 2 edits in trunk/Source/WebKit2
2011-02-18 Alejandro G. Castro <alex@igalia.com>
Fix GTK build by fixing signature of platformPaint(), required after r78956.
- WebProcess/Plugins/Netscape/gtk/NetscapePluginGtk.cpp: (WebKit::NetscapePlugin::platformPaint):
- 1:18 AM Changeset in webkit [78976] by
-
- 20 edits in trunk/LayoutTests
2011-02-18 Philippe Normand <pnormand@igalia.com>
Unreviewed, update GTK tables/mozilla_expected_failures baselines
- platform/gtk/tables/mozilla_expected_failures/bugs/bug10140-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug10216-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug104898-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug1055-2-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug106966-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug1128-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug14007-1-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug14007-2-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug29058-2-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-11-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-12-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-4-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-5-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-6-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-7-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-8-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug58402-2-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug89315-expected.txt:
- platform/gtk/tables/mozilla_expected_failures/bugs/bug91057-expected.txt:
- 1:10 AM Changeset in webkit [78975] by
-
- 2 edits in trunk/LayoutTests
2011-02-18 Philippe Normand <pnormand@igalia.com>
Unreviewed, update GTK media test baselines
- platform/gtk/media/video-controls-in-media-document-expected.txt:
- 1:07 AM Changeset in webkit [78974] by
-
- 2 edits in trunk/Source/WebCore
https://bugs.webkit.org/show_bug.cgi?id=54728
checkSelector*Value functions used in fastCheckSelector fail to inline
Reviewed by Maciej Stachowiak.
Wrap the functions used as template arguments to classes.
- css/CSSStyleSelector.cpp:
(WebCore::fastCheckSingleSelector):
(WebCore::ClassCheck::checkValue):
(WebCore::IdCheck::checkValue):
(WebCore::TagCheck::checkValue):
(WebCore::CSSStyleSelector::SelectorChecker::fastCheckSelector):
- 12:30 AM Changeset in webkit [78973] by
-
- 2 edits1 add in trunk/LayoutTests
2011-02-17 Philippe Normand <pnormand@igalia.com>
Reviewed by Martin Robinson.
[GTK] media/video-controls-in-media-document.html potentially flaky
https://bugs.webkit.org/show_bug.cgi?id=54631
Refactored the test to roll the element to play before dumping the
DRT. Also added baselines for GTK and fixed the media-file.js
include after r78778.
- media/video-controls-in-media-document.html:
- platform/gtk/media/video-controls-in-media-document-expected.txt: Added.
- 12:27 AM Changeset in webkit [78972] by
-
- 2 edits in trunk/LayoutTests
2011-02-18 Philippe Normand <pnormand@igalia.com>
Unreviewed, update GTK media test baselines
- platform/gtk/media/controls-styling-expected.txt:
- 12:18 AM Changeset in webkit [78971] by
-
- 5 edits in branches/safari-534.20-branch/Source
Versioning.
- 12:01 AM Changeset in webkit [78970] by
-
- 1 copy in tags/Safari-534.20.3
New tag.
Feb 17, 2011:
- 11:59 PM Changeset in webkit [78969] by
-
- 2 edits257 adds in trunk/LayoutTests
2011-02-17 Sergio Villar Senin <svillar@igalia.com>
Unreviewed.
Added another bunch of GTK+ baselines for Mozilla test suites
(tables/mozilla_expected_failures/bugs).
- platform/gtk/Skipped: Unskip tests which now have results.
- 11:45 PM Changeset in webkit [78968] by
-
- 2 adds in branches/safari-534.20-branch/Source/WebKit2/Shared
Add two missing files.
- 11:43 PM Changeset in webkit [78967] by
-
- 4 edits in trunk/Source/WebKit/chromium
2011-02-17 Yuzo Fujishima <yuzo@google.com>
Reviewed by Shinichiro Hamaji.
Retry landing after fixing Chromium side.
Fix for Bug 54632 - [chromium] Printing causes view to scroll
https://bugs.webkit.org/show_bug.cgi?id=54632
Expose setScrollOffset such that Chromium can restore the scroll offset
after printing the document. The bug will be fixed when the counterpart
patch http://codereview.chromium.org/6539011/ is landed for Chromium.
- public/WebFrame.h:
- src/WebFrameImpl.cpp: (WebKit::WebFrameImpl::setScrollOffset):
- src/WebFrameImpl.h:
- 11:30 PM Changeset in webkit [78966] by
-
- 3 edits in trunk/LayoutTests
Unreviewed.
[Qt]REGRESSION(r78846): editing/selection/mixed-editability-10.html
https://bugs.webkit.org/show_bug.cgi?id=54725
- platform/qt/Skipped: Add editing/selection/mixed-editability-10.html until fix.
- platform/qt/fast/text/justify-nbsp-expected.txt: updated after r78846.
- 10:57 PM Changeset in webkit [78965] by
-
- 54 edits10 adds in trunk/LayoutTests
Unreviewed.
Update Qt specific expected files after r78846.
- platform/qt/css1/box_properties/clear_float-expected.checksum: Added.
- platform/qt/css1/box_properties/clear_float-expected.png: Added.
- platform/qt/css1/box_properties/clear_float-expected.txt:
- platform/qt/css1/box_properties/float_elements_in_series-expected.checksum: Added.
- platform/qt/css1/box_properties/float_elements_in_series-expected.png: Added.
- platform/qt/css1/box_properties/float_elements_in_series-expected.txt:
- platform/qt/css1/box_properties/float_on_text_elements-expected.checksum: Added.
- platform/qt/css1/box_properties/float_on_text_elements-expected.png: Added.
- platform/qt/css1/box_properties/float_on_text_elements-expected.txt:
- platform/qt/css2.1/t0905-c414-flt-wrap-00-e-expected.txt:
- platform/qt/css2.1/t0905-c5525-fltcont-00-d-g-expected.checksum:
- platform/qt/css2.1/t0905-c5525-fltcont-00-d-g-expected.png:
- platform/qt/css2.1/t0905-c5525-fltcont-00-d-g-expected.txt:
- platform/qt/css2.1/t0905-c5525-fltmult-00-d-g-expected.txt:
- platform/qt/css2.1/t0905-c5525-fltwidth-00-c-g-expected.checksum:
- platform/qt/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png:
- platform/qt/css2.1/t0905-c5525-fltwidth-00-c-g-expected.txt:
- platform/qt/css2.1/t1602-c546-txt-align-00-b-expected.checksum:
- platform/qt/css2.1/t1602-c546-txt-align-00-b-expected.png:
- platform/qt/css2.1/t1602-c546-txt-align-00-b-expected.txt:
- platform/qt/editing/pasteboard/5478250-expected.checksum: Added.
- platform/qt/editing/pasteboard/5478250-expected.png: Added.
- platform/qt/editing/pasteboard/5478250-expected.txt:
- platform/qt/editing/selection/3690703-2-expected.checksum:
- platform/qt/editing/selection/3690703-2-expected.png:
- platform/qt/editing/selection/3690703-2-expected.txt:
- platform/qt/editing/selection/3690703-expected.checksum:
- platform/qt/editing/selection/3690703-expected.png:
- platform/qt/editing/selection/3690703-expected.txt:
- platform/qt/editing/selection/3690719-expected.checksum:
- platform/qt/editing/selection/3690719-expected.png:
- platform/qt/editing/selection/3690719-expected.txt:
- platform/qt/fast/blockflow/box-shadow-horizontal-bt-expected.checksum:
- platform/qt/fast/blockflow/box-shadow-horizontal-bt-expected.png:
- platform/qt/fast/blockflow/box-shadow-horizontal-bt-expected.txt:
- platform/qt/fast/multicol/vertical-lr/float-avoidance-expected.checksum:
- platform/qt/fast/multicol/vertical-lr/float-avoidance-expected.png:
- platform/qt/fast/multicol/vertical-lr/float-avoidance-expected.txt:
- platform/qt/fast/multicol/vertical-rl/float-avoidance-expected.checksum:
- platform/qt/fast/multicol/vertical-rl/float-avoidance-expected.png:
- platform/qt/fast/multicol/vertical-rl/float-avoidance-expected.txt:
- platform/qt/fast/table/035-vertical-expected.png:
- platform/qt/fast/table/035-vertical-expected.txt:
- platform/qt/fast/table/border-collapsing/004-vertical-expected.checksum:
- platform/qt/fast/table/border-collapsing/004-vertical-expected.png:
- platform/qt/fast/table/border-collapsing/004-vertical-expected.txt:
- platform/qt/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.checksum:
- platform/qt/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.png:
- platform/qt/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.txt:
- platform/qt/fast/table/rowspan-paint-order-vertical-expected.checksum:
- platform/qt/fast/table/rowspan-paint-order-vertical-expected.png:
- platform/qt/fast/table/rowspan-paint-order-vertical-expected.txt:
- platform/qt/svg/custom/svg-fonts-with-no-element-reference-expected.checksum:
- platform/qt/svg/custom/svg-fonts-with-no-element-reference-expected.png:
- platform/qt/svg/custom/svg-fonts-with-no-element-reference-expected.txt:
- platform/qt/svg/custom/svg-fonts-without-missing-glyph-expected.checksum:
- platform/qt/svg/custom/svg-fonts-without-missing-glyph-expected.png:
- platform/qt/svg/custom/svg-fonts-without-missing-glyph-expected.txt:
- platform/qt/svg/zoom/page/zoom-hixie-mixed-008-expected.checksum: Added.
- platform/qt/svg/zoom/page/zoom-hixie-mixed-008-expected.png: Added.
- platform/qt/svg/zoom/page/zoom-hixie-mixed-008-expected.txt:
- platform/qt/svg/zoom/text/zoom-hixie-mixed-008-expected.png:
- platform/qt/svg/zoom/text/zoom-hixie-mixed-008-expected.txt:
- 10:54 PM Changeset in webkit [78964] by
-
- 2 edits in trunk/LayoutTests
2011-02-17 Mihai Parparita <mihaip@chromium.org>
Unreviewed Chromium expectations update. Actually mark Windows and Linux
as IMAGE+TEXT.
- platform/chromium/test_expectations.txt:
- 10:51 PM Changeset in webkit [78963] by
-
- 2 edits in trunk/LayoutTests
2011-02-17 Mihai Parparita <mihaip@chromium.org>
Unreviewed Chromium expectations update. Fix expectations after r78951
(there are text difs too on Windows and Linux).
- platform/chromium/test_expectations.txt:
- 10:38 PM Changeset in webkit [78962] by
-
- 18 edits in branches/safari-534.20-branch/Source
Merge 78909.
- 10:35 PM Changeset in webkit [78961] by
-
- 5 edits1 add in trunk/Tools
2011-02-07 Hayato Ito <hayato@chromium.org>
Reviewed by Ojan Vafai.
Get rid of code which writes test results from test_type's
compare_output() method.
Writing test results now happens in single_test_runner, using
newly introduced test_result_writer module.
Subsequent patches will eliminate test_type/* classes.
- Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
- Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py: Added.
- Scripts/webkitpy/layout_tests/test_types/image_diff.py:
- Scripts/webkitpy/layout_tests/test_types/test_type_base.py:
- Scripts/webkitpy/layout_tests/test_types/text_diff.py:
- 10:33 PM Changeset in webkit [78960] by
-
- 3 edits in trunk/Source/WebKit2
LLVM Compiler build fix.
- UIProcess/WebResourceCacheManagerProxy.h:
- WebProcess/ResourceCache/WebResourceCacheManager.h:
- 10:14 PM Changeset in webkit [78959] by
-
- 3 edits in trunk/Source/WebKit2
2011-02-17 Simon Fraser <Simon Fraser>
Fix Windows and Qt builds by fixing signature of platformPaint().
- WebProcess/Plugins/Netscape/qt/NetscapePluginQt.cpp: (WebKit::NetscapePlugin::platformPaint):
- WebProcess/Plugins/Netscape/win/NetscapePluginWin.cpp: (WebKit::NetscapePlugin::platformPaint):
- 10:08 PM Changeset in webkit [78958] by
-
- 3 edits in trunk/Source/JavaScriptCore
2011-02-17 Geoffrey Garen <ggaren@apple.com>
Reviewed by Sam Weinig.
Made object allocation secretly variable-sized (Shhhh!)
https://bugs.webkit.org/show_bug.cgi?id=54721
SunSpider reports no change.
Internally, MarkedBlock now makes variable-sized allocations, even
though MarkedSpace doesn't take advantage of this yet.
- runtime/MarkedBlock.cpp: (JSC::MarkedBlock::MarkedBlock): No need to ASSERT that allocations are fixed-sized.
- runtime/MarkedBlock.h: Shrunk the atom size so we can allocate things that are not multiples of 64 bytes.
- 9:49 PM Changeset in webkit [78957] by
-
- 4 edits in trunk/Source/JavaScriptCore
2011-02-17 Geoffrey Garen <ggaren@apple.com>
Reviewed by Sam Weinig.
Fixed some math errors when when using variable-sized cells
https://bugs.webkit.org/show_bug.cgi?id=54717
SunSpider reports no change.
Computer Science Barbie says, "Math is not so hard afterall!"
- runtime/JSCell.h: (JSC::JSCell::MarkedBlock::allocate): Round up when calculating the minimum number of atoms required for a cell, since rounding down will get you splinched.
- runtime/MarkedBlock.cpp: (JSC::MarkedBlock::MarkedBlock): (JSC::MarkedBlock::sweep):
- runtime/MarkedBlock.h: (JSC::MarkedBlock::forEach): Changed a bunch of != tests to < tests because m_endAtom is actually a fuzzy end -- iterating from firstAtom() may not hit m_endAtom exactly.
- 9:44 PM Changeset in webkit [78956] by
-
- 14 edits in trunk/Source/WebKit2
2011-02-17 Simon Fraser <Simon Fraser>
Reviewed by Sam Weinig.
WebKit2 snapshots don't show plug-ins
https://bugs.webkit.org/show_bug.cgi?id=54716
Fix WebKit2 plug-ins to do a software paint for
snapshotting.
- PluginProcess/PluginControllerProxy.h:
- PluginProcess/PluginControllerProxy.cpp: (WebKit::PluginControllerProxy::snapshot): Respond to the snapshot message by getting a sharable bitmap from the plugin, and returning a handle to it in the reply.
- PluginProcess/PluginControllerProxy.messages.in: Add the snapshot message.
- Shared/Plugins/PluginQuirks.h:
- Shared/Plugins/Netscape/mac/NetscapePluginModuleMac.mm: (WebKit::NetscapePluginModule::determineQuirks): Add a quirk for the ability to be snapshotted, which we only set for Flash at the moment.
- WebProcess/Plugins/Netscape/NetscapePlugin.h:
- WebProcess/Plugins/Netscape/NetscapePlugin.cpp: (WebKit::NetscapePlugin::snapshot): Create a shareable bitmap, and paint into it. (WebKit::NetscapePlugin::supportsSnapshotting): Test the quirk.
- WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm: (WebKit::NetscapePlugin::platformPaint): Allow the paint to happen if we're snapshotting, even when using the CoreAnimation drawing model.
- WebProcess/Plugins/Plugin.h: New snapshot method.
- WebProcess/Plugins/PluginProxy.h:
- WebProcess/Plugins/PluginProxy.cpp: (WebKit::PluginProxy::snapshot): Send a sync message to the plugin process, asking for a snapshot in a shareble bitmap.
- WebProcess/Plugins/PluginView.h:
- WebProcess/Plugins/PluginView.cpp: (WebKit::PluginView::paint): Use the snapshot if we have one, to avoid calling into the plugin to draw, which may run script.
(WebKit::PluginView::notifyWidget): Generate the snapshot before
a flattening paint, and throw it away after.
- 9:18 PM Changeset in webkit [78955] by
-
- 3 edits in trunk/Source/JavaScriptCore
2011-02-17 Geoffrey Garen <ggaren@apple.com>
Reviewed by Sam Weinig.
A little more abstraction for MarkedSpace::contains
https://bugs.webkit.org/show_bug.cgi?id=54715
- runtime/MarkedBlock.h: (JSC::MarkedBlock::contains): Added a contains function, so MarkedSpace doesn't have to know how MarkedBlock tracks containment internally.
- runtime/MarkedSpace.h: (JSC::MarkedSpace::contains): Call through to MarkedBlock to figure out if a cell that seems to be in a block is valid.
- 9:07 PM Changeset in webkit [78954] by
-
- 4 edits in trunk/Source/JavaScriptCore
2011-02-17 Geoffrey Garen <ggaren@apple.com>
Reviewed by Sam Weinig.
Removed the invariant that the last cell in a block is always marked
https://bugs.webkit.org/show_bug.cgi?id=54713
SunSpider reports no change.
This adds one branch to allocation, but simplifies the mark invariant,
especially in a world of variable-sized cells. Now, it really is true
that any cell whose mark bit is set is a valid, live cell whose
constructor has run and whose destructor has not run.
- runtime/JSCell.h: (JSC::JSCell::MarkedBlock::allocate): Changed this do-while into a while since we can no longer rely on a set mark bit to break out of this loop before it reaches the end of the block.
- runtime/MarkedBlock.cpp: (JSC::MarkedBlock::MarkedBlock): (JSC::MarkedBlock::sweep):
- runtime/MarkedBlock.h: (JSC::MarkedBlock::isEmpty): (JSC::MarkedBlock::clearMarks): (JSC::MarkedBlock::markCount): (JSC::MarkedBlock::forEach): No need to set a special last mark bit.
- 8:58 PM Changeset in webkit [78953] by
-
- 2 edits in trunk/LayoutTests
Unreviewed expectations fix for chromium.
- platform/chromium/test_expectations.txt:
- 8:53 PM Changeset in webkit [78952] by
-
- 9 edits in branches/safari-534.20-branch/Source/WebKit2
Merge 78915.
- 8:48 PM Changeset in webkit [78951] by
-
- 13 edits2 adds in trunk/LayoutTests
2011-02-17 Mihai Parparita <mihaip@chromium.org>
Reviewed by Kent Tamura.
[chromium] Video-related compositor tests failing in DumpRenderTree
https://bugs.webkit.org/show_bug.cgi?id=47231
Make tests fall back to .ogv (Theora) videos if they can't play the
.mp4/.mov files.
- compositing/geometry/clipped-video-controller.html:
- compositing/geometry/video-fixed-scrolling.html:
- compositing/geometry/video-opacity-overlay.html:
- compositing/layers-inside-overflow-scroll.html:
- compositing/overflow/overflow-compositing-descendant.html:
- compositing/overflow/scroll-ancestor-update.html:
- compositing/reflections/load-video-in-reflection.html:
- compositing/resources/alpha-gradient-small.ogv: Added.
- compositing/resources/video.ogv: Added.
- compositing/self-painting-layers.html:
- compositing/self-painting-layers2.html:
- compositing/video/video-background-color.html:
- compositing/video/video-poster.html:
- platform/chromium/test_expectations.txt:
- 8:44 PM Changeset in webkit [78950] by
-
- 9 edits2 copies in branches/safari-534.20-branch
Merge 78729.
- 8:43 PM Changeset in webkit [78949] by
-
- 2 edits in trunk/Tools
2011-02-17 Dirk Pranke <dpranke@chromium.org>
Reviewed by Adam Roben.
Add blacklist of remaining webkitpy/* modules that fail on
Win32, so that test-webkitpy will at least run cleanly.
- Scripts/webkitpy/layout_tests/test/main.py:
- 8:38 PM Changeset in webkit [78948] by
-
- 2 edits in trunk/Websites/bugs.webkit.org
2011-02-17 Ojan Vafai <ojan@chromium.org>
Reviewed by Antonio Gomes.
make event handling work in Gecko
https://bugs.webkit.org/show_bug.cgi?id=54702
Gecko doesn't support the global event property. It's an IE-ism.
- code-review.js:
- 8:35 PM Changeset in webkit [78947] by
-
- 2 edits in trunk/Tools
2011-02-17 Simon Fraser <Simon Fraser>
Reviewed by Sam Weinig.
Set a preference to ensure that scrollbars are in a predictable
state for DRT.
- DumpRenderTree/mac/DumpRenderTree.mm: (resetDefaultsToConsistentValues):
- 8:35 PM Changeset in webkit [78946] by
-
- 3 edits in trunk/Source/WebCore
2011-02-17 Simon Fraser <Simon Fraser>
Reviewed by Sam Weinig.
Composited iframe content is missing from snapshots in WebKit2
https://bugs.webkit.org/show_bug.cgi?id=54696
We need to propagate the 'flattening' paint behavior flag
down to subviews while painting. WebKit1 does this via
code in WebFrameView, but this is a more general fix
that works in WebKit2 as well.
Made a utility method, parentFrameView(), which I changed
some other methods to use as well.
- page/FrameView.cpp: (WebCore::FrameView::isEnclosedInCompositingLayer): (WebCore::FrameView::useSlowRepaints): (WebCore::FrameView::useSlowRepaintsIfNotOverlapped): (WebCore::FrameView::isOverlappedIncludingAncestors): (WebCore::FrameView::parentFrameView): (WebCore::FrameView::paintContents):
- page/FrameView.h:
- 8:29 PM Changeset in webkit [78945] by
-
- 8 edits1 delete in trunk/Source/JavaScriptCore
2011-02-17 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r78856 and r78907.
http://trac.webkit.org/changeset/78856
http://trac.webkit.org/changeset/78907
https://bugs.webkit.org/show_bug.cgi?id=54705
These seem to break tests on 32-bit builds. (Requested by
aroben on #webkit).
- JavaScriptCore.xcodeproj/project.pbxproj:
- collector/handles/Global.h: (JSC::Global::internalSet):
- collector/handles/Handle.h: (JSC::HandleTypes::getFromSlot): (JSC::HandleTypes::toJSValue): (JSC::HandleTypes::validateUpcast): (JSC::HandleConverter::operator->): (JSC::HandleConverter::operator*): (JSC::Handle::Handle): (JSC::Handle::get):
- runtime/JSArray.cpp: (JSC::JSArray::sortNumeric):
- runtime/JSObject.h: (JSC::JSObject::inlineGetOwnPropertySlot):
- runtime/SlotAccessor.h: Removed.
- runtime/WeakGCPtr.h: (JSC::WeakGCPtr::get): (JSC::WeakGCPtr::internalSet):
- runtime/WriteBarrier.h: (JSC::DeprecatedPtr::DeprecatedPtr): (JSC::DeprecatedPtr::get): (JSC::DeprecatedPtr::operator*): (JSC::DeprecatedPtr::operator->): (JSC::DeprecatedPtr::slot): (JSC::DeprecatedPtr::operator UnspecifiedBoolType*): (JSC::DeprecatedPtr::operator!): (JSC::WriteBarrierBase::set): (JSC::WriteBarrierBase::get): (JSC::WriteBarrierBase::operator*): (JSC::WriteBarrierBase::operator->): (JSC::WriteBarrierBase::clear): (JSC::WriteBarrierBase::slot): (JSC::WriteBarrierBase::operator UnspecifiedBoolType*): (JSC::WriteBarrierBase::operator!): (JSC::WriteBarrierBase::setWithoutWriteBarrier): (JSC::WriteBarrier::WriteBarrier):
- 8:29 PM Changeset in webkit [78944] by
-
- 3 edits in trunk/Tools
2011-02-17 Dirk Pranke <dpranke@chromium.org>
Reviewed by Adam Roben.
test-webkitpy doesn't work with the multiprocessing module on win32
or cygwin, so we skip it for now.
- Scripts/webkitpy/layout_tests/layout_package/manager_worker_broker_unittest.py:
- Scripts/webkitpy/layout_tests/layout_package/run_webkit_tests_unittest.py:
- 8:21 PM Changeset in webkit [78943] by
-
- 4 edits in trunk/Tools
2011-02-17 Dirk Pranke <dpranke@chromium.org>
Reviewed by Adam Roben.
Fix version, baseline_search_path for chromium-win-win7. Also
fix chromium_win_unittests, and fix port_testcase.make_port()
to correctly use the options passed into it and only set
results_directory() if necessary.
- Scripts/webkitpy/layout_tests/port/chromium_win.py:
- Scripts/webkitpy/layout_tests/port/chromium_win_unittest.py:
- Scripts/webkitpy/layout_tests/port/port_testcase.py:
- 8:19 PM Changeset in webkit [78942] by
-
- 2 edits in branches/safari-534.20-branch/Source/WebCore
Merge 78917.
- 8:08 PM Changeset in webkit [78941] by
-
- 7 edits in branches/safari-534.20-branch/Source/WebCore
Merge 78928.
- 7:18 PM Changeset in webkit [78940] by
-
- 4 edits in trunk/Source/WebKit/chromium
2011-02-17 Andrew Wilson <atwilson@chromium.org>
Unreviewed, rolling out r78936.
http://trac.webkit.org/changeset/78936
https://bugs.webkit.org/show_bug.cgi?id=54632
Breaks chromium build
- public/WebFrame.h:
- src/WebFrameImpl.cpp:
- src/WebFrameImpl.h:
- 7:01 PM Changeset in webkit [78939] by
-
- 2 edits in trunk/LayoutTests
Unreviewed expectations tweak in attempt to green up the chromium canaries.
- platform/chromium/test_expectations.txt:
- 7:00 PM Changeset in webkit [78938] by
-
- 4 edits in branches/safari-534.20-branch/Source/JavaScriptCore
Merge r78795
- 6:07 PM Changeset in webkit [78937] by
-
- 2 edits in trunk/LayoutTests
Unreviewed test expectations change to ignore errors for coords-units-03-b.svg until we can rebaseline it.
- platform/chromium/test_expectations.txt:
- 6:01 PM Changeset in webkit [78936] by
-
- 4 edits in trunk/Source/WebKit/chromium
2011-02-17 Yuzo Fujishima <yuzo@google.com>
Reviewed by Shinichiro Hamaji.
Fix for Bug 54632 - [chromium] Printing causes view to scroll
https://bugs.webkit.org/show_bug.cgi?id=54632
Expose setScrollOffset such that Chromium can restore the scroll offset
after printing the document. The bug will be fixed when the counterpart
patch http://codereview.chromium.org/6539011/ is landed for Chromium.
- public/WebFrame.h:
- src/WebFrameImpl.cpp: (WebKit::WebFrameImpl::setScrollOffset):
- src/WebFrameImpl.h:
- 5:50 PM Changeset in webkit [78935] by
-
- 2 edits in trunk/Source/JavaScriptCore
Unreviewed.
[Qt] Buildfix.
- wtf/RetainPtr.h: Add missing PLATFORM(CF) guard.
- 5:48 PM Changeset in webkit [78934] by
-
- 485 edits1 copy9 adds4 deletes in trunk/LayoutTests
Unreviewed expectations changes.
- platform/chromium-linux/css1/box_properties/clear_float-expected.checksum:
- platform/chromium-linux/css1/box_properties/clear_float-expected.png:
- platform/chromium-linux/css1/box_properties/float_on_text_elements-expected.checksum:
- platform/chromium-linux/css1/box_properties/float_on_text_elements-expected.png:
- platform/chromium-linux/css1/text_properties/text_align-expected.checksum:
- platform/chromium-linux/css1/text_properties/text_align-expected.png:
- platform/chromium-linux/css2.1/t0905-c414-flt-wrap-00-e-expected.checksum:
- platform/chromium-linux/css2.1/t0905-c414-flt-wrap-00-e-expected.png:
- platform/chromium-linux/css2.1/t0905-c5525-fltcont-00-d-g-expected.checksum:
- platform/chromium-linux/css2.1/t0905-c5525-fltcont-00-d-g-expected.png:
- platform/chromium-linux/css2.1/t0905-c5525-fltcont-00-d-g-expected.txt:
- platform/chromium-linux/css2.1/t0905-c5525-fltmult-00-d-g-expected.checksum:
- platform/chromium-linux/css2.1/t0905-c5525-fltmult-00-d-g-expected.png:
- platform/chromium-linux/css2.1/t0905-c5525-fltwidth-00-c-g-expected.checksum:
- platform/chromium-linux/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png:
- platform/chromium-linux/css2.1/t0905-c5525-fltwidth-00-c-g-expected.txt:
- platform/chromium-linux/css2.1/t1602-c43-center-00-d-ag-expected.checksum:
- platform/chromium-linux/css2.1/t1602-c43-center-00-d-ag-expected.png:
- platform/chromium-linux/css2.1/t1602-c546-txt-align-00-b-expected.checksum:
- platform/chromium-linux/css2.1/t1602-c546-txt-align-00-b-expected.png:
- platform/chromium-linux/editing/pasteboard/block-wrappers-necessary-expected.checksum:
- platform/chromium-linux/editing/pasteboard/block-wrappers-necessary-expected.png:
- platform/chromium-linux/editing/pasteboard/nested-blocks-with-text-area-expected.checksum:
- platform/chromium-linux/editing/pasteboard/nested-blocks-with-text-area-expected.png:
- platform/chromium-linux/editing/pasteboard/nested-blocks-with-text-field-expected.checksum:
- platform/chromium-linux/editing/pasteboard/nested-blocks-with-text-field-expected.png:
- platform/chromium-linux/editing/selection/3690703-2-expected.checksum:
- platform/chromium-linux/editing/selection/3690703-2-expected.png:
- platform/chromium-linux/editing/selection/3690703-2-expected.txt:
- platform/chromium-linux/editing/selection/3690703-expected.checksum:
- platform/chromium-linux/editing/selection/3690703-expected.png:
- platform/chromium-linux/editing/selection/3690703-expected.txt:
- platform/chromium-linux/editing/selection/3690719-expected.checksum:
- platform/chromium-linux/editing/selection/3690719-expected.png:
- platform/chromium-linux/editing/selection/3690719-expected.txt:
- platform/chromium-linux/editing/style/5046875-2-expected.checksum:
- platform/chromium-linux/editing/style/5046875-2-expected.png:
- platform/chromium-linux/editing/style/block-style-001-expected.checksum:
- platform/chromium-linux/editing/style/block-style-001-expected.png:
- platform/chromium-linux/editing/style/block-style-002-expected.checksum:
- platform/chromium-linux/editing/style/block-style-002-expected.png:
- platform/chromium-linux/editing/style/block-style-003-expected.checksum:
- platform/chromium-linux/editing/style/block-style-003-expected.png:
- platform/chromium-linux/editing/style/create-block-for-style-002-expected.checksum:
- platform/chromium-linux/editing/style/create-block-for-style-002-expected.png:
- platform/chromium-linux/editing/style/create-block-for-style-003-expected.checksum:
- platform/chromium-linux/editing/style/create-block-for-style-003-expected.png:
- platform/chromium-linux/editing/style/create-block-for-style-004-expected.checksum:
- platform/chromium-linux/editing/style/create-block-for-style-004-expected.png:
- platform/chromium-linux/editing/style/create-block-for-style-005-expected.checksum:
- platform/chromium-linux/editing/style/create-block-for-style-005-expected.png:
- platform/chromium-linux/editing/style/create-block-for-style-006-expected.checksum:
- platform/chromium-linux/editing/style/create-block-for-style-006-expected.png:
- platform/chromium-linux/editing/style/create-block-for-style-008-expected.checksum:
- platform/chromium-linux/editing/style/create-block-for-style-008-expected.png:
- platform/chromium-linux/editing/style/create-block-for-style-009-expected.checksum:
- platform/chromium-linux/editing/style/create-block-for-style-009-expected.png:
- platform/chromium-linux/editing/style/create-block-for-style-010-expected.checksum:
- platform/chromium-linux/editing/style/create-block-for-style-010-expected.png:
- platform/chromium-linux/editing/style/create-block-for-style-011-expected.checksum:
- platform/chromium-linux/editing/style/create-block-for-style-011-expected.png:
- platform/chromium-linux/editing/style/create-block-for-style-012-expected.checksum:
- platform/chromium-linux/editing/style/create-block-for-style-012-expected.png:
- platform/chromium-linux/editing/style/create-block-for-style-013-expected.checksum:
- platform/chromium-linux/editing/style/create-block-for-style-013-expected.png:
- platform/chromium-linux/editing/style/table-selection-expected.checksum:
- platform/chromium-linux/editing/style/table-selection-expected.png:
- platform/chromium-linux/fast/block/basic/016-expected.checksum:
- platform/chromium-linux/fast/block/basic/016-expected.png:
- platform/chromium-linux/fast/block/basic/016-expected.txt: Removed.
- platform/chromium-linux/fast/block/float/013-expected.checksum:
- platform/chromium-linux/fast/block/float/013-expected.png:
- platform/chromium-linux/fast/block/float/016-expected.checksum:
- platform/chromium-linux/fast/block/float/016-expected.png:
- platform/chromium-linux/fast/block/margin-collapse/103-expected.txt:
- platform/chromium-linux/fast/block/positioning/051-expected.checksum:
- platform/chromium-linux/fast/block/positioning/051-expected.png:
- platform/chromium-linux/fast/block/positioning/inline-block-relposition-expected.checksum:
- platform/chromium-linux/fast/block/positioning/inline-block-relposition-expected.png:
- platform/chromium-linux/fast/block/positioning/inline-block-relposition-expected.txt:
- platform/chromium-linux/fast/blockflow/box-shadow-horizontal-bt-expected.checksum:
- platform/chromium-linux/fast/blockflow/box-shadow-horizontal-bt-expected.png:
- platform/chromium-linux/fast/blockflow/box-shadow-vertical-lr-expected.checksum:
- platform/chromium-linux/fast/blockflow/box-shadow-vertical-lr-expected.png:
- platform/chromium-linux/fast/blockflow/box-shadow-vertical-rl-expected.checksum:
- platform/chromium-linux/fast/blockflow/box-shadow-vertical-rl-expected.png:
- platform/chromium-linux/fast/box-shadow/inset-expected.checksum:
- platform/chromium-linux/fast/box-shadow/inset-expected.png:
- platform/chromium-linux/fast/css/create_element_align-expected.checksum:
- platform/chromium-linux/fast/css/create_element_align-expected.png:
- platform/chromium-linux/fast/dom/HTMLTableElement/createCaption-expected.checksum:
- platform/chromium-linux/fast/dom/HTMLTableElement/createCaption-expected.png:
- platform/chromium-linux/fast/forms/button-default-title-expected.checksum:
- platform/chromium-linux/fast/forms/button-default-title-expected.png:
- platform/chromium-linux/fast/forms/button-default-title-expected.txt:
- platform/chromium-linux/fast/forms/control-clip-expected.checksum:
- platform/chromium-linux/fast/forms/control-clip-expected.png:
- platform/chromium-linux/fast/forms/control-clip-expected.txt:
- platform/chromium-linux/fast/forms/file-input-direction-expected.txt:
- platform/chromium-linux/fast/inline-block/003-expected.checksum:
- platform/chromium-linux/fast/inline-block/003-expected.png:
- platform/chromium-linux/fast/inline-block/inline-block-vertical-align-expected.checksum:
- platform/chromium-linux/fast/inline-block/inline-block-vertical-align-expected.png:
- platform/chromium-linux/fast/multicol/float-avoidance-expected.checksum:
- platform/chromium-linux/fast/multicol/float-avoidance-expected.png:
- platform/chromium-linux/fast/multicol/float-avoidance-expected.txt: Removed.
- platform/chromium-linux/fast/multicol/shadow-breaking-expected.checksum:
- platform/chromium-linux/fast/multicol/shadow-breaking-expected.png:
- platform/chromium-linux/fast/multicol/vertical-lr/float-avoidance-expected.checksum:
- platform/chromium-linux/fast/multicol/vertical-lr/float-avoidance-expected.png:
- platform/chromium-linux/fast/multicol/vertical-rl/float-avoidance-expected.checksum:
- platform/chromium-linux/fast/multicol/vertical-rl/float-avoidance-expected.png:
- platform/chromium-linux/fast/parser/001-expected.checksum:
- platform/chromium-linux/fast/parser/001-expected.png:
- platform/chromium-linux/fast/repaint/continuation-after-outline-expected.checksum:
- platform/chromium-linux/fast/repaint/continuation-after-outline-expected.png:
- platform/chromium-linux/fast/repaint/control-clip-expected.checksum:
- platform/chromium-linux/fast/repaint/control-clip-expected.png:
- platform/chromium-linux/fast/repaint/control-clip-expected.txt:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-1-expected.checksum:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-1-expected.png:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-10-expected.checksum:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-10-expected.png:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-2-expected.checksum:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-2-expected.png:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-3-expected.checksum:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-3-expected.png:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-4-expected.checksum:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-4-expected.png:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-5-expected.checksum:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-5-expected.png:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-6-expected.checksum:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-6-expected.png:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-7-expected.checksum:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-7-expected.png:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-8-expected.checksum:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-8-expected.png:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-9-expected.checksum:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-9-expected.png:
- platform/chromium-linux/fast/repaint/reflection-redraw-expected.checksum:
- platform/chromium-linux/fast/repaint/reflection-redraw-expected.png:
- platform/chromium-linux/fast/replaced/007-expected.checksum:
- platform/chromium-linux/fast/replaced/007-expected.png:
- platform/chromium-linux/fast/ruby/nested-ruby-expected.checksum:
- platform/chromium-linux/fast/ruby/nested-ruby-expected.png:
- platform/chromium-linux/fast/ruby/nested-ruby-expected.txt:
- platform/chromium-linux/fast/ruby/ruby-empty-rt-expected.checksum:
- platform/chromium-linux/fast/ruby/ruby-empty-rt-expected.png:
- platform/chromium-linux/fast/ruby/ruby-run-break-expected.checksum:
- platform/chromium-linux/fast/ruby/ruby-run-break-expected.png:
- platform/chromium-linux/fast/ruby/ruby-runs-expected.checksum:
- platform/chromium-linux/fast/ruby/ruby-runs-expected.png:
- platform/chromium-linux/fast/ruby/ruby-runs-spans-expected.checksum:
- platform/chromium-linux/fast/ruby/ruby-runs-spans-expected.png:
- platform/chromium-linux/fast/ruby/rubyDOM-insert-rt-expected.checksum:
- platform/chromium-linux/fast/ruby/rubyDOM-insert-rt-expected.png:
- platform/chromium-linux/fast/ruby/rubyDOM-insert-text1-expected.checksum:
- platform/chromium-linux/fast/ruby/rubyDOM-insert-text1-expected.png:
- platform/chromium-linux/fast/table/011-expected.checksum:
- platform/chromium-linux/fast/table/011-expected.png:
- platform/chromium-linux/fast/table/035-expected.checksum:
- platform/chromium-linux/fast/table/035-expected.png:
- platform/chromium-linux/fast/table/035-vertical-expected.checksum:
- platform/chromium-linux/fast/table/035-vertical-expected.png:
- platform/chromium-linux/fast/table/border-collapsing/004-expected.checksum:
- platform/chromium-linux/fast/table/border-collapsing/004-expected.png:
- platform/chromium-linux/fast/table/border-collapsing/004-vertical-expected.checksum:
- platform/chromium-linux/fast/table/border-collapsing/004-vertical-expected.png:
- platform/chromium-linux/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.checksum:
- platform/chromium-linux/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.png:
- platform/chromium-linux/fast/table/colgroup-preceded-by-caption-expected.checksum:
- platform/chromium-linux/fast/table/colgroup-preceded-by-caption-expected.png:
- platform/chromium-linux/fast/table/colgroup-spanning-groups-rules-expected.checksum:
- platform/chromium-linux/fast/table/colgroup-spanning-groups-rules-expected.png:
- platform/chromium-linux/fast/table/frame-and-rules-expected.checksum:
- platform/chromium-linux/fast/table/frame-and-rules-expected.png:
- platform/chromium-linux/fast/table/percent-heights-expected.checksum:
- platform/chromium-linux/fast/table/percent-heights-expected.png:
- platform/chromium-linux/fast/table/rowspan-paint-order-vertical-expected.checksum:
- platform/chromium-linux/fast/table/rowspan-paint-order-vertical-expected.png:
- platform/chromium-linux/fast/text/atsui-negative-spacing-features-expected.checksum:
- platform/chromium-linux/fast/text/atsui-negative-spacing-features-expected.png:
- platform/chromium-linux/fast/text/atsui-negative-spacing-features-expected.txt: Removed.
- platform/chromium-linux/fast/text/atsui-spacing-features-expected.checksum:
- platform/chromium-linux/fast/text/atsui-spacing-features-expected.png:
- platform/chromium-linux/fast/text/atsui-spacing-features-expected.txt:
- platform/chromium-linux/fast/text/basic/002-expected.checksum:
- platform/chromium-linux/fast/text/basic/002-expected.png:
- platform/chromium-linux/fast/text/capitalize-boundaries-expected.checksum:
- platform/chromium-linux/fast/text/capitalize-boundaries-expected.png:
- platform/chromium-linux/fast/text/capitalize-boundaries-expected.txt:
- platform/chromium-linux/fast/text/international/bidi-override-expected.checksum:
- platform/chromium-linux/fast/text/international/bidi-override-expected.png:
- platform/chromium-linux/fast/text/justified-selection-at-edge-expected.checksum:
- platform/chromium-linux/fast/text/justified-selection-at-edge-expected.png:
- platform/chromium-linux/fast/text/justified-selection-expected.checksum:
- platform/chromium-linux/fast/text/justified-selection-expected.png:
- platform/chromium-linux/fast/text/justify-nbsp-expected.checksum: Added.
- platform/chromium-linux/fast/text/justify-nbsp-expected.png: Copied from LayoutTests/platform/chromium-linux/fast/repaint/continuation-after-outline-expected.png.
- platform/chromium-linux/fast/text/justify-padding-distribution-expected.checksum: Added.
- platform/chromium-linux/fast/text/justify-padding-distribution-expected.png: Added.
- platform/chromium-linux/fast/text/trailing-white-space-2-expected.checksum:
- platform/chromium-linux/fast/text/trailing-white-space-2-expected.png:
- platform/chromium-linux/fast/text/trailing-white-space-expected.checksum:
- platform/chromium-linux/fast/text/trailing-white-space-expected.png:
- platform/chromium-linux/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.checksum: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.png: Added.
- platform/chromium-linux/svg/custom/svg-fonts-in-html-expected.checksum:
- platform/chromium-linux/svg/custom/svg-fonts-in-html-expected.png:
- platform/chromium-linux/svg/custom/svg-fonts-in-html-expected.txt: Removed.
- platform/chromium-linux/svg/hixie/mixed/008-expected.checksum:
- platform/chromium-linux/svg/hixie/mixed/008-expected.png:
- platform/chromium-linux/svg/zoom/page/zoom-hixie-mixed-008-expected.checksum:
- platform/chromium-linux/svg/zoom/page/zoom-hixie-mixed-008-expected.png:
- platform/chromium-linux/svg/zoom/text/zoom-hixie-mixed-008-expected.checksum:
- platform/chromium-linux/svg/zoom/text/zoom-hixie-mixed-008-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug10633-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug10633-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug109043-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug109043-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug113424-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug113424-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug11384q-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug11384q-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug11384s-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug11384s-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug1163-1-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug1163-1-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug1188-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug1188-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug1188-expected.txt:
- platform/chromium-linux/tables/mozilla/bugs/bug119786-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug119786-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug126742-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug126742-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug127267-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug127267-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug1302-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug1302-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug131020-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug131020-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug131020_iframe-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug131020_iframe-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug1318-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug1318-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug1318-expected.txt:
- platform/chromium-linux/tables/mozilla/bugs/bug14323-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug14323-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug149275-1-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug149275-1-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug1802-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug1802-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug1802s-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug1802s-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug18664-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug18664-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug222846-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug222846-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug23235-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug23235-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug2479-2-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug2479-2-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug2479-2-expected.txt:
- platform/chromium-linux/tables/mozilla/bugs/bug27038-3-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug27038-3-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug3260-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug3260-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug3454-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug3454-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug3977-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug3977-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug43854-1-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug43854-1-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug43854-2-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug43854-2-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug48028-2-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug48028-2-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug5838-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug5838-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug60804-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug60804-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug60807-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug60807-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug6304-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug6304-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug67915-1-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug67915-1-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug69382-1-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug69382-1-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug81934-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug81934-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug88035-2-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug88035-2-expected.png:
- platform/chromium-linux/tables/mozilla/bugs/bug8950-expected.checksum:
- platform/chromium-linux/tables/mozilla/bugs/bug8950-expected.png:
- platform/chromium-linux/tables/mozilla/collapsing_borders/bug41262-3-expected.checksum:
- platform/chromium-linux/tables/mozilla/collapsing_borders/bug41262-3-expected.png:
- platform/chromium-linux/tables/mozilla/core/bloomberg-expected.checksum:
- platform/chromium-linux/tables/mozilla/core/bloomberg-expected.png:
- platform/chromium-linux/tables/mozilla/core/bloomberg-expected.txt:
- platform/chromium-linux/tables/mozilla/core/captions-expected.checksum:
- platform/chromium-linux/tables/mozilla/core/captions-expected.png:
- platform/chromium-linux/tables/mozilla/core/misc-expected.checksum:
- platform/chromium-linux/tables/mozilla/core/misc-expected.png:
- platform/chromium-linux/tables/mozilla/core/row_span-expected.checksum:
- platform/chromium-linux/tables/mozilla/core/row_span-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/backgr_layers-opacity-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/backgr_layers-opacity-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/backgr_position-table-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/backgr_position-table-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-cell-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-cell-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-column-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-column-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-column-group-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-column-group-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-row-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-row-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-row-group-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/backgr_simple-table-row-group-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/body_col-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/body_col-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/body_tbody-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/body_tbody-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/body_tfoot-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/body_tfoot-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/colgroup_align_center-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/colgroup_align_center-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/colgroup_align_justify-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/colgroup_align_justify-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/colgroup_align_left-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/colgroup_align_left-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/colgroup_align_right-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/colgroup_align_right-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/colgroup_span-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/colgroup_span-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/colgroup_valign_baseline-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/colgroup_valign_baseline-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/colgroup_valign_bottom-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/colgroup_valign_bottom-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/colgroup_valign_middle-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/colgroup_valign_middle-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/colgroup_valign_top-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/colgroup_valign_top-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/colgroup_width_pct-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/colgroup_width_pct-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/colgroup_width_px-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/colgroup_width_px-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/table_frame_border-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/table_frame_border-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/table_frame_box-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/table_frame_box-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/table_row_align_center-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/table_row_align_center-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/table_rules_all-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/table_rules_all-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/tables_row_th_nowrap-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/tables_row_th_nowrap-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/tables_th_align_center-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/tables_th_align_center-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/tables_th_colspan-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/tables_th_colspan-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/tables_th_height-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/tables_th_height-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/tbody_align_center-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/tbody_align_center-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/tfoot_align_center-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/tfoot_align_center-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/th_valign_baseline-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/th_valign_baseline-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/th_valign_bottom-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/th_valign_bottom-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/th_valign_middle-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/th_valign_middle-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/th_valign_top-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/th_valign_top-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/thead_align_center-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/thead_align_center-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/x_caption_align_bottom-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/x_caption_align_bottom-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/x_caption_align_top-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/x_caption_align_top-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/x_caption_class-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/x_caption_class-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/x_caption_id-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/x_caption_id-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/x_caption_style-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/x_caption_style-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/x_table-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/x_table-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/x_tbody_align_justify-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/x_tbody_align_justify-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/x_td_align_center-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/x_td_align_center-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/x_td_align_justify-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/x_td_align_justify-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/x_tfoot_align_justify-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/x_tfoot_align_justify-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/x_th_align_justify-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/x_th_align_justify-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/x_th_colspan-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/x_th_colspan-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/x_th_valign_baseline-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/x_th_valign_baseline-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/x_th_valign_bottom-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/x_th_valign_bottom-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/x_th_width-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/x_th_width-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/x_thead_align_justify-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/x_thead_align_justify-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/x_tr_align_center-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/x_tr_align_center-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/x_tr_align_justify-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/x_tr_align_justify-expected.png:
- platform/chromium-linux/tables/mozilla/other/body_col-expected.checksum:
- platform/chromium-linux/tables/mozilla/other/body_col-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug10140-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug10140-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug10216-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug10216-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug1055-2-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug1055-2-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug106966-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug106966-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug1128-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug1128-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug14007-1-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug14007-1-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug29058-2-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug3166-11-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug3166-11-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug3166-9-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug3166-9-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug91057-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug91057-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/core/captions1-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/core/captions1-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/core/captions2-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/core/captions2-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/core/captions3-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/core/captions3-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_above-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_above-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_below-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_below-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_void-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_void-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.png:
- platform/chromium-linux/tables/mozilla_expected_failures/other/test4-expected.checksum:
- platform/chromium-linux/tables/mozilla_expected_failures/other/test4-expected.png:
- platform/chromium-mac-snowleopard/fast/text/atsui-negative-spacing-features-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/atsui-negative-spacing-features-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/atsui-spacing-features-expected.checksum: Added.
- platform/chromium-mac-snowleopard/fast/text/atsui-spacing-features-expected.png: Added.
- 5:32 PM Changeset in webkit [78933] by
-
- 353 edits28 adds in trunk/LayoutTests
2011-02-17 Martin Robinson <mrobinson@igalia.com>
Updated GTK+ expectations after r78846. Add new pixel results for tests that
have changed and are missing them.
- 5:09 PM Changeset in webkit [78932] by
-
- 2 edits225 adds in trunk/LayoutTests
2011-02-17 Martin Robinson <mrobinson@igalia.com>
Continue importing GTK+ results for the Mozilla table tests.
- platform/gtk/Skipped: Unskip tests which now have results.
- 4:50 PM Changeset in webkit [78931] by
-
- 2 edits2 adds in trunk/LayoutTests
Unreviewed expectations change.
Added expectations for new test (still disabled for linux until canaries catch up).
- platform/chromium-mac/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.checksum: Added.
- platform/chromium-mac/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.png: Added.
- platform/chromium/test_expectations.txt:
- 4:46 PM Changeset in webkit [78930] by
-
- 3 edits in trunk/Tools
2011-02-17 Dirk Pranke <dpranke@chromium.org>
Reviewed by Ojan Vafai.
Fix a hang in new-run-webkit-tests when run with
--dry-run --worker-model=processes
- Scripts/webkitpy/layout_tests/layout_package/test_runner2.py:
- Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
- 4:34 PM Changeset in webkit [78929] by
-
- 720 edits5 adds in trunk/LayoutTests
Unreviewed win expectations update after recent font rendering changes.
- platform/chromium-win/css1/box_properties/clear_float-expected.checksum:
- platform/chromium-win/css1/box_properties/clear_float-expected.png:
- platform/chromium-win/css1/box_properties/clear_float-expected.txt:
- platform/chromium-win/css1/box_properties/float_elements_in_series-expected.checksum:
- platform/chromium-win/css1/box_properties/float_elements_in_series-expected.png:
- platform/chromium-win/css1/box_properties/float_on_text_elements-expected.checksum:
- platform/chromium-win/css1/box_properties/float_on_text_elements-expected.png:
- platform/chromium-win/css1/box_properties/float_on_text_elements-expected.txt:
- platform/chromium-win/css1/text_properties/text_align-expected.checksum:
- platform/chromium-win/css1/text_properties/text_align-expected.png:
- platform/chromium-win/css1/text_properties/text_align-expected.txt:
- platform/chromium-win/css2.1/t0805-c5518-brdr-t-01-e-expected.checksum:
- platform/chromium-win/css2.1/t0805-c5518-brdr-t-01-e-expected.png:
- platform/chromium-win/css2.1/t0805-c5518-brdr-t-01-e-expected.txt:
- platform/chromium-win/css2.1/t0805-c5520-brdr-b-01-e-expected.checksum:
- platform/chromium-win/css2.1/t0805-c5520-brdr-b-01-e-expected.png:
- platform/chromium-win/css2.1/t0805-c5520-brdr-b-01-e-expected.txt:
- platform/chromium-win/css2.1/t0905-c414-flt-wrap-00-e-expected.checksum:
- platform/chromium-win/css2.1/t0905-c414-flt-wrap-00-e-expected.png:
- platform/chromium-win/css2.1/t0905-c414-flt-wrap-00-e-expected.txt:
- platform/chromium-win/css2.1/t0905-c5525-fltcont-00-d-g-expected.checksum:
- platform/chromium-win/css2.1/t0905-c5525-fltcont-00-d-g-expected.png:
- platform/chromium-win/css2.1/t0905-c5525-fltcont-00-d-g-expected.txt:
- platform/chromium-win/css2.1/t0905-c5525-fltmult-00-d-g-expected.checksum:
- platform/chromium-win/css2.1/t0905-c5525-fltmult-00-d-g-expected.png:
- platform/chromium-win/css2.1/t0905-c5525-fltmult-00-d-g-expected.txt:
- platform/chromium-win/css2.1/t0905-c5525-fltwidth-00-c-g-expected.checksum:
- platform/chromium-win/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png:
- platform/chromium-win/css2.1/t0905-c5525-fltwidth-00-c-g-expected.txt:
- platform/chromium-win/css2.1/t1602-c43-center-00-d-ag-expected.checksum:
- platform/chromium-win/css2.1/t1602-c43-center-00-d-ag-expected.png:
- platform/chromium-win/css2.1/t1602-c43-center-00-d-ag-expected.txt:
- platform/chromium-win/css2.1/t1602-c546-txt-align-00-b-expected.checksum:
- platform/chromium-win/css2.1/t1602-c546-txt-align-00-b-expected.png:
- platform/chromium-win/css2.1/t1602-c546-txt-align-00-b-expected.txt:
- platform/chromium-win/editing/pasteboard/block-wrappers-necessary-expected.checksum:
- platform/chromium-win/editing/pasteboard/block-wrappers-necessary-expected.png:
- platform/chromium-win/editing/pasteboard/block-wrappers-necessary-expected.txt:
- platform/chromium-win/editing/pasteboard/nested-blocks-with-text-area-expected.checksum:
- platform/chromium-win/editing/pasteboard/nested-blocks-with-text-area-expected.png:
- platform/chromium-win/editing/pasteboard/nested-blocks-with-text-area-expected.txt:
- platform/chromium-win/editing/pasteboard/nested-blocks-with-text-field-expected.checksum:
- platform/chromium-win/editing/pasteboard/nested-blocks-with-text-field-expected.png:
- platform/chromium-win/editing/pasteboard/nested-blocks-with-text-field-expected.txt:
- platform/chromium-win/editing/selection/3690703-2-expected.checksum:
- platform/chromium-win/editing/selection/3690703-2-expected.png:
- platform/chromium-win/editing/selection/3690703-2-expected.txt:
- platform/chromium-win/editing/selection/3690703-expected.checksum:
- platform/chromium-win/editing/selection/3690703-expected.png:
- platform/chromium-win/editing/selection/3690703-expected.txt:
- platform/chromium-win/editing/selection/3690719-expected.checksum:
- platform/chromium-win/editing/selection/3690719-expected.png:
- platform/chromium-win/editing/selection/3690719-expected.txt:
- platform/chromium-win/editing/style/5046875-2-expected.checksum:
- platform/chromium-win/editing/style/5046875-2-expected.png:
- platform/chromium-win/editing/style/5046875-2-expected.txt:
- platform/chromium-win/editing/style/block-style-001-expected.checksum:
- platform/chromium-win/editing/style/block-style-001-expected.png:
- platform/chromium-win/editing/style/block-style-001-expected.txt:
- platform/chromium-win/editing/style/block-style-002-expected.checksum:
- platform/chromium-win/editing/style/block-style-002-expected.png:
- platform/chromium-win/editing/style/block-style-002-expected.txt:
- platform/chromium-win/editing/style/block-style-003-expected.checksum:
- platform/chromium-win/editing/style/block-style-003-expected.png:
- platform/chromium-win/editing/style/block-style-003-expected.txt:
- platform/chromium-win/editing/style/create-block-for-style-002-expected.checksum:
- platform/chromium-win/editing/style/create-block-for-style-002-expected.png:
- platform/chromium-win/editing/style/create-block-for-style-002-expected.txt:
- platform/chromium-win/editing/style/create-block-for-style-003-expected.checksum:
- platform/chromium-win/editing/style/create-block-for-style-003-expected.png:
- platform/chromium-win/editing/style/create-block-for-style-003-expected.txt:
- platform/chromium-win/editing/style/create-block-for-style-004-expected.checksum:
- platform/chromium-win/editing/style/create-block-for-style-004-expected.png:
- platform/chromium-win/editing/style/create-block-for-style-004-expected.txt:
- platform/chromium-win/editing/style/create-block-for-style-005-expected.checksum:
- platform/chromium-win/editing/style/create-block-for-style-005-expected.png:
- platform/chromium-win/editing/style/create-block-for-style-005-expected.txt:
- platform/chromium-win/editing/style/create-block-for-style-006-expected.checksum:
- platform/chromium-win/editing/style/create-block-for-style-006-expected.png:
- platform/chromium-win/editing/style/create-block-for-style-006-expected.txt:
- platform/chromium-win/editing/style/create-block-for-style-008-expected.checksum:
- platform/chromium-win/editing/style/create-block-for-style-008-expected.png:
- platform/chromium-win/editing/style/create-block-for-style-008-expected.txt:
- platform/chromium-win/editing/style/create-block-for-style-009-expected.checksum:
- platform/chromium-win/editing/style/create-block-for-style-009-expected.png:
- platform/chromium-win/editing/style/create-block-for-style-009-expected.txt:
- platform/chromium-win/editing/style/create-block-for-style-010-expected.checksum:
- platform/chromium-win/editing/style/create-block-for-style-010-expected.png:
- platform/chromium-win/editing/style/create-block-for-style-010-expected.txt:
- platform/chromium-win/editing/style/create-block-for-style-011-expected.checksum:
- platform/chromium-win/editing/style/create-block-for-style-011-expected.png:
- platform/chromium-win/editing/style/create-block-for-style-011-expected.txt:
- platform/chromium-win/editing/style/create-block-for-style-012-expected.checksum:
- platform/chromium-win/editing/style/create-block-for-style-012-expected.png:
- platform/chromium-win/editing/style/create-block-for-style-012-expected.txt:
- platform/chromium-win/editing/style/create-block-for-style-013-expected.checksum:
- platform/chromium-win/editing/style/create-block-for-style-013-expected.png:
- platform/chromium-win/editing/style/create-block-for-style-013-expected.txt:
- platform/chromium-win/editing/style/table-selection-expected.checksum:
- platform/chromium-win/editing/style/table-selection-expected.png:
- platform/chromium-win/editing/style/table-selection-expected.txt:
- platform/chromium-win/fast/block/basic/016-expected.checksum:
- platform/chromium-win/fast/block/basic/016-expected.png:
- platform/chromium-win/fast/block/basic/016-expected.txt:
- platform/chromium-win/fast/block/float/013-expected.checksum:
- platform/chromium-win/fast/block/float/013-expected.png:
- platform/chromium-win/fast/block/float/013-expected.txt:
- platform/chromium-win/fast/block/float/016-expected.checksum:
- platform/chromium-win/fast/block/float/016-expected.png:
- platform/chromium-win/fast/block/float/016-expected.txt:
- platform/chromium-win/fast/block/margin-collapse/103-expected.txt:
- platform/chromium-win/fast/block/positioning/051-expected.checksum:
- platform/chromium-win/fast/block/positioning/051-expected.png:
- platform/chromium-win/fast/block/positioning/051-expected.txt:
- platform/chromium-win/fast/block/positioning/inline-block-relposition-expected.checksum:
- platform/chromium-win/fast/block/positioning/inline-block-relposition-expected.png:
- platform/chromium-win/fast/block/positioning/inline-block-relposition-expected.txt:
- platform/chromium-win/fast/blockflow/box-shadow-horizontal-bt-expected.checksum:
- platform/chromium-win/fast/blockflow/box-shadow-horizontal-bt-expected.png:
- platform/chromium-win/fast/blockflow/box-shadow-horizontal-bt-expected.txt:
- platform/chromium-win/fast/blockflow/box-shadow-vertical-lr-expected.checksum:
- platform/chromium-win/fast/blockflow/box-shadow-vertical-lr-expected.png:
- platform/chromium-win/fast/blockflow/box-shadow-vertical-lr-expected.txt:
- platform/chromium-win/fast/blockflow/box-shadow-vertical-rl-expected.checksum:
- platform/chromium-win/fast/blockflow/box-shadow-vertical-rl-expected.png:
- platform/chromium-win/fast/blockflow/box-shadow-vertical-rl-expected.txt:
- platform/chromium-win/fast/box-shadow/inset-expected.checksum:
- platform/chromium-win/fast/box-shadow/inset-expected.png:
- platform/chromium-win/fast/box-shadow/inset-expected.txt:
- platform/chromium-win/fast/css/create_element_align-expected.checksum:
- platform/chromium-win/fast/css/create_element_align-expected.png:
- platform/chromium-win/fast/css/create_element_align-expected.txt:
- platform/chromium-win/fast/dom/HTMLTableElement/createCaption-expected.checksum:
- platform/chromium-win/fast/dom/HTMLTableElement/createCaption-expected.png:
- platform/chromium-win/fast/dom/HTMLTableElement/createCaption-expected.txt:
- platform/chromium-win/fast/forms/button-default-title-expected.checksum:
- platform/chromium-win/fast/forms/button-default-title-expected.png:
- platform/chromium-win/fast/forms/button-default-title-expected.txt:
- platform/chromium-win/fast/forms/control-clip-expected.checksum:
- platform/chromium-win/fast/forms/control-clip-expected.png:
- platform/chromium-win/fast/forms/control-clip-expected.txt:
- platform/chromium-win/fast/forms/file-input-direction-expected.txt:
- platform/chromium-win/fast/inline-block/003-expected.checksum:
- platform/chromium-win/fast/inline-block/003-expected.png:
- platform/chromium-win/fast/inline-block/003-expected.txt:
- platform/chromium-win/fast/inline-block/inline-block-vertical-align-expected.checksum:
- platform/chromium-win/fast/inline-block/inline-block-vertical-align-expected.png:
- platform/chromium-win/fast/inline-block/inline-block-vertical-align-expected.txt:
- platform/chromium-win/fast/multicol/float-avoidance-expected.checksum:
- platform/chromium-win/fast/multicol/float-avoidance-expected.png:
- platform/chromium-win/fast/multicol/float-avoidance-expected.txt:
- platform/chromium-win/fast/multicol/shadow-breaking-expected.checksum:
- platform/chromium-win/fast/multicol/shadow-breaking-expected.png:
- platform/chromium-win/fast/multicol/vertical-lr/float-avoidance-expected.checksum:
- platform/chromium-win/fast/multicol/vertical-lr/float-avoidance-expected.png:
- platform/chromium-win/fast/multicol/vertical-lr/float-avoidance-expected.txt:
- platform/chromium-win/fast/multicol/vertical-rl/float-avoidance-expected.checksum:
- platform/chromium-win/fast/multicol/vertical-rl/float-avoidance-expected.png:
- platform/chromium-win/fast/multicol/vertical-rl/float-avoidance-expected.txt:
- platform/chromium-win/fast/parser/001-expected.checksum:
- platform/chromium-win/fast/parser/001-expected.png:
- platform/chromium-win/fast/parser/001-expected.txt:
- platform/chromium-win/fast/repaint/continuation-after-outline-expected.checksum:
- platform/chromium-win/fast/repaint/continuation-after-outline-expected.png:
- platform/chromium-win/fast/repaint/continuation-after-outline-expected.txt:
- platform/chromium-win/fast/repaint/control-clip-expected.checksum:
- platform/chromium-win/fast/repaint/control-clip-expected.png:
- platform/chromium-win/fast/repaint/control-clip-expected.txt:
- platform/chromium-win/fast/repaint/line-flow-with-floats-1-expected.checksum:
- platform/chromium-win/fast/repaint/line-flow-with-floats-1-expected.png:
- platform/chromium-win/fast/repaint/line-flow-with-floats-1-expected.txt:
- platform/chromium-win/fast/repaint/line-flow-with-floats-10-expected.checksum:
- platform/chromium-win/fast/repaint/line-flow-with-floats-10-expected.png:
- platform/chromium-win/fast/repaint/line-flow-with-floats-10-expected.txt:
- platform/chromium-win/fast/repaint/line-flow-with-floats-2-expected.checksum:
- platform/chromium-win/fast/repaint/line-flow-with-floats-2-expected.png:
- platform/chromium-win/fast/repaint/line-flow-with-floats-2-expected.txt:
- platform/chromium-win/fast/repaint/line-flow-with-floats-3-expected.checksum:
- platform/chromium-win/fast/repaint/line-flow-with-floats-3-expected.png:
- platform/chromium-win/fast/repaint/line-flow-with-floats-3-expected.txt:
- platform/chromium-win/fast/repaint/line-flow-with-floats-4-expected.checksum:
- platform/chromium-win/fast/repaint/line-flow-with-floats-4-expected.png:
- platform/chromium-win/fast/repaint/line-flow-with-floats-4-expected.txt:
- platform/chromium-win/fast/repaint/line-flow-with-floats-5-expected.checksum:
- platform/chromium-win/fast/repaint/line-flow-with-floats-5-expected.png:
- platform/chromium-win/fast/repaint/line-flow-with-floats-5-expected.txt:
- platform/chromium-win/fast/repaint/line-flow-with-floats-6-expected.checksum:
- platform/chromium-win/fast/repaint/line-flow-with-floats-6-expected.png:
- platform/chromium-win/fast/repaint/line-flow-with-floats-6-expected.txt:
- platform/chromium-win/fast/repaint/line-flow-with-floats-7-expected.checksum:
- platform/chromium-win/fast/repaint/line-flow-with-floats-7-expected.png:
- platform/chromium-win/fast/repaint/line-flow-with-floats-7-expected.txt:
- platform/chromium-win/fast/repaint/line-flow-with-floats-8-expected.checksum:
- platform/chromium-win/fast/repaint/line-flow-with-floats-8-expected.png:
- platform/chromium-win/fast/repaint/line-flow-with-floats-8-expected.txt:
- platform/chromium-win/fast/repaint/line-flow-with-floats-9-expected.checksum:
- platform/chromium-win/fast/repaint/line-flow-with-floats-9-expected.png:
- platform/chromium-win/fast/repaint/line-flow-with-floats-9-expected.txt:
- platform/chromium-win/fast/repaint/reflection-redraw-expected.checksum:
- platform/chromium-win/fast/repaint/reflection-redraw-expected.png:
- platform/chromium-win/fast/repaint/reflection-redraw-expected.txt:
- platform/chromium-win/fast/replaced/007-expected.checksum:
- platform/chromium-win/fast/replaced/007-expected.png:
- platform/chromium-win/fast/replaced/007-expected.txt:
- platform/chromium-win/fast/ruby/nested-ruby-expected.checksum:
- platform/chromium-win/fast/ruby/nested-ruby-expected.png:
- platform/chromium-win/fast/ruby/nested-ruby-expected.txt:
- platform/chromium-win/fast/ruby/ruby-empty-rt-expected.checksum:
- platform/chromium-win/fast/ruby/ruby-empty-rt-expected.png:
- platform/chromium-win/fast/ruby/ruby-empty-rt-expected.txt:
- platform/chromium-win/fast/ruby/ruby-run-break-expected.checksum:
- platform/chromium-win/fast/ruby/ruby-run-break-expected.png:
- platform/chromium-win/fast/ruby/ruby-run-break-expected.txt:
- platform/chromium-win/fast/ruby/ruby-runs-expected.checksum:
- platform/chromium-win/fast/ruby/ruby-runs-expected.png:
- platform/chromium-win/fast/ruby/ruby-runs-expected.txt:
- platform/chromium-win/fast/ruby/ruby-runs-spans-expected.checksum:
- platform/chromium-win/fast/ruby/ruby-runs-spans-expected.png:
- platform/chromium-win/fast/ruby/ruby-runs-spans-expected.txt:
- platform/chromium-win/fast/ruby/rubyDOM-insert-rt-expected.checksum:
- platform/chromium-win/fast/ruby/rubyDOM-insert-rt-expected.png:
- platform/chromium-win/fast/ruby/rubyDOM-insert-rt-expected.txt:
- platform/chromium-win/fast/ruby/rubyDOM-insert-text1-expected.checksum:
- platform/chromium-win/fast/ruby/rubyDOM-insert-text1-expected.png:
- platform/chromium-win/fast/ruby/rubyDOM-insert-text1-expected.txt:
- platform/chromium-win/fast/table/011-expected.checksum:
- platform/chromium-win/fast/table/011-expected.png:
- platform/chromium-win/fast/table/011-expected.txt:
- platform/chromium-win/fast/table/035-expected.checksum:
- platform/chromium-win/fast/table/035-expected.png:
- platform/chromium-win/fast/table/035-expected.txt:
- platform/chromium-win/fast/table/035-vertical-expected.checksum:
- platform/chromium-win/fast/table/035-vertical-expected.png:
- platform/chromium-win/fast/table/035-vertical-expected.txt:
- platform/chromium-win/fast/table/border-collapsing/004-expected.checksum:
- platform/chromium-win/fast/table/border-collapsing/004-expected.png:
- platform/chromium-win/fast/table/border-collapsing/004-expected.txt:
- platform/chromium-win/fast/table/border-collapsing/004-vertical-expected.checksum:
- platform/chromium-win/fast/table/border-collapsing/004-vertical-expected.png:
- platform/chromium-win/fast/table/border-collapsing/004-vertical-expected.txt:
- platform/chromium-win/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.checksum:
- platform/chromium-win/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.png:
- platform/chromium-win/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.txt:
- platform/chromium-win/fast/table/colgroup-preceded-by-caption-expected.checksum:
- platform/chromium-win/fast/table/colgroup-preceded-by-caption-expected.png:
- platform/chromium-win/fast/table/colgroup-preceded-by-caption-expected.txt:
- platform/chromium-win/fast/table/colgroup-spanning-groups-rules-expected.checksum:
- platform/chromium-win/fast/table/colgroup-spanning-groups-rules-expected.png:
- platform/chromium-win/fast/table/colgroup-spanning-groups-rules-expected.txt:
- platform/chromium-win/fast/table/frame-and-rules-expected.checksum:
- platform/chromium-win/fast/table/frame-and-rules-expected.png:
- platform/chromium-win/fast/table/frame-and-rules-expected.txt:
- platform/chromium-win/fast/table/percent-heights-expected.checksum:
- platform/chromium-win/fast/table/percent-heights-expected.png:
- platform/chromium-win/fast/table/percent-heights-expected.txt:
- platform/chromium-win/fast/table/rowspan-paint-order-vertical-expected.checksum:
- platform/chromium-win/fast/table/rowspan-paint-order-vertical-expected.png:
- platform/chromium-win/fast/text/atsui-negative-spacing-features-expected.checksum:
- platform/chromium-win/fast/text/atsui-negative-spacing-features-expected.png:
- platform/chromium-win/fast/text/atsui-negative-spacing-features-expected.txt:
- platform/chromium-win/fast/text/atsui-spacing-features-expected.checksum:
- platform/chromium-win/fast/text/atsui-spacing-features-expected.png:
- platform/chromium-win/fast/text/atsui-spacing-features-expected.txt:
- platform/chromium-win/fast/text/basic/002-expected.checksum:
- platform/chromium-win/fast/text/basic/002-expected.png:
- platform/chromium-win/fast/text/basic/002-expected.txt:
- platform/chromium-win/fast/text/international/bidi-override-expected.checksum:
- platform/chromium-win/fast/text/international/bidi-override-expected.png:
- platform/chromium-win/fast/text/international/bidi-override-expected.txt:
- platform/chromium-win/fast/text/justified-selection-at-edge-expected.checksum:
- platform/chromium-win/fast/text/justified-selection-at-edge-expected.png:
- platform/chromium-win/fast/text/justified-selection-at-edge-expected.txt:
- platform/chromium-win/fast/text/justified-selection-expected.checksum:
- platform/chromium-win/fast/text/justified-selection-expected.png:
- platform/chromium-win/fast/text/justified-selection-expected.txt:
- platform/chromium-win/fast/text/justify-padding-distribution-expected.checksum: Added.
- platform/chromium-win/fast/text/justify-padding-distribution-expected.png: Added.
- platform/chromium-win/fast/text/trailing-white-space-2-expected.checksum:
- platform/chromium-win/fast/text/trailing-white-space-2-expected.png:
- platform/chromium-win/fast/text/trailing-white-space-2-expected.txt:
- platform/chromium-win/fast/text/trailing-white-space-expected.checksum:
- platform/chromium-win/fast/text/trailing-white-space-expected.png:
- platform/chromium-win/fast/text/trailing-white-space-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.checksum: Added.
- platform/chromium-win/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.png: Added.
- platform/chromium-win/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.txt: Added.
- platform/chromium-win/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.txt:
- platform/chromium-win/svg/custom/svg-fonts-in-html-expected.checksum:
- platform/chromium-win/svg/custom/svg-fonts-in-html-expected.png:
- platform/chromium-win/svg/custom/svg-fonts-in-html-expected.txt:
- platform/chromium-win/svg/custom/svg-fonts-without-missing-glyph-expected.txt:
- platform/chromium-win/svg/hixie/mixed/008-expected.checksum:
- platform/chromium-win/svg/hixie/mixed/008-expected.png:
- platform/chromium-win/svg/hixie/mixed/008-expected.txt:
- platform/chromium-win/svg/zoom/page/zoom-hixie-mixed-008-expected.checksum:
- platform/chromium-win/svg/zoom/page/zoom-hixie-mixed-008-expected.png:
- platform/chromium-win/svg/zoom/page/zoom-hixie-mixed-008-expected.txt:
- platform/chromium-win/svg/zoom/text/zoom-hixie-mixed-008-expected.checksum:
- platform/chromium-win/svg/zoom/text/zoom-hixie-mixed-008-expected.png:
- platform/chromium-win/svg/zoom/text/zoom-hixie-mixed-008-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug10633-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug10633-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug10633-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug109043-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug109043-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug109043-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug113424-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug113424-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug113424-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug11384q-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug11384q-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug11384q-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug11384s-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug11384s-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug11384s-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug1163-1-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug1163-1-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug1163-1-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug1188-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug1188-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug1188-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug119786-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug119786-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug119786-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug126742-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug126742-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug126742-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug127267-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug127267-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug127267-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug1302-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug1302-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug1302-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug131020-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug131020-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug131020-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug131020_iframe-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug131020_iframe-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug131020_iframe-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug1318-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug1318-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug1318-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug14323-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug14323-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug14323-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug149275-1-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug149275-1-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug149275-1-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug1802-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug1802-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug1802-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug1802s-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug1802s-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug1802s-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug18664-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug18664-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug18664-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug222846-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug222846-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug222846-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug23235-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug23235-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug23235-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug2479-2-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug2479-2-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug2479-2-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug26553-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug26553-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug26553-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug27038-3-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug27038-3-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug27038-3-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug3260-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug3260-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug3260-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug3454-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug3454-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug3454-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug3977-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug3977-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug3977-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug43854-1-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug43854-1-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug43854-1-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug43854-2-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug43854-2-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug43854-2-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug48028-2-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug48028-2-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug48028-2-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug5838-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug5838-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug5838-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug59354-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug60804-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug60804-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug60804-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug60807-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug60807-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug60807-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug6304-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug6304-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug6304-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug67915-1-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug67915-1-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug67915-1-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug69382-1-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug69382-1-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug69382-1-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug7112-1-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug7112-2-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug81934-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug81934-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug81934-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug88035-2-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug88035-2-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug88035-2-expected.txt:
- platform/chromium-win/tables/mozilla/bugs/bug8950-expected.checksum:
- platform/chromium-win/tables/mozilla/bugs/bug8950-expected.png:
- platform/chromium-win/tables/mozilla/bugs/bug8950-expected.txt:
- platform/chromium-win/tables/mozilla/collapsing_borders/bug41262-3-expected.checksum:
- platform/chromium-win/tables/mozilla/collapsing_borders/bug41262-3-expected.png:
- platform/chromium-win/tables/mozilla/collapsing_borders/bug41262-3-expected.txt:
- platform/chromium-win/tables/mozilla/core/bloomberg-expected.checksum:
- platform/chromium-win/tables/mozilla/core/bloomberg-expected.png:
- platform/chromium-win/tables/mozilla/core/bloomberg-expected.txt:
- platform/chromium-win/tables/mozilla/core/captions-expected.checksum:
- platform/chromium-win/tables/mozilla/core/captions-expected.png:
- platform/chromium-win/tables/mozilla/core/captions-expected.txt:
- platform/chromium-win/tables/mozilla/core/misc-expected.checksum:
- platform/chromium-win/tables/mozilla/core/misc-expected.png:
- platform/chromium-win/tables/mozilla/core/misc-expected.txt:
- platform/chromium-win/tables/mozilla/core/row_span-expected.checksum:
- platform/chromium-win/tables/mozilla/core/row_span-expected.png:
- platform/chromium-win/tables/mozilla/core/row_span-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/backgr_layers-opacity-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/backgr_layers-opacity-expected.png:
- platform/chromium-win/tables/mozilla/marvin/backgr_layers-opacity-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/backgr_position-table-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/backgr_position-table-expected.png:
- platform/chromium-win/tables/mozilla/marvin/backgr_position-table-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-cell-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-cell-expected.png:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-cell-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-column-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-column-expected.png:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-column-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-column-group-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-column-group-expected.png:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-column-group-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-expected.png:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-row-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-row-expected.png:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-row-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-row-group-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-row-group-expected.png:
- platform/chromium-win/tables/mozilla/marvin/backgr_simple-table-row-group-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/body_col-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/body_col-expected.png:
- platform/chromium-win/tables/mozilla/marvin/body_col-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/body_tbody-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/body_tbody-expected.png:
- platform/chromium-win/tables/mozilla/marvin/body_tbody-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/body_tfoot-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/body_tfoot-expected.png:
- platform/chromium-win/tables/mozilla/marvin/body_tfoot-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/colgroup_align_center-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/colgroup_align_center-expected.png:
- platform/chromium-win/tables/mozilla/marvin/colgroup_align_center-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/colgroup_align_justify-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/colgroup_align_justify-expected.png:
- platform/chromium-win/tables/mozilla/marvin/colgroup_align_justify-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/colgroup_align_left-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/colgroup_align_left-expected.png:
- platform/chromium-win/tables/mozilla/marvin/colgroup_align_left-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/colgroup_align_right-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/colgroup_align_right-expected.png:
- platform/chromium-win/tables/mozilla/marvin/colgroup_align_right-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/colgroup_span-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/colgroup_span-expected.png:
- platform/chromium-win/tables/mozilla/marvin/colgroup_span-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/colgroup_valign_baseline-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/colgroup_valign_baseline-expected.png:
- platform/chromium-win/tables/mozilla/marvin/colgroup_valign_baseline-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/colgroup_valign_bottom-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/colgroup_valign_bottom-expected.png:
- platform/chromium-win/tables/mozilla/marvin/colgroup_valign_bottom-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/colgroup_valign_middle-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/colgroup_valign_middle-expected.png:
- platform/chromium-win/tables/mozilla/marvin/colgroup_valign_middle-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/colgroup_valign_top-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/colgroup_valign_top-expected.png:
- platform/chromium-win/tables/mozilla/marvin/colgroup_valign_top-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/colgroup_width_pct-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/colgroup_width_pct-expected.png:
- platform/chromium-win/tables/mozilla/marvin/colgroup_width_pct-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/colgroup_width_px-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/colgroup_width_px-expected.png:
- platform/chromium-win/tables/mozilla/marvin/colgroup_width_px-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/table_frame_border-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/table_frame_border-expected.png:
- platform/chromium-win/tables/mozilla/marvin/table_frame_border-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/table_frame_box-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/table_frame_box-expected.png:
- platform/chromium-win/tables/mozilla/marvin/table_frame_box-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/table_row_align_center-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/table_row_align_center-expected.png:
- platform/chromium-win/tables/mozilla/marvin/table_row_align_center-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/table_rules_all-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/table_rules_all-expected.png:
- platform/chromium-win/tables/mozilla/marvin/table_rules_all-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/tables_row_th_nowrap-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/tables_row_th_nowrap-expected.png:
- platform/chromium-win/tables/mozilla/marvin/tables_row_th_nowrap-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/tables_th_align_center-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/tables_th_align_center-expected.png:
- platform/chromium-win/tables/mozilla/marvin/tables_th_align_center-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/tables_th_colspan-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/tables_th_colspan-expected.png:
- platform/chromium-win/tables/mozilla/marvin/tables_th_colspan-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/tables_th_height-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/tables_th_height-expected.png:
- platform/chromium-win/tables/mozilla/marvin/tables_th_height-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/tbody_align_center-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/tbody_align_center-expected.png:
- platform/chromium-win/tables/mozilla/marvin/tbody_align_center-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/tfoot_align_center-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/tfoot_align_center-expected.png:
- platform/chromium-win/tables/mozilla/marvin/tfoot_align_center-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/th_valign_baseline-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/th_valign_baseline-expected.png:
- platform/chromium-win/tables/mozilla/marvin/th_valign_baseline-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/th_valign_bottom-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/th_valign_bottom-expected.png:
- platform/chromium-win/tables/mozilla/marvin/th_valign_bottom-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/th_valign_middle-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/th_valign_middle-expected.png:
- platform/chromium-win/tables/mozilla/marvin/th_valign_middle-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/th_valign_top-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/th_valign_top-expected.png:
- platform/chromium-win/tables/mozilla/marvin/th_valign_top-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/thead_align_center-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/thead_align_center-expected.png:
- platform/chromium-win/tables/mozilla/marvin/thead_align_center-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/x_caption_align_bottom-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/x_caption_align_bottom-expected.png:
- platform/chromium-win/tables/mozilla/marvin/x_caption_align_bottom-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/x_caption_align_top-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/x_caption_align_top-expected.png:
- platform/chromium-win/tables/mozilla/marvin/x_caption_align_top-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/x_caption_class-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/x_caption_class-expected.png:
- platform/chromium-win/tables/mozilla/marvin/x_caption_class-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/x_caption_id-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/x_caption_id-expected.png:
- platform/chromium-win/tables/mozilla/marvin/x_caption_id-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/x_caption_style-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/x_caption_style-expected.png:
- platform/chromium-win/tables/mozilla/marvin/x_caption_style-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/x_table-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/x_table-expected.png:
- platform/chromium-win/tables/mozilla/marvin/x_table-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/x_tbody_align_justify-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/x_tbody_align_justify-expected.png:
- platform/chromium-win/tables/mozilla/marvin/x_tbody_align_justify-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/x_td_align_center-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/x_td_align_center-expected.png:
- platform/chromium-win/tables/mozilla/marvin/x_td_align_center-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/x_td_align_justify-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/x_td_align_justify-expected.png:
- platform/chromium-win/tables/mozilla/marvin/x_td_align_justify-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/x_tfoot_align_justify-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/x_tfoot_align_justify-expected.png:
- platform/chromium-win/tables/mozilla/marvin/x_tfoot_align_justify-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/x_th_align_justify-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/x_th_align_justify-expected.png:
- platform/chromium-win/tables/mozilla/marvin/x_th_align_justify-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/x_th_colspan-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/x_th_colspan-expected.png:
- platform/chromium-win/tables/mozilla/marvin/x_th_colspan-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/x_th_valign_baseline-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/x_th_valign_baseline-expected.png:
- platform/chromium-win/tables/mozilla/marvin/x_th_valign_baseline-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/x_th_valign_bottom-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/x_th_valign_bottom-expected.png:
- platform/chromium-win/tables/mozilla/marvin/x_th_valign_bottom-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/x_th_width-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/x_th_width-expected.png:
- platform/chromium-win/tables/mozilla/marvin/x_th_width-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/x_thead_align_justify-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/x_thead_align_justify-expected.png:
- platform/chromium-win/tables/mozilla/marvin/x_thead_align_justify-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/x_tr_align_center-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/x_tr_align_center-expected.png:
- platform/chromium-win/tables/mozilla/marvin/x_tr_align_center-expected.txt:
- platform/chromium-win/tables/mozilla/marvin/x_tr_align_justify-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/x_tr_align_justify-expected.png:
- platform/chromium-win/tables/mozilla/marvin/x_tr_align_justify-expected.txt:
- platform/chromium-win/tables/mozilla/other/body_col-expected.checksum:
- platform/chromium-win/tables/mozilla/other/body_col-expected.png:
- platform/chromium-win/tables/mozilla/other/body_col-expected.txt:
- platform/chromium-win/tables/mozilla/other/wa_table_thtd_rowspan-expected.txt:
- platform/chromium-win/tables/mozilla/other/wa_table_tr_align-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug10140-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug10140-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug10140-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug10216-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug10216-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug10216-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug1055-2-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug1055-2-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug1055-2-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug106966-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug106966-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug106966-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug1128-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug1128-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug1128-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug14007-1-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug14007-1-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug14007-1-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug14007-2-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug14007-2-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug29058-2-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug29058-2-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-11-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-11-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-11-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-9-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-9-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-9-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug91057-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug91057-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/bugs/bug91057-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/core/captions1-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/core/captions1-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/core/captions1-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/core/captions2-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/core/captions2-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/core/captions2-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/core/captions3-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/core/captions3-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/core/captions3-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_above-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_above-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_above-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_below-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_below-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_below-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_void-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_void-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_void-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.txt:
- platform/chromium-win/tables/mozilla_expected_failures/other/test4-expected.checksum:
- platform/chromium-win/tables/mozilla_expected_failures/other/test4-expected.png:
- platform/chromium-win/tables/mozilla_expected_failures/other/test4-expected.txt:
- platform/chromium/test_expectations.txt:
- 4:31 PM Changeset in webkit [78928] by
-
- 7 edits in trunk/Source/WebCore
<rdar://problem/8898595> Pages that use fixed positioning display poorly when scaled
Reviewed by Simon Fraser.
- html/HTMLBodyElement.cpp:
(WebCore::adjustForZoom): Account for page scale.
(WebCore::HTMLBodyElement::setScrollLeft): Ditto.
(WebCore::HTMLBodyElement::setScrollTop): Ditto.
- page/FrameView.cpp:
(WebCore::FrameView::scrollXForFixedPosition): Moved from ScrollView here and changed to
account for page scale: when the page is scaled, the “viewport” with respect to which fixed
objects are positioned is scaled as well. Since it’s now bigger than the real viewport (that is,
the frame view), we move it around in proportion to the document scroll, so that when the document
is fully scrolled to the bottom-right, the bottom right of the scaled viewport is visible.
(WebCore::FrameView::scrollYForFixedPosition): Ditto.
(WebCore::FrameView::scrollOffsetForFixedPosition): Moved from ScrollView here.
- page/FrameView.h:
- platform/ScrollView.cpp: Moved functions to FrameView.
- platform/ScrollView.h:
- rendering/RenderLayer.cpp:
(WebCore::RenderLayer::updateRepaintRectsAfterScroll): Account for the RenderView being transformed.
(WebCore::RenderLayer::calculateClipRects): Used scrollOffsetForFixedPosition().
(WebCore::RenderLayer::backgroundClipRect): Ditto.
- 4:28 PM Changeset in webkit [78927] by
-
- 2 edits in trunk/LayoutTests
2011-02-17 Kenneth Russell <kbr@google.com>
Unreviewed. Skip fast/canvas/webgl/context-destroyed-crash.html
due to missing LayoutTestController.overridePreference.
- platform/mac-wk2/Skipped:
- 4:21 PM Changeset in webkit [78926] by
-
- 2 edits in trunk/LayoutTests
2011-02-17 Kenneth Russell <kbr@google.com>
Unreviewed. Fixed skip entries for
LayoutTestController.setMinimumTimerInterval which I messed up the
first time.
- platform/mac-wk2/Skipped:
- 3:54 PM Changeset in webkit [78925] by
-
- 2 edits in trunk/Source/WebKit/gtk
2011-02-17 Robert Ancell <rober.ancell@gmail.com>
Reviewed by Martin Robinson.
[PATCH] GTK documentation fails to build due to changed paths
https://bugs.webkit.org/show_bug.cgi?id=54600
- docs/GNUmakefile.am: Update the paths that have now moved the Source directory.
- 3:50 PM Changeset in webkit [78924] by
-
- 7 edits in trunk/Source/JavaScriptCore
2011-02-17 Geoffrey Garen <ggaren@apple.com>
Reviewed by Oliver Hunt.
Made MarkedBlock variable-sized
https://bugs.webkit.org/show_bug.cgi?id=54692
SunSpider reports no change.
Each MarkedBlock is now composed of a set of fixed-sized atoms, with one
mark bit per atom. A given cell may be composed of one or more atoms.
- runtime/Heap.cpp: (JSC::Heap::allocate): Made fixed-sizedness a property of MarkedSpace, bubbling it up from MarkedBlock, since MarkedBlock now supports variable- sizedness.
- runtime/JSCell.h: (JSC::JSCell::MarkedBlock::allocate): Removed use of CELLS_PER_BLOCK and (implicit) one constants -- these quantities are not constant anymore. Updated for switch from cell to atom.
- runtime/MarkedBlock.cpp: (JSC::MarkedBlock::create): (JSC::MarkedBlock::destroy): (JSC::MarkedBlock::MarkedBlock): (JSC::MarkedBlock::sweep):
- runtime/MarkedBlock.h: (JSC::MarkedBlock::firstAtom): (JSC::MarkedBlock::atoms): (JSC::MarkedBlock::isAtomAligned): (JSC::MarkedBlock::blockFor): (JSC::MarkedBlock::isEmpty): (JSC::MarkedBlock::clearMarks): (JSC::MarkedBlock::size): (JSC::MarkedBlock::capacity): (JSC::MarkedBlock::atomNumber): (JSC::MarkedBlock::isMarked): (JSC::MarkedBlock::testAndSetMarked): (JSC::MarkedBlock::setMarked): (JSC::MarkedBlock::forEach): Same as above. Also removed use of CELL_SIZE and BLOCK_SIZE, and switched away from calling arbitrary pointers cells.
- runtime/MarkedSpace.cpp: (JSC::MarkedSpace::MarkedSpace): (JSC::MarkedSpace::allocateBlock): (JSC::MarkedSpace::allocate): (JSC::MarkedSpace::reset):
- runtime/MarkedSpace.h: (JSC::CollectorHeap::CollectorHeap): (JSC::MarkedSpace::contains): Updated for renames. Made fixed-sizedness a property of MarkedSpace.
- 3:49 PM Changeset in webkit [78923] by
-
- 9 edits in trunk/Source/WebCore
2011-02-17 Kenneth Russell <kbr@google.com>
Reviewed by James Robinson.
Add support for GPU accelerated path rendering
https://bugs.webkit.org/show_bug.cgi?id=44729
Incorporates the Loop and Blinn path rendering algorithm as an
option to the GPU-accelerated canvas code, currently only compiled
in to the Chromium port. Currently it's toggled by changing a
hardcoded constant in
SharedGraphicsContext3D::useLoopBlinnForPathRendering() and is
disabled by default. This mechanism can be improved once we've
gained more confidence in the implementation. There are some known
bugs that need to be fixed first.
No new tests; ran some 2D Canvas tests manually with the new flag
both enabled and disabled.
- WebCore.gypi:
- platform/graphics/chromium/GLES2Canvas.cpp: (WebCore::GLES2Canvas::GLES2Canvas): (WebCore::GLES2Canvas::fillPath):
- platform/graphics/chromium/GLES2Canvas.h:
- platform/graphics/gpu/LoopBlinnClassifier.h:
- platform/graphics/gpu/LoopBlinnLocalTriangulator.h:
- platform/graphics/gpu/SharedGraphicsContext3D.cpp: (WebCore::SharedGraphicsContext3D::create): (WebCore::SharedGraphicsContext3D::SharedGraphicsContext3D): (WebCore::SharedGraphicsContext3D::createBuffer): (WebCore::SharedGraphicsContext3D::bindBuffer): (WebCore::SharedGraphicsContext3D::bufferData): (WebCore::SharedGraphicsContext3D::bufferSubData): (WebCore::SharedGraphicsContext3D::useLoopBlinnForPathRendering): (WebCore::SharedGraphicsContext3D::useLoopBlinnInteriorProgram): (WebCore::SharedGraphicsContext3D::useLoopBlinnExteriorProgram):
- platform/graphics/gpu/SharedGraphicsContext3D.h:
- platform/graphics/skia/GraphicsContextSkia.cpp: (WebCore::GraphicsContext::fillPath):
- 3:42 PM Changeset in webkit [78922] by
-
- 2 edits in trunk/Source/WebCore
2011-02-16 Stephen White <senorblanco@chromium.org>
Reviewed by James Robinson.
Layout Test fast/canvas/setWidthResetAfterForcedRender.html fails on
accelerated 2D canvas w/compositor enabled.
https://bugs.webkit.org/show_bug.cgi?id=54561
When resetting the CanvasRenderingContext2D, we also need to send a
contentChanged() to the relevant RenderLayer. This is similar to what
is done in didDraw().
Covered by fast/canvas/setWidthResetAfterForcedRender.html, but note
that this test will still fail pixel tests because the compositor
is not compatible with repaint tests (the green square is now white,
but the half-transparent grey repaint rect does not appear).
- html/canvas/CanvasRenderingContext2D.cpp: (WebCore::CanvasRenderingContext2D::reset):
- 3:32 PM Changeset in webkit [78921] by
-
- 5 edits2 adds in trunk
2011-02-17 Sergey Glazunov <serg.glazunov@gmail.com>
Reviewed by Kenneth Russell.
Null out the WEBKIT_lose_context WebGL extension's context pointer when
the WebGL rendering context is removed.
https://bugs.webkit.org/show_bug.cgi?id=54679
- fast/canvas/webgl/context-destroyed-crash-expected.txt: Added.
- fast/canvas/webgl/context-destroyed-crash.html: Added.
2011-02-17 Sergey Glazunov <serg.glazunov@gmail.com>
Reviewed by Kenneth Russell.
Null out the WEBKIT_lose_context WebGL extension's context pointer when
the WebGL rendering context is removed.
https://bugs.webkit.org/show_bug.cgi?id=54679
Test: fast/canvas/webgl/context-destroyed-crash.html
- html/canvas/WebGLRenderingContext.cpp: (WebCore::WebGLRenderingContext::~WebGLRenderingContext):
- html/canvas/WebKitLoseContext.cpp: (WebCore::WebKitLoseContext::loseContext): Add null-check for m_context.
- html/canvas/WebKitLoseContext.h: (WebCore::WebKitLoseContext::contextDestroyed):
- 3:29 PM Changeset in webkit [78920] by
-
- 3 edits2 adds in branches/chromium/597
Merge r78775, crbug 73235
- 3:12 PM Changeset in webkit [78919] by
-
- 11 edits in trunk
2011-02-17 Kenneth Russell <kbr@google.com>
Reviewed by Chris Marrin.
Construction of Uint8Array from JS Array (and possibly others) incorrectly clamps values
https://bugs.webkit.org/show_bug.cgi?id=52768
Removed incorrect clamping code from IntegralTypedArrayBase. Fixed
code which casts from incoming double to the destination type.
Changed the JSC bindings to use this code, rather than a copy of
the casting code and a different constructor, in order to reuse
the fix.
- bindings/js/JSArrayBufferViewHelper.h: (WebCore::constructArrayBufferView):
- html/canvas/Int32Array.h: (WebCore::Int32Array::set):
- html/canvas/Int8Array.h: (WebCore::Int8Array::set):
- html/canvas/IntegralTypedArrayBase.h: (WebCore::IntegralTypedArrayBase::set):
- html/canvas/Uint16Array.h: (WebCore::Uint16Array::set):
- html/canvas/Uint32Array.h: (WebCore::Uint32Array::set):
- html/canvas/Uint8Array.h: (WebCore::Uint8Array::set):
2011-02-17 Kenneth Russell <kbr@google.com>
Reviewed by Chris Marrin.
Construction of Uint8Array from JS Array (and possibly others) incorrectly clamps values
https://bugs.webkit.org/show_bug.cgi?id=52768
Synchronized array-unit-tests.html with version in Khronos
repository. Tested in Chromium, Safari, Chromium DRT on Mac and
WebKit DRT on Mac.
- fast/canvas/webgl/array-unit-tests-expected.txt:
- fast/canvas/webgl/array-unit-tests.html:
- 3:04 PM Changeset in webkit [78918] by
-
- 2 edits in trunk/LayoutTests
Unreviewed expectations change.
Temporarily disabled tests that need rebaselining while we try to fix the rebaselining tool.
- platform/chromium/test_expectations.txt:
- 2:36 PM Changeset in webkit [78917] by
-
- 2 edits in trunk/Source/WebCore
Knob proportion not quite right during rubber-band.
<rdar://problem/9015201>
Reviewed by Dan Bernstein.
Change knob proportion algorithm to treat overhang as making the view smaller,
rather than document bigger.
- platform/mac/ScrollbarThemeMac.mm:
(WebCore::ScrollbarThemeMac::paint):
- 2:23 PM Changeset in webkit [78916] by
-
- 5 edits in trunk/Source/WebKit2
WebKit2: The CFNetwork Cache should be shared between the UI Process and the Web Process on
Windows.
https://bugs.webkit.org/show_bug.cgi?id=54683
Reviewed by Adam Roben.
- Shared/WebProcessCreationParameters.cpp:
(WebKit::WebProcessCreationParameters::encode):
(WebKit::WebProcessCreationParameters::decode):
- Shared/WebProcessCreationParameters.h:
- UIProcess/win/WebContextWin.cpp:
(WebKit::WebContext::platformInitializeWebProcess):
Make sure to remove the ending slash, as CFNetwork does not recognize the directory with
that slash.
- WebProcess/win/WebProcessWin.cpp:
(WebKit::WebProcess::platformInitializeWebProcess):
Create a cache using the path, disk capacity, and memory capacity and set it as default.
- 1:50 PM Changeset in webkit [78915] by
-
- 9 edits in trunk/Source/WebKit2
2011-02-17 Anders Carlsson <andersca@apple.com>
Reviewed by Sam Weinig.
Web and/or plug-in process crashes when NPN_Evaluate destroys the plug-in
https://bugs.webkit.org/show_bug.cgi?id=54686
<rdar://problem/9013384>
This patch fixes two bugs with a plug-in calling NPN_Evaluate to destroy itself:
- The PluginProxy object would be destroyed in the middle of PluginProxy::evaluate. This would cause the web process to crash.
- The PluginControllerProxy would call NPP_Destroy while the plug-in was busy running code. This would cause the plug-in process to crash.
To fix this, we add protectPluginFromDestruction/unprotectPluginFromDestruction to
PluginControllerProxy and use it to defer calling destroy() in the plug-in process,
and defer actually destroying the plug-in in the web process.
https://bugs.webkit.org/show_bug.cgi?id=54171 tracks adding a test for this.
- PluginProcess/PluginControllerProxy.cpp: (WebKit::PluginControllerProxy::PluginControllerProxy): (WebKit::PluginControllerProxy::destroy): (WebKit::PluginControllerProxy::evaluate): (WebKit::PluginControllerProxy::protectPluginFromDestruction): (WebKit::PluginControllerProxy::unprotectPluginFromDestruction):
- PluginProcess/PluginControllerProxy.h: (WebKit::PluginControllerProxy::asPluginController):
- PluginProcess/WebProcessConnection.cpp: (WebKit::WebProcessConnection::destroyPluginControllerProxy): (WebKit::WebProcessConnection::didReceiveMessage): (WebKit::WebProcessConnection::didReceiveSyncMessage):
- PluginProcess/WebProcessConnection.h: (WebKit::WebProcessConnection::connection):
- WebProcess/Plugins/PluginController.h: (WebKit::PluginController::PluginDestructionProtector::PluginDestructionProtector): (WebKit::PluginController::PluginDestructionProtector::~PluginDestructionProtector):
- WebProcess/Plugins/PluginProxy.cpp: (WebKit::PluginProxy::evaluate):
- WebProcess/Plugins/PluginView.cpp: (WebKit::PluginView::protectPluginFromDestruction): (WebKit::PluginView::unprotectPluginFromDestruction):
- WebProcess/Plugins/PluginView.h:
- 1:28 PM Changeset in webkit [78914] by
-
- 9 edits2 adds in trunk/Source/WebCore
Summary: HTML5 <details> and <summary>: HTMLSummaryElement
https://bugs.webkit.org/show_bug.cgi?id=54584
Reviewed by Andreas Kling.
Adding class HTMLSummaryElement to build systems. This class will be used in
the implementation of new HTML5 tag <summary>.
- CMakeLists.txt:
- GNUmakefile.am:
- WebCore.gypi:
- WebCore.pro:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- html/HTMLElementsAllInOne.cpp:
- html/HTMLSummaryElement.cpp: Added.
(WebCore::HTMLSummaryElement::create):
(WebCore::HTMLSummaryElement::HTMLSummaryElement):
- html/HTMLSummaryElement.h: Added.
- html/HTMLTagNames.in:
- 1:26 PM Changeset in webkit [78913] by
-
- 7 edits in trunk/LayoutTests/fast
Bug 54244. Layout test results changes landing with pre-commit hook temporarily turned off to hopefully make this work in one go.
- 1:26 PM Changeset in webkit [78912] by
-
- 3 edits in trunk/LayoutTests
2011-02-17 Jeremy Orlow <jorlow@chromium.org>
Fix minor problem with test.
- storage/indexeddb/exception-in-event-aborts-expected.txt:
- storage/indexeddb/exception-in-event-aborts.html:
- 1:26 PM Changeset in webkit [78911] by
-
- 2 edits in trunk/LayoutTests/editing/selection
Bug 54244. Layout test results changes landing with pre-commit hook temporarily turned off to hopefully make this work in one go.
- 1:21 PM Changeset in webkit [78910] by
-
- 981 edits in trunk/LayoutTests/platform/mac
Bug 54244. Layout test results changes landing with pre-commit hook temporarily turned off to hopefully make this work in one go.
- 1:20 PM Changeset in webkit [78909] by
-
- 2 edits in trunk/Source/WebKit2
Build fix.
- WebProcess/WebPage/mac/WebPageMac.mm:
(WebKit::WebPage::performDictionaryLookupAtLocation):
- 1:06 PM Changeset in webkit [78908] by
-
- 16 edits2 adds in trunk
2011-02-17 Jeremy Orlow <jorlow@chromium.org>
Reviewed by Nate Chapin.
Throwing in an IndexedDB error or success event should lead to the transaction aborting
https://bugs.webkit.org/show_bug.cgi?id=54249
- storage/indexeddb/exception-in-event-aborts-expected.txt: Added.
- storage/indexeddb/exception-in-event-aborts.html: Added.
- storage/indexeddb/queued-commands-expected.txt:
- storage/indexeddb/queued-commands.html:
- storage/indexeddb/request-event-propagation-expected.txt:
- storage/indexeddb/request-event-propagation.html:
- storage/indexeddb/resources/shared.js: (unexpectedErrorCallback):
- storage/indexeddb/transaction-event-propagation-expected.txt:
- storage/indexeddb/transaction-event-propagation.html:
2011-02-17 Jeremy Orlow <jorlow@chromium.org>
Reviewed by Nate Chapin.
Throwing in an IndexedDB error or success event should lead to the transaction aborting
https://bugs.webkit.org/show_bug.cgi?id=54249
When an exception is thrown but not handled within an IDBRequests success/error event,
we should abort the transaction.
Test: storage/indexeddb/exception-in-event-aborts.html
- bindings/js/JSEventListener.cpp: (WebCore::JSEventListener::handleEvent):
- bindings/js/JSEventTarget.cpp: (WebCore::toJS):
- bindings/v8/V8AbstractEventListener.cpp: (WebCore::V8AbstractEventListener::invokeEventHandler):
- dom/EventTarget.cpp: (WebCore::EventTarget::uncaughtExceptionInEventHandler):
- dom/EventTarget.h:
- storage/IDBRequest.cpp: (WebCore::IDBRequest::uncaughtExceptionInEventHandler):
- storage/IDBRequest.h:
- 12:59 PM Changeset in webkit [78907] by
-
- 2 edits in trunk/Source/JavaScriptCore
Attempt to fix windows build
- 12:58 PM Changeset in webkit [78906] by
-
- 11 edits in trunk/LayoutTests/platform/mac/fast/multicol
Bug 54244. Having to land in small chunks to avoid svn commit hangs.
- 12:56 PM Changeset in webkit [78905] by
-
- 6 edits in trunk/LayoutTests/platform/mac/fast/replaced
- 12:55 PM Changeset in webkit [78904] by
-
- 11 edits in trunk/LayoutTests/platform/mac/fast/replaced
- 12:54 PM Changeset in webkit [78903] by
-
- 4 edits in trunk/LayoutTests/platform/mac/fast/inline-block
- 12:54 PM Changeset in webkit [78902] by
-
- 3 edits in trunk/LayoutTests/platform/mac/fast/selectors
- 12:54 PM Changeset in webkit [78901] by
-
- 18 edits2 adds in trunk/Source
WebKit2: Support Dictionary popup
<rdar://problem/7660670>
Reviewed by Maciej Stachowiak.
../WebCore:
Add some necessary exports.
- WebCore.exp.in:
../WebKit2:
- Shared/TextInfo.cpp: Added.
(WebKit::TextInfo::encode):
(WebKit::TextInfo::decode):
- Shared/TextInfo.h: Added.
(WebKit::TextInfo::TextInfo):
Add class to represent the location and style of a run of text.
- UIProcess/PageClient.h:
- UIProcess/API/mac/PageClientImpl.h:
- UIProcess/API/mac/PageClientImpl.mm:
(WebKit::PageClientImpl::didPerformDictionaryLookup):
Invoke the dictionary popup.
- UIProcess/API/mac/WKView.mm:
(-[WKView performLookupAtCurrentMouseLocation]):
Tell the WebProcess to get get the text under the mouse and cause
the dictionary popup to appear.
- UIProcess/API/mac/WKViewPrivate.h:
Add performLookupAtCurrentMouseLocation.
- UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::performDictionaryLookupAtLocation):
(WebKit::WebPageProxy::didPerformDictionaryLookup):
- UIProcess/WebPageProxy.h:
- UIProcess/WebPageProxy.messages.in:
- WebProcess/WebPage/WebPage.cpp:
- WebProcess/WebPage/WebPage.h:
- WebProcess/WebPage/WebPage.messages.in:
Pipe messages through.
- WebProcess/WebPage/mac/WebPageMac.mm:
(WebKit::characterRangeAtPoint): Fix to return PassRefPtr
and not potentially stale pointers.
(WebKit::WebPage::characterIndexForPoint):
Change to use a RefPtr.
(WebKit::WebPage::performDictionaryLookupAtLocation):
Add simple heuristic to get the word at the current point (or the current selection
if it is at that point) and grab the style of the word to send the UIProcess.
- WebKit2.pro:
- WebKit2.xcodeproj/project.pbxproj:
- win/WebKit2.vcproj:
Add new files.
- 12:54 PM Changeset in webkit [78900] by
-
- 3 edits in trunk/LayoutTests/platform/mac/fast/overflow
- 12:54 PM Changeset in webkit [78899] by
-
- 6 edits in trunk/LayoutTests/platform/mac/fast/events
- 12:54 PM Changeset in webkit [78898] by
-
- 12 edits in trunk/LayoutTests/platform/mac/fast/inline
- 12:53 PM Changeset in webkit [78897] by
-
- 10 edits in trunk/LayoutTests/platform/mac/fast/dom
- 12:53 PM Changeset in webkit [78896] by
-
- 22 edits in trunk/LayoutTests/platform/mac/fast/table
- 12:53 PM Changeset in webkit [78895] by
-
- 10 edits in trunk/LayoutTests/platform/mac/fast/parser
- 12:53 PM Changeset in webkit [78894] by
-
- 34 edits in trunk/LayoutTests/platform/mac/fast/css
- 12:52 PM Changeset in webkit [78893] by
-
- 16 edits in trunk/LayoutTests/platform/mac/fast/css
- 12:52 PM Changeset in webkit [78892] by
-
- 9 edits in trunk/LayoutTests/platform/mac/fast/css
- 12:52 PM Changeset in webkit [78891] by
-
- 5 edits in trunk/LayoutTests/platform/mac/fast/css
- 12:52 PM Changeset in webkit [78890] by
-
- 16 edits in trunk/LayoutTests/platform/mac/fast/css
- 12:52 PM Changeset in webkit [78889] by
-
- 2 edits in trunk/LayoutTests/platform/mac/fast/css
- 12:49 PM Changeset in webkit [78888] by
-
- 9 edits in trunk/LayoutTests/platform/mac/fast/block
- 12:49 PM Changeset in webkit [78887] by
-
- 33 edits in trunk/LayoutTests/platform/mac/fast/blockflow
- 12:48 PM Changeset in webkit [78886] by
-
- 62 edits in trunk/LayoutTests/platform/mac/fast/repaint
- 12:47 PM Changeset in webkit [78885] by
-
- 12 edits in trunk/LayoutTests/platform/mac/fast/ruby
- 12:46 PM Changeset in webkit [78884] by
-
- 165 edits in trunk/LayoutTests/platform/mac/fast/forms
- 12:45 PM Changeset in webkit [78883] by
-
- 65 edits in trunk/LayoutTests/platform/mac/fast/forms
- 12:45 PM Changeset in webkit [78882] by
-
- 13 edits in trunk/LayoutTests/platform/mac/fast/text
- 12:45 PM Changeset in webkit [78881] by
-
- 3 edits in trunk/LayoutTests/platform/mac/fast/text
- 12:45 PM Changeset in webkit [78880] by
-
- 1 edit in trunk/LayoutTests/platform/mac/fast/text/selection-painted-separately-expected.png
- 12:44 PM Changeset in webkit [78879] by
-
- 1 edit in trunk/LayoutTests/platform/mac/fast/text/align-center-rtl-spill-expected.png
- 12:44 PM Changeset in webkit [78878] by
-
- 3 edits in trunk/LayoutTests/platform/mac/fast/text
- 12:44 PM Changeset in webkit [78877] by
-
- 3 edits in trunk/LayoutTests/platform/mac/fast/text
- 12:44 PM Changeset in webkit [78876] by
-
- 1 edit in trunk/LayoutTests/platform/mac/fast/text/stripNullFromText-expected.png
- 12:44 PM Changeset in webkit [78875] by
-
- 1 edit in trunk/LayoutTests/platform/mac/fast/text/apply-start-width-after-skipped-text-expected.png
- 12:43 PM Changeset in webkit [78874] by
-
- 4 edits in trunk/LayoutTests/platform/mac/fast/text
- 12:43 PM Changeset in webkit [78873] by
-
- 3 edits in trunk/LayoutTests/platform/mac/fast/text
- 12:43 PM Changeset in webkit [78872] by
-
- 2 edits in trunk/LayoutTests/platform/mac/fast/text
- 12:43 PM Changeset in webkit [78871] by
-
- 2 edits in trunk/LayoutTests/platform/mac/fast/text
- 12:43 PM Changeset in webkit [78870] by
-
- 2 edits in trunk/LayoutTests/platform/mac/fast/text
- 12:43 PM Changeset in webkit [78869] by
-
- 5 edits in trunk/LayoutTests/platform/mac/fast/text/whitespace
- 12:43 PM Changeset in webkit [78868] by
-
- 3 edits in trunk/LayoutTests/platform/mac/fast/text
- 12:42 PM Changeset in webkit [78867] by
-
- 11 edits in trunk/LayoutTests/platform/mac/fast/text
- 12:42 PM Changeset in webkit [78866] by
-
- 5 edits in trunk/LayoutTests/platform/mac/fast/text
- 12:42 PM Changeset in webkit [78865] by
-
- 9 edits in trunk/LayoutTests/platform/mac/fast/text
- 12:41 PM Changeset in webkit [78864] by
-
- 1 edit in trunk/LayoutTests/platform/mac/fast/text/fixed-pitch-control-characters-expected.png
- 12:41 PM Changeset in webkit [78863] by
-
- 10 edits in trunk/LayoutTests/platform/mac/fast/text
- 12:40 PM Changeset in webkit [78862] by
-
- 6 edits in trunk/LayoutTests/platform/mac/fast/text
- 12:40 PM Changeset in webkit [78861] by
-
- 3 edits in trunk/LayoutTests/platform/mac/fast/text
- 12:37 PM Changeset in webkit [78860] by
-
- 3 edits in trunk/LayoutTests/platform/mac/fast/text/basic
- 12:37 PM Changeset in webkit [78859] by
-
- 12 edits in trunk/LayoutTests/platform/mac/fast/text/international
- 12:37 PM Changeset in webkit [78858] by
-
- 5 edits in trunk/LayoutTests/platform/mac/fast/text/international
- 12:36 PM Changeset in webkit [78857] by
-
- 3 edits in trunk/LayoutTests/platform/mac/fast/text/international
- 12:35 PM Changeset in webkit [78856] by
-
- 8 edits1 add in trunk/Source/JavaScriptCore
2011-02-17 Oliver Hunt <oliver@apple.com>
Reviewed by Geoffrey Garen.
Refactor WriteBarrier and DeprecatedPtr to have less code duplication.
https://bugs.webkit.org/show_bug.cgi?id=54608
Make use of the tricks used for Handle, et al to avoid duplicating all
of the logic for DeprecatedPtr and WriteBarrier simply to support known
vs. unknown types.
- JavaScriptCore.xcodeproj/project.pbxproj:
- collector/handles/Global.h: (JSC::Global::internalSet):
- collector/handles/Handle.h: (JSC::Handle::Handle): (JSC::Handle::get):
- runtime/JSArray.cpp: (JSC::JSArray::sortNumeric):
- runtime/JSObject.h: (JSC::JSObject::inlineGetOwnPropertySlot):
- runtime/SlotAccessor.h: Added. (JSC::SlotTypes::getFromBaseType): (JSC::SlotTypes::convertToBaseType): (JSC::SlotTypes::getFromSlot): (JSC::SlotTypes::toJSValue): (JSC::SlotTypes::validateUpcast): (JSC::SlotAccessor::operator->): (JSC::SlotAccessor::operator*):
- runtime/WeakGCPtr.h: (JSC::WeakGCPtr::get): (JSC::WeakGCPtr::internalSet):
- runtime/WriteBarrier.h: (JSC::DeprecatedPtr::DeprecatedPtr): (JSC::DeprecatedPtr::get): (JSC::DeprecatedPtr::slot): (JSC::DeprecatedPtr::operator=): (JSC::WriteBarrierTranslator::convertToStorage): (JSC::WriteBarrierTranslator::convertFromStorage): (JSC::WriteBarrierBase::set): (JSC::WriteBarrierBase::get): (JSC::WriteBarrierBase::clear): (JSC::WriteBarrierBase::slot): (JSC::WriteBarrierBase::operator UnspecifiedBoolType*): (JSC::WriteBarrierBase::operator!): (JSC::WriteBarrierBase::setWithoutWriteBarrier): (JSC::WriteBarrier::WriteBarrier):
- 12:35 PM Changeset in webkit [78855] by
-
- 63 edits in trunk/LayoutTests/platform/mac/fast/text/international
- 12:35 PM Changeset in webkit [78854] by
-
- 3 edits in trunk/LayoutTests/platform/mac/fast/text/international
- 12:33 PM Changeset in webkit [78853] by
-
- 8 edits in trunk/Source
2011-02-17 W. James MacLean <wjmaclean@chromium.org>
Reviewed by James Robinson.
[chromium] Add command-line flag to enable composite to offscreen texture.
https://bugs.webkit.org/show_bug.cgi?id=52311
Add plumbing to allow command-line switch to enable offscreen compositing. Function
LayerRendererChromium::copyOffscreenTextureToDisplay used for now to mimic
normal renderer operation.
Existing functionality not changed; offscreen compositing will be tested via GPU test framework.
- platform/graphics/chromium/LayerRendererChromium.cpp: (WebCore::LayerRendererChromium::setRootLayer): (WebCore::LayerRendererChromium::setCompositeOffscreen): (WebCore::LayerRendererChromium::copyOffscreenTextureToDisplay): (WebCore::LayerRendererChromium::useRenderSurface): (WebCore::LayerRendererChromium::setScissorToRect):
- platform/graphics/chromium/LayerRendererChromium.h: (WebCore::LayerRendererChromium::isCompositingOffscreen):
2011-02-17 W. James MacLean <wjmaclean@chromium.org>
Reviewed by James Robinson.
[chromium] Add command-line flag to enable composite to offscreen texture.
https://bugs.webkit.org/show_bug.cgi?id=52311
Add plumbing to allow command-line switch to enable offscreen compositing. Function
LayerRendererChromium::copyOffscreenTextureToDisplay used for now to mimic
normal renderer operation.
- public/WebSettings.h:
- src/WebSettingsImpl.cpp: (WebKit::WebSettingsImpl::WebSettingsImpl): (WebKit::WebSettingsImpl::setCompositeToTextureEnabled):
- src/WebSettingsImpl.h: (WebKit::WebSettingsImpl::compositeToTextureEnabled):
- src/WebViewImpl.cpp: (WebKit::WebViewImpl::doComposite):
- 12:24 PM Changeset in webkit [78852] by
-
- 14 edits in trunk
[wx] Build fixes after recent changes.
- 12:02 PM Changeset in webkit [78851] by
-
- 2 edits in trunk/Source/WebKit2
Qt build fix.
- WebKit2.pro: Update after renaming of MemoryCache to ResourceCache.
- 11:55 AM Changeset in webkit [78850] by
-
- 2 edits in trunk/Source/WebKit2
Mac build fix.
- WebKit2.xcodeproj/project.pbxproj: Use relative to group instead of absolute paths. Not everyone's home
directory is /Users/brian_weinstein.
- 11:35 AM Changeset in webkit [78849] by
-
- 1 edit in trunk/Source/WebCore/platform/efl/FileChooserEfl.cpp
Fix EFL bustage.
- 11:28 AM Changeset in webkit [78848] by
-
- 23 edits11 adds in trunk/Source
WebKit2: Need a way to manage the WebCore Cache
https://bugs.webkit.org/show_bug.cgi?id=54501
Reviewed by Brady Eidson.
Source/WebCore:
Add a way to get a set of all of the origins that have entries in the
WebCore memory cache, and a method to remove all resources from the memory
cache from a given security origin.
No change in behavior.
- WebCore.exp.in: Add functions that need to be exported.
- loader/cache/MemoryCache.cpp:
(WebCore::MemoryCache::removeResourcesWithOrigin):
(WebCore::MemoryCache::getOriginsWithCache):
- loader/cache/MemoryCache.h:
Source/WebKit2:
Implement a WebKit2 API to manage the WebCore memory cache. This API exposes three functions:
1) A method to get a list of all security origins that have entries in the WebCore memory cache.
2) A method to remove all entries in the WebCore memory cache from a SecurityOrigin.
3) A method to remove all entries from the WebCore memory cache.
- Platform/CoreIPC/MessageID.h: Add two new MessageClasses.
- Shared/API/c/WKBase.h:
- Shared/APIObject.h: Add a CacheManager type.
- Shared/WebSecurityOrigin.h: Typedef WKCacheManagerRef.
(WebKit::WebSecurityOrigin::createFromString): Creates a WebCore::SecurityOrigin using
SecurityOrigin::createFromString.
(WebKit::WebSecurityOrigin::toString): Calls through to SecurityOrigin::toString.
- UIProcess/API/C/WKAPICast.h:
- UIProcess/API/C/WKCacheManager.cpp: Added.
(WKCacheManagerGetTypeID): Returns the WebResourceCacheManagerProxy type.
(WKCacheManagerGetCacheOrigins): Calls through to WebResourceCacheManagerProxy::getCacheOrigins.
(callGetCacheOriginsBlockBlockAndDispose):
(WKCacheManagerGetCacheOrigins_b):
(WKCacheManagerDeleteCacheForOrigin): Calls through to WebResourceCacheManagerProxy::deleteCacheForOrigin.
(WKCacheManagerDeleteAllCache): Calls through to WebResourceCacheManagerProxy::deleteAllCache.
- UIProcess/API/C/WKCacheManager.h: Added.
- UIProcess/API/C/WKContext.cpp:
(WKContextGetCacheManager): Calls to get the WebResourceCacheManagerProxy.
- UIProcess/API/C/WKContext.h:
- UIProcess/WebResourceCacheManagerProxy.cpp: Added.
(WebKit::WebResourceCacheManagerProxy::create): Calls through to the constructor.
(WebKit::WebResourceCacheManagerProxy::WebResourceCacheManagerProxy): Initialize the m_webContext variable.
(WebKit::WebResourceCacheManagerProxy::~WebResourceCacheManagerProxy):
(WebKit::WebResourceCacheManagerProxy::invalidate): Invalidate the callback map.
(WebKit::WebResourceCacheManagerProxy::getCacheOrigins): Call through to the web process to get the cache
origins.
(WebKit::WebResourceCacheManagerProxy::didGetCacheOrigins): Call the callback.
(WebKit::WebResourceCacheManagerProxy::deleteCacheForOrigin): Call through to the web process to delete cache
for the given origin.
(WebKit::WebResourceCacheManagerProxy::deleteAllCache): Call through to the web process to delete all of the cache.
- UIProcess/WebResourceCacheManagerProxy.h: Added.
(WebKit::WebResourceCacheManagerProxy::clearContext):
(WebKit::WebResourceCacheManagerProxy::type):
- UIProcess/WebResourceCacheManagerProxy.messages.in: Added.
- UIProcess/WebContext.cpp:
(WebKit::WebContext::WebContext): Initialize new member variable.
(WebKit::WebContext::~WebContext): Invalidates new member variable.
(WebKit::WebContext::didReceiveMessage): Passes cache messages to the cache manager.
- UIProcess/WebContext.h:
(WebKit::WebContext::cacheManagerProxy):
- UIProcess/WebProcessProxy.cpp:
(WebKit::WebProcessProxy::didReceiveMessage): Add a new message class.
- WebProcess/MemoryCache/WebResourceCacheManager.cpp: Added.
(WebKit::WebResourceCacheManager::shared):
(WebKit::WebResourceCacheManager::WebResourceCacheManager):
(WebKit::WebResourceCacheManager::~WebResourceCacheManager):
(WebKit::WebResourceCacheManager::didReceiveMessage): Calls through to didReceiveWebResourceCacheManagerMessage.
(WebKit::WebResourceCacheManager::getCacheOrigins): Gets a list of origins with cache entries from the memory
cache, and puts them into a vector to send to the UI process.
(WebKit::WebResourceCacheManager::deleteCacheForOrigin): Calls through to memoryCache to delete all cache entries
from a given origin.
(WebKit::WebResourceCacheManager::deleteAllCache):
- WebProcess/MemoryCache/WebResourceCacheManager.h: Added.
- WebProcess/MemoryCache/WebResourceCacheManager.messages.in: Added.
- WebProcess/WebProcess.cpp:
(WebKit::WebProcess::didReceiveMessage):
(WebKit::WebProcess::clearResourceCaches): Tell the memory cache to evict its resources. This was done on WebKit1,
but not WebKit2.
- WebProcess/WebProcess.h:
- WebKit2.xcodeproj/project.pbxproj: Added new files.
- win/WebKit2.vcproj: Ditto.
- win/WebKit2Common.vsprops: Added new include directory.
- win/WebKit2Generated.make: Added new header.
- 11:27 AM Changeset in webkit [78847] by
-
- 1 edit3 adds in trunk/LayoutTests
2011-02-17 Andreas Kling <kling@webkit.org>
Reviewed by Dirk Schulze.
SVG: Add test for color animation with alpha value in calcMode=discrete
https://bugs.webkit.org/show_bug.cgi?id=54666
- svg/animations/animate-color-rgba-calcMode-discrete-expected.txt: Added.
- svg/animations/animate-color-rgba-calcMode-discrete.html: Added.
- svg/animations/script-tests/animate-color-rgba-calcMode-discrete.js: Added.
- 11:19 AM Changeset in webkit [78846] by
-
- 76 edits in trunk/Source
https://bugs.webkit.org/show_bug.cgi?id=54244
Reviewed by Dan Bernstein.
Convert the line box tree to floating point and eliminate font rounding hacks. This patch removes all of the rounding
hacks from the Font code and makes sure all Font APIs involving width measurement and width offsets use floats.
The line box tree's x, y and logicalWidth members have all been converted to floats and all of the line box APIs have
been changed as well.
In terms of pixel adjustments, overflow is using an enclosing model (so it will be enclosingIntRect of a line box's x/y/width/height).
Background and border painting is using a rounding model, so borders and backgrounds will round to the nearest pixel when painting.
Replaced elements still snap to integer positions on lines, and they use a rounding model as well, although their underlying line boxes
still have a precise floating point position.
Justification will now allow subpixel positioning to occur as well. Platforms that don't support subpixel positioning should already
be rounding justification spacing in their font code.
Many layout test results change on Mac, since rounding hacks were used there and are now gone.
../WebCore:
- WebCore.exp.in:
- html/canvas/CanvasRenderingContext2D.cpp:
(WebCore::CanvasRenderingContext2D::drawTextInternal):
- platform/chromium/FileChooserChromium.cpp:
(WebCore::FileChooser::basenameForWidth):
- platform/graphics/Font.cpp:
(WebCore::Font::width):
- platform/graphics/Font.h:
(WebCore::Font::spaceWidth):
(WebCore::Font::tabWidth):
- platform/graphics/FontFastPath.cpp:
(WebCore::Font::getGlyphsAndAdvancesForSimpleText):
- platform/graphics/GraphicsContext.cpp:
(WebCore::GraphicsContext::drawText):
(WebCore::GraphicsContext::drawEmphasisMarks):
(WebCore::GraphicsContext::drawBidiText):
(WebCore::GraphicsContext::drawHighlightForText):
- platform/graphics/GraphicsContext.h:
- platform/graphics/SimpleFontData.cpp:
(WebCore::SimpleFontData::SimpleFontData):
(WebCore::SimpleFontData::platformGlyphInit):
- platform/graphics/SimpleFontData.h:
(WebCore::SimpleFontData::spaceWidth):
- platform/graphics/StringTruncator.cpp:
(WebCore::stringWidth):
(WebCore::truncateString):
(WebCore::StringTruncator::centerTruncate):
(WebCore::StringTruncator::rightTruncate):
(WebCore::StringTruncator::width):
- platform/graphics/StringTruncator.h:
- platform/graphics/TextRun.h:
(WebCore::TextRun::TextRun):
(WebCore::TextRun::xPos):
(WebCore::TextRun::expansion):
(WebCore::TextRun::directionalOverride):
(WebCore::TextRun::disableSpacing):
- platform/graphics/WidthIterator.cpp:
(WebCore::WidthIterator::WidthIterator):
(WebCore::WidthIterator::advance):
- platform/graphics/WidthIterator.h:
- platform/graphics/cairo/GraphicsContextCairo.cpp:
(WebCore::GraphicsContext::drawLineForText):
(WebCore::GraphicsContext::drawLineForTextChecking):
- platform/graphics/cg/GraphicsContextCG.cpp:
(WebCore::GraphicsContext::drawLineForText):
- platform/graphics/mac/ComplexTextController.cpp:
(WebCore::ComplexTextController::ComplexTextController):
(WebCore::ComplexTextController::advance):
(WebCore::ComplexTextController::adjustGlyphsAndAdvances):
- platform/graphics/mac/ComplexTextController.h:
- platform/graphics/mac/FontComplexTextMac.cpp:
(WebCore::Font::getGlyphsAndAdvancesForComplexText):
- platform/graphics/mac/GraphicsContextMac.mm:
(WebCore::GraphicsContext::drawLineForTextChecking):
- platform/graphics/qt/GraphicsContextQt.cpp:
(WebCore::GraphicsContext::drawLineForText):
(WebCore::GraphicsContext::drawLineForTextChecking):
- platform/graphics/qt/SimpleFontDataQt.cpp:
(WebCore::SimpleFontData::platformGlyphInit):
- platform/graphics/skia/GraphicsContextSkia.cpp:
(WebCore::GraphicsContext::drawLineForTextChecking):
(WebCore::GraphicsContext::drawLineForText):
- platform/graphics/win/GraphicsContextCGWin.cpp:
(WebCore::GraphicsContext::drawLineForTextChecking):
- platform/graphics/win/UniscribeController.cpp:
(WebCore::UniscribeController::shapeAndPlaceItem):
- platform/gtk/FileChooserGtk.cpp:
(WebCore::FileChooser::basenameForWidth):
- platform/mac/DragImageMac.mm:
(WebCore::widthWithFont):
(WebCore::drawAtPoint):
- platform/mac/FileChooserMac.mm:
(WebCore::FileChooser::basenameForWidth):
- platform/win/DragImageWin.cpp:
(WebCore::createDragImageForLink):
- platform/win/FileChooserWin.cpp:
(WebCore::FileChooser::basenameForWidth):
- platform/win/PopupMenuWin.cpp:
(WebCore::PopupMenuWin::calculatePositionAndSize):
- platform/win/WebCoreTextRenderer.cpp:
(WebCore::WebCoreTextFloatWidth):
- rendering/HitTestResult.cpp:
(WebCore::HitTestResult::addNodeToRectBasedTestResult):
- rendering/HitTestResult.h:
- rendering/InlineBox.cpp:
(WebCore::InlineBox::adjustPosition):
(WebCore::InlineBox::placeEllipsisBox):
(WebCore::InlineBox::locationIncludingFlipping):
(WebCore::InlineBox::flipForWritingMode):
- rendering/InlineBox.h:
(WebCore::InlineBox::InlineBox):
(WebCore::InlineBox::adjustLineDirectionPosition):
(WebCore::InlineBox::adjustBlockDirectionPosition):
(WebCore::InlineBox::setX):
(WebCore::InlineBox::x):
(WebCore::InlineBox::setY):
(WebCore::InlineBox::y):
(WebCore::InlineBox::width):
(WebCore::InlineBox::height):
(WebCore::InlineBox::logicalLeft):
(WebCore::InlineBox::logicalRight):
(WebCore::InlineBox::setLogicalLeft):
(WebCore::InlineBox::pixelSnappedLogicalLeft):
(WebCore::InlineBox::pixelSnappedLogicalRight):
(WebCore::InlineBox::setLogicalWidth):
(WebCore::InlineBox::logicalWidth):
(WebCore::InlineBox::verticalAlign):
- rendering/InlineFlowBox.cpp:
(WebCore::InlineFlowBox::roundedFrameRect):
(WebCore::InlineFlowBox::adjustPosition):
(WebCore::InlineFlowBox::placeBoxesInInlineDirection):
(WebCore::InlineFlowBox::adjustMaxAscentAndDescent):
(WebCore::verticalPositionForBox):
(WebCore::InlineFlowBox::computeLogicalBoxHeights):
(WebCore::InlineFlowBox::placeBoxesInBlockDirection):
(WebCore::InlineFlowBox::addBoxShadowVisualOverflow):
(WebCore::InlineFlowBox::addTextBoxVisualOverflow):
(WebCore::InlineFlowBox::computeOverflow):
(WebCore::InlineFlowBox::setLayoutOverflow):
(WebCore::InlineFlowBox::setVisualOverflow):
(WebCore::InlineFlowBox::nodeAtPoint):
(WebCore::InlineFlowBox::paintBoxDecorations):
(WebCore::InlineFlowBox::paintMask):
(WebCore::InlineFlowBox::placeEllipsisBox):
- rendering/InlineFlowBox.h:
(WebCore::InlineFlowBox::maxYLayoutOverflow):
(WebCore::InlineFlowBox::maxXLayoutOverflow):
(WebCore::InlineFlowBox::layoutOverflowRect):
(WebCore::InlineFlowBox::maxYVisualOverflow):
(WebCore::InlineFlowBox::maxXVisualOverflow):
(WebCore::InlineFlowBox::visualOverflowRect):
- rendering/InlineTextBox.cpp:
(WebCore::InlineTextBox::placeEllipsisBox):
(WebCore::InlineTextBox::nodeAtPoint):
(WebCore::paintTextWithShadows):
(WebCore::InlineTextBox::paint):
(WebCore::InlineTextBox::paintSelection):
(WebCore::InlineTextBox::paintCompositionBackground):
(WebCore::InlineTextBox::paintDecoration):
(WebCore::InlineTextBox::paintSpellingOrGrammarMarker):
(WebCore::InlineTextBox::paintTextMatchMarker):
(WebCore::InlineTextBox::paintDocumentMarkers):
(WebCore::InlineTextBox::paintCompositionUnderline):
(WebCore::InlineTextBox::textPos):
(WebCore::InlineTextBox::offsetForPosition):
(WebCore::InlineTextBox::positionForOffset):
- rendering/InlineTextBox.h:
(WebCore::InlineTextBox::setExpansion):
- rendering/RenderBR.h:
(WebCore::RenderBR::width):
- rendering/RenderBlock.cpp:
(WebCore::stripTrailingSpace):
(WebCore::updatePreferredWidth):
(WebCore::RenderBlock::computeInlinePreferredLogicalWidths):
(WebCore::RenderBlock::adjustForBorderFit):
(WebCore::RenderBlock::addFocusRingRects):
- rendering/RenderBlock.h:
- rendering/RenderBlockLineLayout.cpp:
(WebCore::RenderBlock::computeInlineDirectionPositionsForLine):
(WebCore::RenderBlock::fitBelowFloats):
(WebCore::textWidth):
(WebCore::tryHyphenating):
(WebCore::RenderBlock::findNextLineBreak):
- rendering/RenderBox.cpp:
(WebCore::RenderBox::positionLineBox):
(WebCore::RenderBox::flipForWritingMode):
- rendering/RenderBox.h:
- rendering/RenderCombineText.cpp:
(WebCore::RenderCombineText::width):
(WebCore::RenderCombineText::adjustTextOrigin):
(WebCore::RenderCombineText::combineText):
- rendering/RenderCombineText.h:
(WebCore::RenderCombineText::combinedTextWidth):
- rendering/RenderCounter.cpp:
(WebCore::RenderCounter::computePreferredLogicalWidths):
- rendering/RenderCounter.h:
- rendering/RenderEmbeddedObject.cpp:
(WebCore::RenderEmbeddedObject::getReplacementTextGeometry):
- rendering/RenderFileUploadControl.cpp:
(WebCore::RenderFileUploadControl::computePreferredLogicalWidths):
- rendering/RenderImage.cpp:
- rendering/RenderInline.cpp:
(WebCore::RenderInline::linesBoundingBox):
(WebCore::RenderInline::linesVisualOverflowBoundingBox):
(WebCore::RenderInline::addFocusRingRects):
(WebCore::RenderInline::paintOutline):
- rendering/RenderListBox.cpp:
(WebCore::RenderListBox::updateFromElement):
(WebCore::RenderListBox::paintItemForeground):
- rendering/RenderMenuList.cpp:
(WebCore::RenderMenuList::updateOptionsWidth):
- rendering/RenderText.cpp:
(WebCore::RenderText::localCaretRect):
(WebCore::RenderText::widthFromCache):
(WebCore::RenderText::trimmedPrefWidths):
(WebCore::RenderText::minLogicalWidth):
(WebCore::RenderText::maxLogicalWidth):
(WebCore::RenderText::computePreferredLogicalWidths):
(WebCore::RenderText::firstRunOrigin):
(WebCore::RenderText::firstRunX):
(WebCore::RenderText::firstRunY):
(WebCore::RenderText::width):
(WebCore::RenderText::linesBoundingBox):
- rendering/RenderText.h:
- rendering/RenderTextControl.cpp:
(WebCore::RenderTextControl::getAvgCharWidth):
(WebCore::RenderTextControl::paintPlaceholder):
- rendering/RenderTreeAsText.cpp:
(WebCore::writeTextRun):
- rendering/RootInlineBox.cpp:
(WebCore::RootInlineBox::placeEllipsis):
(WebCore::RootInlineBox::placeEllipsisBox):
(WebCore::RootInlineBox::adjustPosition):
(WebCore::RootInlineBox::beforeAnnotationsAdjustment):
(WebCore::RootInlineBox::paddedLayoutOverflowRect):
- rendering/RootInlineBox.h:
- rendering/VerticalPositionCache.h:
- rendering/svg/SVGInlineTextBox.cpp:
(WebCore::SVGInlineTextBox::offsetForPosition):
(WebCore::SVGInlineTextBox::positionForOffset):
(WebCore::SVGInlineTextBox::constructTextRun):
- rendering/svg/SVGInlineTextBox.h:
- rendering/svg/SVGRenderTreeAsText.cpp:
(WebCore::writeRenderSVGTextBox):
- rendering/svg/SVGTextMetrics.cpp:
(WebCore::SVGTextMetrics::SVGTextMetrics):
(WebCore::constructTextRun):
- svg/SVGFont.cpp:
(WebCore::floatWidthMissingGlyphCallback):
(WebCore::Font::drawTextUsingSVGFont):
../WebKit/mac:
- Misc/WebKitNSStringExtras.mm:
(-[NSString _web_drawAtPoint:font:textColor:allowingFontSmoothing:]):
(-[NSString _web_widthWithFont:]):
../WebKit/win:
- WebKitGraphics.cpp:
(CenterTruncateStringToWidth):
(RightTruncateStringToWidth):
../WebKit2:
- WebProcess/WebCoreSupport/win/WebPopupMenuWin.cpp:
(WebKit::WebPopupMenu::setUpPlatformData):
- 11:04 AM Changeset in webkit [78845] by
-
- 2 edits in trunk/LayoutTests
2011-02-17 Mihai Parparita <mihaip@chromium.org>
Unreviewed Chromium expectations update. Remove duplicate expectation
for media/video-display-toggle.html (on Snow Leopard only).
- platform/chromium/test_expectations.txt:
- 10:57 AM Changeset in webkit [78844] by
-
- 3 edits4 adds in trunk
2011-02-17 Nikolas Zimmermann <nzimmermann@rim.com>
Reviewed by Dirk Schulze.
'ex' coordinates fail, when SVGFont doesn't provide an explicit xHeight attribute
https://bugs.webkit.org/show_bug.cgi?id=54672
Measure the xHeight from the 'x' glyph of a SVGFont, if the font itself doesn't explicitely specify an x-height attribute.
Fixes the modern version of SVG 1.1 2nd Edition coords-units-03-b.svg.
Test: svg/W3C-SVG-1.1-SE/coords-units-03-b.svg
- platform/graphics/SimpleFontData.cpp: (WebCore::SimpleFontData::SimpleFontData):
2011-02-17 Nikolas Zimmermann <nzimmermann@rim.com>
Reviewed by Dirk Schulze.
'ex' coordinates fail, when SVGFont doesn't provide an explicit xHeight attribute
https://bugs.webkit.org/show_bug.cgi?id=54672
Add new testcase from SVG 1.1 2nd Edition covering exs support + SVGFonts.
- platform/mac/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.checksum: Added.
- platform/mac/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.png: Added.
- platform/mac/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.txt: Added.
- svg/W3C-SVG-1.1-SE/coords-units-03-b.svg: Added.
- 10:21 AM Changeset in webkit [78843] by
-
- 2 edits in trunk/LayoutTests
Unreviewed test expectations update.
[Chromium] set_version_blocked.html and set_version_queue.html started crashing on Chromium dbg bots after WK roll 78748:78777
https://bugs.webkit.org/show_bug.cgi?id=54644
Re-enabling tests now that they pass again.
- platform/chromium/test_expectations.txt:
- 10:04 AM Changeset in webkit [78842] by
-
- 29 edits in trunk/Source
HTML5 <details> and <summary>: localized text
https://bugs.webkit.org/show_bug.cgi?id=54260
Reviewed by Adam Roben.
Source/WebCore:
The method defaultDetailsSummaryText was added to LocalizationStrategy class and to
platform/LocalizedStrings. It is used to provide the default label to be used by a
<details> tag that has no <summary> child.
- platform/LocalizationStrategy.h:
- platform/LocalizedStrings.cpp:
(WebCore::fileButtonNoFileSelectedLabel):
(WebCore::defaultDetailsSummaryText):
- platform/LocalizedStrings.h:
- platform/android/LocalizedStringsAndroid.cpp:
(WebCore::defaultDetailsSummaryText):
- platform/brew/LocalizedStringsBrew.cpp:
(WebCore::defaultDetailsSummaryText):
- platform/efl/LocalizedStringsEfl.cpp:
(WebCore::defaultDetailsSummaryText):
- platform/gtk/LocalizedStringsGtk.cpp:
(WebCore::defaultDetailsSummaryText):
- platform/haiku/LocalizedStringsHaiku.cpp:
(WebCore::defaultDetailsSummaryText):
- platform/wx/LocalizedStringsWx.cpp:
(WebCore::defaultDetailsSummaryText):
Source/WebKit:
Default details summary text must be localizable.
- English.lproj/Localizable.strings:
Source/WebKit/chromium:
The method defaultDetailsSummaryText was added to LocalizedStrings. It is used to provide
the default label to be used by a <details> tag that has no <summary> child.
- src/LocalizedStrings.cpp:
(WebCore::defaultDetailsSummaryText):
Source/WebKit/mac:
The method defaultDetailsSummaryText was added to LocalizationStrategy class. It is used to
provide the default label to be used by a <details> tag that has no <summary> child.
- WebCoreSupport/WebPlatformStrategies.h:
- WebCoreSupport/WebPlatformStrategies.mm:
(WebPlatformStrategies::defaultDetailsSummaryText):
Source/WebKit/qt:
The method defaultDetailsSummaryText was added to LocalizationStrategy class. It is used to
provide the default label to be used by a <details> tag that has no <summary> child.
- WebCoreSupport/WebPlatformStrategies.cpp:
(WebPlatformStrategies::defaultDetailsSummaryText):
- WebCoreSupport/WebPlatformStrategies.h:
Source/WebKit/win:
The method defaultDetailsSummaryText was added to LocalizationStrategy class. It is used to
provide the default label to be used by a <details> tag that has no <summary> child.
- WebCoreSupport/WebPlatformStrategies.cpp:
(WebPlatformStrategies::defaultDetailsSummaryText):
- WebCoreSupport/WebPlatformStrategies.h:
Source/WebKit/wince:
The method defaultDetailsSummaryText was added to LocalizationStrategy class. It is used to
provide the default label to be used by a <details> tag that has no <summary> child.
- WebCoreSupport/PlatformStrategiesWinCE.cpp:
(PlatformStrategiesWinCE::defaultDetailsSummaryText):
- WebCoreSupport/PlatformStrategiesWinCE.h:
Source/WebKit2:
The method defaultDetailsSummaryText was added to LocalizationStrategy class. It is used to
provide the default label to be used by a <details> tag that has no <summary> child.
- WebProcess/WebCoreSupport/WebPlatformStrategies.cpp:
(WebKit::WebPlatformStrategies::defaultDetailsSummaryText):
- WebProcess/WebCoreSupport/WebPlatformStrategies.h:
- 10:00 AM Changeset in webkit [78841] by
-
- 3 edits in trunk/LayoutTests
2011-02-17 Hans Wennborg <hans@chromium.org>
Reviewed by Jeremy Orlow.
IndexedDB: enable test for auto increment key injection
https://bugs.webkit.org/show_bug.cgi?id=54642
Enable this test now that Chromium supports it.
- storage/indexeddb/objectstore-autoincrement-expected.txt:
- storage/indexeddb/objectstore-autoincrement.html:
- 9:41 AM Changeset in webkit [78840] by
-
- 2 edits in trunk/Tools
2011-02-17 Csaba Osztrogonác <Csaba Osztrogonác>
Reviewed by Andreas Kling.
[Qt] ImageDiff sometimes hangs
https://bugs.webkit.org/show_bug.cgi?id=54641
- DumpRenderTree/qt/ImageDiff.cpp: Clear actualImage and baselineImage after all comparison. (main):
- 9:30 AM Changeset in webkit [78839] by
-
- 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt
2011-02-17 Mikhail Naganov <mnaganov@chromium.org>
[Chromium] Unreviewed test expectations update.
Re-enabling inspector/elements/mutate-unknown-node.html -- should pass after r78831.
https://bugs.webkit.org/show_bug.cgi?id=54635
- 9:26 AM Changeset in webkit [78838] by
-
- 2 edits in trunk/Source/WebKit/chromium
2011-02-17 Steve Lacey <sjl@chromium.org>
Reviewed by Darin Fisher.
Roll chromium deps to 75190. Includes new dependency
on libjingle.
- DEPS:
- 9:22 AM Changeset in webkit [78837] by
-
- 2 edits199 adds in trunk/LayoutTests
2011-02-17 Sergio Villar Senin <svillar@igalia.com>
Unreviewed.
Added a bunch of GTK+ baselines for Mozilla test suites
(tables/mozilla/marvin).
- platform/gtk/Skipped: Unskip tests which now have results.
- 9:06 AM Changeset in webkit [78836] by
-
- 2 edits in trunk/LayoutTests
2011-02-17 Zhenyao Mo <zmo@google.com>
Unreviewed, test expectations update.
- platform/chromium/test_expectations.txt:
- 8:35 AM Changeset in webkit [78835] by
-
- 2 edits in trunk/Tools
2011-02-17 Peter Varga <pvarga@webkit.org>
Reviewed by Csaba Osztrogonác.
The run-sunspider --v8-suite doesn't work
https://bugs.webkit.org/show_bug.cgi?id=54660
- Scripts/run-sunspider:
- 8:27 AM Changeset in webkit [78834] by
-
- 4 edits in trunk
2011-02-17 Kristian Amlie <kristian.amlie@nokia.com>
Reviewed by Laszlo Gombos.
Updated include paths for phonon.
[Qt] WebKit patches required to work with a modularized version of Qt
https://bugs.webkit.org/show_bug.cgi?id=53916
- Source/WebKit.pri:
2011-02-17 Kristian Amlie <kristian.amlie@nokia.com>
Reviewed by Laszlo Gombos.
Updated include paths for phonon.
[Qt] WebKit patches required to work with a modularized version of Qt
https://bugs.webkit.org/show_bug.cgi?id=53916
Build fix. No tests.
- WebCore.pro:
- 8:25 AM Changeset in webkit [78833] by
-
- 2 edits in trunk/Source/WebKit/efl
2011-02-17 Ryuan Choi <ryuan.choi@samsung.com>
Reviewed by Kent Tamura.
[EFL] Possible crash of ewk_frame_contents_set
https://bugs.webkit.org/show_bug.cgi?id=54091
Use length of contents if contents_size parameter is bigger than length
of contents.
- ewk/ewk_frame.cpp: (_ewk_frame_contents_set_internal):
- 8:19 AM Changeset in webkit [78832] by
-
- 2 edits in trunk/Source/WebKit2
Make sure layout is up-to-date before rendering the layer tree in DrawingAreaImpl
Fixes <http://webkit.org/b/54646> <rdar://problem/9016889> Assertion failure in
FrameView::paintContents when calling WKPageForceRepaint on a page that uses accelerated
compositing
Reviewed by Anders Carlsson.
- WebProcess/WebPage/DrawingAreaImpl.cpp:
(WebKit::DrawingAreaImpl::forceRepaint): Lay out before we do anything else.
- 8:13 AM Changeset in webkit [78831] by
-
- 4 edits in trunk/LayoutTests
2011-02-17 Ilya Tikhonovsky <loislo@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: [Chromium] inspector/elements/mutate-unknown-node.html test is flaky.
https://bugs.webkit.org/show_bug.cgi?id=54635
It was a race condition. Sometimes Inspector was loaded before domContentLoaded event but sometimes not.
As result it receives second setDocument and got new ids for the DOM elements.
- http/tests/inspector/elements-test.js: (initialize_ElementTest.InspectorTest.dumpDOMAgentTree): (initialize_ElementTest):
- inspector/elements/mutate-unknown-node-expected.txt:
- inspector/elements/mutate-unknown-node.html:
- 8:00 AM Changeset in webkit [78830] by
-
- 2 edits in trunk/LayoutTests
Skip a new spinbutton test on Windows
Also updated the Bugzilla URL for these tests to point to a bug that isn't marked Resolved,
since clearly there's still an unresolved bug here! The new bug is
<http://webkit.org/b/54662>.
- platform/win/Skipped: Added fast/forms/input-appearance-spinbutton-layer.html.
- 7:59 AM Changeset in webkit [78829] by
-
- 1 edit1 add in trunk/LayoutTests
Check in expected failure results on Windows for accessibility/canvas-fallback-content.html
Failure is tracked by <http://webkit.org/b/54654>.
- platform/win/accessibility/canvas-fallback-content-expected.txt: Added.
- 7:59 AM Changeset in webkit [78828] by
-
- 2 edits in trunk/LayoutTests
Skip a failing test on Windows
Failure is tracked by <http://webkit.org/b/54655>.
- platform/win/Skipped: Added
http/tests/security/xssAuditor/script-tag-with-fancy-unicode.html.
- 7:58 AM Changeset in webkit [78827] by
-
- 2 edits in trunk/LayoutTests
Update Windows results after r78690
Fixes <http://webkit.org/b/54657>.
- platform/win/media/controls-without-preload-expected.txt:
- 7:58 AM Changeset in webkit [78826] by
-
- 2 edits in trunk/LayoutTests
Skip all inspector/debugger tests on Windows
The failures are tracked by <http://webkit.org/b/54490>.
- platform/win/Skipped:
- 7:55 AM BuildingGtk edited by
- (diff)
- 7:32 AM Changeset in webkit [78825] by
-
- 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt
2011-02-17 Mikhail Naganov <mnaganov@chromium.org>
[Chromium] Unreviewed test expectations update.
Mark inspector/debugger/debug-inlined-scripts.html as crashing in debug.
https://bugs.webkit.org/show_bug.cgi?id=54659
- 7:05 AM Changeset in webkit [78824] by
-
- 3 edits in trunk/LayoutTests
2011-02-17 Philippe Normand <pnormand@igalia.com>
Unreviewed, rebaseline GTK test results.
[GStreamer] media/video-zoom-controls.html fails
https://bugs.webkit.org/show_bug.cgi?id=50918
- platform/gtk/Skipped:
- platform/gtk/media/video-zoom-controls-expected.txt:
- 7:01 AM Changeset in webkit [78823] by
-
- 3 edits in trunk/Source/WebKit/efl
2011-02-17 Grzegorz Czajkowski <g.czajkowski@samsung.com>
Reviewed by Kent Tamura.
Doxygen documentation for ewk cookies
https://bugs.webkit.org/show_bug.cgi?id=54553
- ewk/ewk_cookies.cpp: (ewk_cookies_file_set): (ewk_cookies_policy_set): (ewk_cookies_policy_get):
- ewk/ewk_cookies.h:
- 6:55 AM Changeset in webkit [78822] by
-
- 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt
2011-02-17 Mikhail Naganov <mnaganov@chromium.org>
[Chromium] Unreviewed test expectations update.
Skip inspector/elements/mutate-unknown-node.html, it now timeouts.
- 6:23 AM Changeset in webkit [78821] by
-
- 2 edits75 adds in trunk/LayoutTests
2011-02-17 Sergio Villar Senin <svillar@igalia.com>
Unreviewed.
Add the next set (tables/mozilla/dom) of GTK+ Mozilla test suite results.
- platform/gtk/Skipped: Updated the skipped list.
- 6:16 AM Changeset in webkit [78820] by
-
- 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt
[Chromium] Unreviewed -- forgot to specify 'DEBUG' prefix for expectations in r78818.
- 6:08 AM Changeset in webkit [78819] by
-
- 2 edits in trunk/Source/WebKit/chromium
2011-02-17 Pavel Podivilov <podivilov@chromium.org>
Unreviewed, interactive ui test fix for r78808.
- src/js/Tests.js: (.TestSuite.prototype._waitUntilScriptsAreParsed.waitForAllScripts): (.TestSuite.prototype._waitUntilScriptsAreParsed):
- 6:05 AM Changeset in webkit [78818] by
-
- 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt
2011-02-17 Mikhail Naganov <mnaganov@chromium.org>
[Chromium] Unreviewed test expectations update.
storage/indexeddb/set_version_(blocked|queue).html fails on all platforms in dbg on Chromium waterfall.
https://bugs.webkit.org/show_bug.cgi?id=54644
- 5:39 AM Changeset in webkit [78817] by
-
- 7 edits in trunk/Source
2011-02-17 Hui Huang <hui.2.huang@nokia.com>
Reviewed by Laszlo Gombos.
The URL of HTML5 Video Element is percent encoded at websites such as youtube.
It is percent encoded again by QUrl constructor QUrl::QUrl(QString). This causes
the HTTP GET request for the video to be rejected by the service provider.
https://bugs.webkit.org/show_bug.cgi?id=53973.
The bug is fixed by constructing QUrl from the encoded URL.
New test function tst_QWebPage::loadHtml5Video() is added in
Source/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp
- platform/graphics/qt/MediaPlayerPrivateQt.cpp: (WebCore::MediaPlayerPrivateQt::commitLoad):
2011-02-17 Hui Huang <hui.2.huang@nokia.com>
Reviewed by Laszlo Gombos.
The URL of HTML5 Video Element is percent encoded at websites such as youtube.
It is percent encoded again by QUrl constructor QUrl::QUrl(QString). This causes
the HTTP GET request for the video to be rejected by the service provider.
https://bugs.webkit.org/show_bug.cgi?id=53973.
The bug is fixed by constructing QUrl from the encoded URL in
MediaPlayerPrivateQt::commitLoad.
New test function tst_QWebPage::loadHtml5Video() is added to load HTML content with
HTML5 Video element. A new public method DumpRenderTreeSupportQt::mediaContentUrlByElementId
is added to retrieve the URL of the media content from WebCore MediaPlayerPrivateQt.
A new macro ENABLE_QT_MULTIMEDIA is introduced in tests.pri to make sure that the test
is skipped if Qt Multimedia is not available.
- WebCoreSupport/DumpRenderTreeSupportQt.cpp: (DumpRenderTreeSupportQt::mediaContentUrlByElementId):
- WebCoreSupport/DumpRenderTreeSupportQt.h:
- tests/qwebpage/tst_qwebpage.cpp: (tst_QWebPage::loadHtml5Video):
- tests/tests.pri:
- 5:38 AM Changeset in webkit [78816] by
-
- 4 edits in trunk/Source
2011-02-17 Andreas Kling <kling@webkit.org>
Reviewed by Antti Koivisto.
[Qt] Crash when calling QWebFrame::setUrl() while a previous load has pending requests
https://bugs.webkit.org/show_bug.cgi?id=49216
- tests/qwebframe/tst_qwebframe.cpp:
2011-02-17 Andreas Kling <kling@webkit.org>
Reviewed by Antti Koivisto.
[Qt] Crash when calling QWebFrame::setUrl() while a previous load has pending requests
https://bugs.webkit.org/show_bug.cgi?id=49216
CachedResourceRequest::didFail() will protect the CachedResourceLoader's
document() while it runs, but if we're being called from the Document destructor,
the protecting RefPtr<Document> will cause a double-delete instead.
- loader/cache/CachedResourceLoader.cpp: (WebCore::CachedResourceLoader::~CachedResourceLoader): Clear the m_document pointer so CachedResourceRequest::didFail() won't try to protect it. (WebCore::CachedResourceLoader::frame): Add null-check for m_document.
- 5:20 AM Changeset in webkit [78815] by
-
- 3 edits in trunk/Source/WebCore
2011-02-17 Andrey Adaikin <aandrey@google.com>
Reviewed by Pavel Feldman.
Web Inspector: [Text editor] Add updateHighlight method to the highlighter
https://bugs.webkit.org/show_bug.cgi?id=54448
- inspector/front-end/SourceTokenizer.js:
- inspector/front-end/TextEditorHighlighter.js: (WebInspector.TextEditorHighlighter.prototype.set mimeType): (WebInspector.TextEditorHighlighter.prototype.reset): (WebInspector.TextEditorHighlighter.prototype.updateHighlight): (WebInspector.TextEditorHighlighter.prototype._highlightInChunks): (WebInspector.TextEditorHighlighter.prototype._highlightLines):
- 5:14 AM Changeset in webkit [78814] by
-
- 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt
2011-02-17 Mikhail Naganov <mnaganov@chromium.org>
[Chromium] Unreviewed test expectations update.
media/video-display-toggle.html fails on all platforms.
https://bugs.webkit.org/show_bug.cgi?id=54640
- 5:02 AM Changeset in webkit [78813] by
-
- 2 edits in trunk/LayoutTests
2011-02-17 Sergio Villar Senin <svillar@igalia.com>
Unreviewed.
Added flaky test media/video-display-toggle.html. Fails only on
debug bots.
- platform/gtk/Skipped: Updated the skipped list.
- 4:55 AM Changeset in webkit [78812] by
-
- 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt
2011-02-17 Mikhail Naganov <mnaganov@chromium.org>
[Chromium] Unreviewed test expectations update.
inspector/elements/set-attribute.html works -- enable it.
inspector/debugger/dom-breakpoints.html timeouts -- bug filed.
https://bugs.webkit.org/show_bug.cgi?id=54638
- 4:38 AM Changeset in webkit [78811] by
-
- 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt
2011-02-17 Mikhail Naganov <mnaganov@chromium.org>
[Chromium] Unreviewed test expectations update.
Mark inspector/elements/mutate-unknown-node.html as flaky.
https://bugs.webkit.org/show_bug.cgi?id=54635
- 4:37 AM BuildingGtk edited by
- Update necessary libglib version. Based on … (diff)
- 4:34 AM Changeset in webkit [78810] by
-
- 8 edits18 adds in trunk/LayoutTests/platform
2011-02-17 Mikhail Naganov <mnaganov@chromium.org>
[Chromium] Unreviewed test expectations update after r78806.
Rebaseline SVG tests:
batik/paints/patternRegions-positioned-objects.svg
custom/nested-pattern-boundingBoxModeContent.svg
dynamic-updates/SVGPatternElement-dom-patternContentUnits-attr.html
dynamic-updates/SVGPatternElement-svgdom-patternContentUnits-prop.html
- 4:20 AM Changeset in webkit [78809] by
-
- 1 edit in trunk/LayoutTests/platform/chromium/test_expectations.txt
2011-02-17 Mikhail Naganov <mnaganov@chromium.org>
[Chromium] Unreviewed test expectations update after r78878.
Skip timing out media/video-controls-in-media-document.html.
https://bugs.webkit.org/show_bug.cgi?id=54634
- 4:08 AM Changeset in webkit [78808] by
-
- 6 edits2 adds in trunk
2011-02-16 Pavel Podivilov <podivilov@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: show all inlined scripts from single document in the same source frame.
https://bugs.webkit.org/show_bug.cgi?id=54544
Currently when debugging synchronously executed inlined scripts each script is shown in it's own source frame ("example.html:24").
We should show such scripts in the same source frame "example.html" with <script></script> framing.
- http/tests/inspector/debugger-test.js: (initialize_DebuggerTest.InspectorTest._pausedScript): (initialize_DebuggerTest.InspectorTest._resumedScript):
- inspector/debugger/debug-inlined-scripts-expected.txt: Added.
- inspector/debugger/debug-inlined-scripts.html: Added.
- inspector/debugger/debugger-breakpoints-not-activated-on-reload.html:
- inspector/debugger/debugger-pause-on-breakpoint.html:
2011-02-16 Pavel Podivilov <podivilov@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: show all inlined scripts from single document in the same source frame.
https://bugs.webkit.org/show_bug.cgi?id=54544
Currently when debugging synchronously executed inlined scripts each script is shown in it's own source frame ("example.html:24").
We should show such scripts in the same source frame "example.html" with <script></script> framing.
Test: inspector/debugger/debug-inlined-scripts.html
- inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype._scriptSourceChanged): (WebInspector.ScriptsPanel.prototype._addScript): (WebInspector.ScriptsPanel.prototype._resourceForURL): (WebInspector.ScriptsPanel.prototype._resourceLoadingFinished): (WebInspector.ScriptsPanel.prototype.addConsoleMessage): (WebInspector.ScriptsPanel.prototype.clearConsoleMessages): (WebInspector.ScriptsPanel.prototype.reset): (WebInspector.ScriptsPanel.prototype._sourceFrameForResource): (WebInspector.ScriptsPanel.prototype._sourceFrameForScript): (WebInspector.ScriptsPanel.prototype._recreateSourceFrame): (WebInspector.ScriptsPanel.prototype._showScriptOrResource): (WebInspector.ScriptsPanel.prototype._addScriptToFilesMenu.optionCompare): (WebInspector.ScriptsPanel.prototype._addScriptToFilesMenu): (WebInspector.SourceFrameContentProviderForScript.prototype.requestContent): (WebInspector.SourceFrameContentProviderForScript.prototype._buildSource):
- 3:13 AM Changeset in webkit [78807] by
-
- 2 edits in trunk/Tools
2011-02-17 Gabor Rapcsanyi <rgabor@webkit.org>
Reviewed by Csaba Osztrogonác.
[NRWT] Fix environment setup on Qt port.
https://bugs.webkit.org/show_bug.cgi?id=54549
- Scripts/webkitpy/layout_tests/port/qt.py:
- 3:00 AM Changeset in webkit [78806] by
-
- 9 edits4 adds in trunk
2011-02-17 Nikolas Zimmermann <nzimmermann@rim.com>
Reviewed by Dirk Schulze.
svg/batik/paints/patternRegions-positioned-objects.svg fails on Windows
https://bugs.webkit.org/show_bug.cgi?id=44484
Pattern of pattern defined with objectBoundingBox does not render correctly
https://bugs.webkit.org/show_bug.cgi?id=53463
Fix <pattern> + patternContentUnits="objectBoundingBox" support.
We were incorrrectly translating the tile image transform, by the target objects bbox.x()/y().
RenderSVGResourceMask/Clipper don't have this error.
Fix nesting <patterns> in objectBoundingBox mode, propagate the tileImageTransform as new user-space
when drawing the pattern children. <mask> + <clipPath> don't have the problem.
Test: svg/custom/nested-pattern-boundingBoxModeContent.svg
- rendering/svg/RenderSVGResourcePattern.cpp: (WebCore::RenderSVGResourcePattern::buildTileImageTransform): (WebCore::RenderSVGResourcePattern::createTileImage):
2011-02-17 Nikolas Zimmermann <nzimmermann@rim.com>
Reviewed by Dirk Schulze.
svg/batik/paints/patternRegions-positioned-objects.svg fails on Windows
https://bugs.webkit.org/show_bug.cgi?id=44484
Pattern of pattern defined with objectBoundingBox does not render correctly
https://bugs.webkit.org/show_bug.cgi?id=53463
Update SnowLeopard pixel test baseline after adding new patternContentUnits="objectBoundingBox" tests.
- platform/mac/svg/batik/paints/patternRegions-positioned-objects-expected.checksum:
- platform/mac/svg/batik/paints/patternRegions-positioned-objects-expected.png:
- platform/mac/svg/custom/nested-pattern-boundingBoxModeContent-expected.checksum: Added.
- platform/mac/svg/custom/nested-pattern-boundingBoxModeContent-expected.png: Added.
- platform/mac/svg/custom/nested-pattern-boundingBoxModeContent-expected.txt: Added.
- platform/mac/svg/dynamic-updates/SVGPatternElement-dom-patternContentUnits-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGPatternElement-dom-patternContentUnits-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGPatternElement-svgdom-patternContentUnits-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGPatternElement-svgdom-patternContentUnits-prop-expected.png:
- svg/custom/nested-pattern-boundingBoxModeContent.svg: Added.
- 2:46 AM Changeset in webkit [78805] by
-
- 2 edits in trunk/LayoutTests
Unreviewed.
[Qt] http/tests/security/xssAuditor/script-tag-with-fancy-unicode.html fails
https://bugs.webkit.org/show_bug.cgi?id=54630
- platform/qt/Skipped: Add http/tests/security/xssAuditor/script-tag-with-fancy-unicode.html temporarily.
- 2:32 AM Changeset in webkit [78804] by
-
- 2 edits in trunk/LayoutTests
2011-02-17 Sergio Villar Senin <svillar@igalia.com>
Unreviewed.
[GTK] Failing canvas security tests
https://bugs.webkit.org/show_bug.cgi?id=30580
Test is working fine locally in both release and debug builds so
unskipping it.
- platform/gtk/Skipped: Updated the skipped list.
- 2:21 AM Changeset in webkit [78803] by
-
- 2 edits in trunk/Source/WebCore
Unreviewed.
[Qt][V8] Buildfix after r78752.
- CodeGenerators.pri: Add missing IDL files.
- 1:50 AM Changeset in webkit [78802] by
-
- 2 edits in trunk/LayoutTests
2011-02-17 Mario Sanchez Prada <msanchez@igalia.com>
Unreviewed, skipping failing test on GTK bots.
[GTK] accessibility/canvas-fallback-content.html is failing on GTK bots
https://bugs.webkit.org/show_bug.cgi?id=54626
- platform/gtk/Skipped: Skipping failing test.
- 1:39 AM Changeset in webkit [78801] by
-
- 2 edits in trunk/LayoutTests
2011-02-17 Sergio Villar Senin <svillar@igalia.com>
Unreviewed.
Skipped four SVG tests that started to show rounding errors (1
pixel difference) after r78704.
- platform/gtk/Skipped: Update the skipped list.
- 1:35 AM Changeset in webkit [78800] by
-
- 4 edits in trunk/Source/WebKit2
2011-02-17 Alejandro G. Castro <alex@igalia.com>
Reviewed by Martin Robinson.
[GTK] Add WKPluginSiteDataManager.cpp compilation after r78647
https://bugs.webkit.org/show_bug.cgi?id=54564
- GNUmakefile.am: Added files to compilation.
- Shared/Plugins/Netscape/NetscapePluginModule.h: used npruntime_internal.h in the include to avoid problems with X types.
- WebProcess/WebProcess.cpp: (WebKit::WebProcess::setAlwaysUsesComplexTextCodePath): fixed ambiguous reference to Font caused by the X headers required by the plugins.
- 1:02 AM Changeset in webkit [78799] by
-
- 3 edits2 adds in trunk
2011-02-17 Benjamin Kalman <kalman@chromium.org>
Reviewed by Ryosuke Niwa.
RTL lineboundary left/right is reversed when cursor is at start of RTL container
https://bugs.webkit.org/show_bug.cgi?id=54534
Test extending the selection left/right by lineboundary from both the leftmost/rightmost ends of LTR and RTL
containers with both LTR and RTL text.
- editing/selection/extend-left-right-by-lineboundary-expected.txt: Added.
- editing/selection/extend-left-right-by-lineboundary.html: Added.
2011-02-17 Benjamin Kalman <kalman@chromium.org>
Reviewed by Ryosuke Niwa.
RTL lineboundary left/right is reversed when cursor is at start of RTL container
https://bugs.webkit.org/show_bug.cgi?id=54534
Test: editing/selection/extend-left-right-by-lineboundary.html
Add missing cases for extending left/right by lineboundary.
- editing/SelectionController.cpp: (WebCore::SelectionController::modifyExtendingRight): (WebCore::SelectionController::modifyExtendingLeft):
- 12:25 AM Changeset in webkit [78798] by
-
- 2 edits in trunk/Source/WebCore
2011-02-16 Philippe Normand <pnormand@igalia.com>
Reviewed by Martin Robinson.
[GTK] libsoup critical warnings
https://bugs.webkit.org/show_bug.cgi?id=54557
Avoid pausing a soup message for already downloaded resources.
- platform/network/soup/ResourceHandleSoup.cpp: (WebCore::ResourceHandle::platformSetDefersLoading):
- 12:21 AM Changeset in webkit [78797] by
-
- 2 edits in trunk/LayoutTests
2011-02-17 Philippe Normand <pnormand@igalia.com>
Unreviewed, fix media-file.js path after r78778.
- media/video-display-aspect-ratio.html:
- 12:21 AM Changeset in webkit [78796] by
-
- 1 edit in trunk/LayoutTests/ChangeLog
2011-02-16 Philippe Normand <pnormand@igalia.com>
Reviewed by Martin Robinson.
[GTK] media/video-display-toggle.html still flaky on 32-Bits Release
https://bugs.webkit.org/show_bug.cgi?id=54552
- media/video-display-toggle.html: Start playback before triggering the display toggle, ensuring the controls (esp. duration display) are conistent.
Feb 16, 2011:
- 11:17 PM Changeset in webkit [78795] by
-
- 4 edits in trunk/Source/JavaScriptCore
2011-02-16 Geoffrey Garen <ggaren@apple.com>
Reviewed by Maciej Stachowiak.
Intermittent crashes beneath MarkStack::drain
https://bugs.webkit.org/show_bug.cgi?id=54614
<rdar://problem/8971070>
The crashes were caused by a GC happening after the global object's
property table had grown (due to compilation), but before the properties
had been fully initialized by program execution.
- bytecompiler/BytecodeGenerator.cpp: (JSC::BytecodeGenerator::BytecodeGenerator): Explicitly resize the global object's register storage immediately, without waiting for program execution to do it for us. This ensures that the global object's count of global variables is consistent with the size of its global variable storage at all times, and it ensures that all global variables are properly initialized from the get-go.
- runtime/JSGlobalObject.cpp: (JSC::JSGlobalObject::resizeRegisters):
- runtime/JSGlobalObject.h: Added a helper function for growing the global object's register storage, and initializing new registers.
- 11:09 PM Changeset in webkit [78794] by
-
- 3 edits in trunk/LayoutTests
2011-02-16 Ilya Tikhonovsky <loislo@chromium.org>
Unreviewed.
Web Inspector: chromium: update test expectation.
- platform/chromium/inspector/timeline/timeline-parse-html-expected.txt:
- platform/chromium/test_expectations.txt:
- 10:53 PM Changeset in webkit [78793] by
-
- 2 edits1 delete in trunk/LayoutTests
2011-02-16 Ilya Tikhonovsky <loislo@chromium.org>
Unreviewed.
Web Inspector: remove custom test expectations for chromium.
- platform/chromium/http/tests/inspector/console-resource-errors-expected.txt: Removed.
- platform/chromium/test_expectations.txt:
- 10:30 PM Changeset in webkit [78792] by
-
- 5 edits in branches/safari-534.20-branch/Source
Versioning.
- 10:28 PM Changeset in webkit [78791] by
-
- 1 copy in tags/Safari-534.20.2
New tag.
- 10:25 PM Changeset in webkit [78790] by
-
- 6 edits in trunk/Source
2011-02-16 Brian Ryner <bryner@chromium.org>
Reviewed by Darin Fisher.
Split the socket address field into separate IP address and port fields.
This will make the field less error-prone to parse, for example when
dealing with IPv6 literals.
https://bugs.webkit.org/show_bug.cgi?id=54607
No new tests required.
- platform/network/chromium/ResourceResponse.cpp: (WebCore::ResourceResponse::doPlatformCopyData): (WebCore::ResourceResponse::doPlatformAdopt):
- platform/network/chromium/ResourceResponse.h: (WebCore::ResourceResponse::ResourceResponse): (WebCore::ResourceResponse::remoteIPAddress): (WebCore::ResourceResponse::setRemoteIPAddress): (WebCore::ResourceResponse::remotePort): (WebCore::ResourceResponse::setRemotePort):
2011-02-16 Brian Ryner <bryner@chromium.org>
Reviewed by Darin Fisher.
Split the socket address field into separate IP address and port fields.
This will make the field less error-prone to parse, for example when
dealing with IPv6 literals.
https://bugs.webkit.org/show_bug.cgi?id=54607
- public/WebURLResponse.h:
- src/WebURLResponse.cpp: (WebKit::WebURLResponse::remoteIPAddress): (WebKit::WebURLResponse::setRemoteIPAddress): (WebKit::WebURLResponse::remotePort): (WebKit::WebURLResponse::setRemotePort):
- 8:56 PM Changeset in webkit [78789] by
-
- 17 edits2 adds in trunk
2011-02-16 Dominic Mazzoni <dmazzoni@google.com>
Reviewed by Chris Fleizach.
Add new test for canvas fallback content and update existing text for new canvas role.
https://bugs.webkit.org/show_bug.cgi?id=50126
- accessibility/canvas-fallback-content-expected.txt: Added.
- accessibility/canvas-fallback-content.html: Added.
- accessibility/canvas.html:
2011-02-16 Dominic Mazzoni <dmazzoni@google.com>
Reviewed by Chris Fleizach.
Add support for canvas fallback content.
https://bugs.webkit.org/show_bug.cgi?id=50126
Test: accessibility/canvas-fallback-content.html
- accessibility/AccessibilityObject.h:
- accessibility/AccessibilityRenderObject.cpp: (WebCore::AccessibilityRenderObject::determineAccessibilityRole): (WebCore::AccessibilityRenderObject::canHaveChildren):
- accessibility/gtk/AccessibilityObjectWrapperAtk.cpp: (atkRole):
- accessibility/mac/AccessibilityObjectWrapper.mm:
- html/HTMLFormControlElement.cpp: (WebCore::HTMLFormControlElement::isFocusable):
- rendering/RenderHTMLCanvas.cpp: (WebCore::RenderHTMLCanvas::recursiveSetNoNeedsLayout): (WebCore::RenderHTMLCanvas::layout): (WebCore::RenderHTMLCanvas::nodeAtPoint):
- rendering/RenderHTMLCanvas.h: (WebCore::RenderHTMLCanvas::children): (WebCore::RenderHTMLCanvas::canHaveChildren): (WebCore::RenderHTMLCanvas::virtualChildren):
- rendering/RenderObject.cpp: (WebCore::RenderObject::repaint):
- rendering/RenderTreeAsText.cpp: (WebCore::write):
2011-02-16 Dominic Mazzoni <dmazzoni@google.com>
Reviewed by Chris Fleizach.
Add new role for canvas elements.
- public/WebAccessibilityRole.h:
- src/AssertMatchingEnums.cpp:
2011-02-16 Dominic Mazzoni <dmazzoni@google.com>
Reviewed by Chris Fleizach.
Add new role for canvas elements.
Test: accessibility/canvas-fallback-content.html
- AccessibleBase.cpp: (MSAARole):
- 8:54 PM Changeset in webkit [78788] by
-
- 16 edits in trunk/Source
2011-02-16 Matthew Delaney <mdelaney@apple.com>
Reviewed by Simon Fraser.
Allow acceleratesDrawing for WebKit2
https://bugs.webkit.org/show_bug.cgi?id=54511
Plumb through preference for accelerated drawing.
- WebView/WebPreferenceKeysPrivate.h:
- WebView/WebPreferences.mm: (+[WebPreferences initialize]): (-[WebPreferences acceleratedDrawingEnabled]): (-[WebPreferences setAcceleratedDrawingEnabled:]):
- WebView/WebPreferencesPrivate.h:
2011-02-16 Matthew Delaney <mdelaney@apple.com>
Reviewed by Simon Fraser.
Allow acceleratesDrawing for WebKit2
https://bugs.webkit.org/show_bug.cgi?id=54511
Plumb through preference for accelerated drawing.
When accelerated drawing is enabled, set a flag on new GraphicsLayers.
Not testable via Layout Tests
- WebCore.exp.in:
- page/Settings.cpp: (WebCore::Settings::Settings): (WebCore::Settings::setAcceleratedDrawingEnabled):
- page/Settings.h: (WebCore::Settings::acceleratedDrawingEnabled):
- rendering/RenderLayerCompositor.cpp: (WebCore::RenderLayerCompositor::updateBacking):
2011-02-16 Matthew Delaney <mdelaney@apple.com>
Reviewed by Simon Fraser.
Allow acceleratesDrawing for WebKit2
https://bugs.webkit.org/show_bug.cgi?id=54511
Plumb through preference for accelerated drawing.
If accelerated drawing is enabled, keep the DrawingAreaImpl in
accelerated compositing mode.
- Shared/WebPreferencesStore.h:
- UIProcess/API/C/WKPreferences.cpp: (WKPreferencesSetAcceleratedDrawingEnabled): (WKPreferencesGetAcceleratedDrawingEnabled):
- UIProcess/API/C/WKPreferencesPrivate.h:
- WebProcess/WebPage/DrawingAreaImpl.cpp: (WebKit::DrawingAreaImpl::DrawingAreaImpl): (WebKit::DrawingAreaImpl::setRootCompositingLayer): (WebKit::DrawingAreaImpl::exitAcceleratedCompositingMode):
- WebProcess/WebPage/DrawingAreaImpl.h:
- WebProcess/WebPage/WebPage.cpp: (WebKit::WebPage::updatePreferences):
- 8:44 PM Changeset in webkit [78787] by
-
- 7 edits in trunk/Source
2011-02-16 Victoria Kirst <vrk@google.com>
Reviewed by Kenneth Russell.
[chromium] Fix green pixels at edge of certain GPU-accelerated videos
https://bugs.webkit.org/show_bug.cgi?id=54559
Adds logic to properly resize the range of YUV textures to only
select legitimate values.
- platform/graphics/chromium/VideoFrameChromium.h:
- platform/graphics/chromium/VideoLayerChromium.cpp: (WebCore::VideoLayerChromium::SharedValues::SharedValues): (WebCore::VideoLayerChromium::allocateTexturesIfNeeded): (WebCore::VideoLayerChromium::drawYUV):
- platform/graphics/chromium/VideoLayerChromium.h: (WebCore::VideoLayerChromium::SharedValues::yWidthScaleFactorLocation): (WebCore::VideoLayerChromium::SharedValues::uvWidthScaleFactorLocation):
2011-02-16 Victoria Kirst <vrk@google.com>
Reviewed by Kenneth Russell.
[chromium] Fix green pixels at edge of certain GPU-accelerated videos
https://bugs.webkit.org/show_bug.cgi?id=54559
- src/VideoFrameChromiumImpl.cpp: (WebKit::VideoFrameChromiumImpl::width): (WebKit::VideoFrameChromiumImpl::height): (WebKit::VideoFrameChromiumImpl::requiredTextureSize): (WebKit::VideoFrameChromiumImpl::hasPaddingBytes):
- src/VideoFrameChromiumImpl.h:
- 8:39 PM Changeset in webkit [78786] by
-
- 2 edits in trunk/Source/WebKit/efl
2011-02-16 Gyuyoung Kim <gyuyoung.kim@samsung.com>
Unreviewed build fix.
[EFL] Build break on r78634
https://bugs.webkit.org/show_bug.cgi?id=54602
Build error because of r78634.
- CMakeListsEfl.txt:
- 8:28 PM Changeset in webkit [78785] by
-
- 2 edits in trunk/Source/WebKit2
2011-02-16 Yael Aharon <yael.aharon@nokia.com>
Reviewed by Andreas Kling.
[Qt] White screen is displayed when tiled backing store is enabled in MiniBrowser.
https://bugs.webkit.org/show_bug.cgi?id=54583
Make sure to invalidate all the tiles, including the last one.
- UIProcess/TiledDrawingAreaProxy.cpp: (WebKit::TiledDrawingAreaProxy::invalidate):
- 8:27 PM Changeset in webkit [78784] by
-
- 3 edits in trunk/Tools
2011-02-16 Yael Aharon <yael.aharon@nokia.com>
Reviewed by Andreas Kling.
[Qt] Enable tiled backing store by default in MiniBrowser.
https://bugs.webkit.org/show_bug.cgi?id=54581
Instead of a flag to turn it on, a new flag is defined to turn
tiled backing store off.
- MiniBrowser/qt/MiniBrowserApplication.cpp: (MiniBrowserApplication::handleUserOptions):
- MiniBrowser/qt/MiniBrowserApplication.h: (WindowOptions::WindowOptions):
- 8:27 PM Changeset in webkit [78783] by
-
- 2 edits in trunk/Source/WebKit2
2011-02-16 Yael Aharon <yael.aharon@nokia.com>
Reviewed by Andreas Kling.
[Qt] Tiles are not created for webkit2 after r77286.
https://bugs.webkit.org/show_bug.cgi?id=54577
When using the default tile size of 1024x1024, only one tile is created.
Make sure to create this tile by undoing what seems to be a typo in r77286.
- UIProcess/TiledDrawingAreaProxy.cpp: (WebKit::TiledDrawingAreaProxy::paint): (WebKit::TiledDrawingAreaProxy::createTiles):
- 8:11 PM Changeset in webkit [78782] by
-
- 17 edits in trunk/Source/WebCore
2011-02-16 Bill Budge <bbudge@chromium.org>
Reviewed by David Levin.
Need didReceiveCachedMetadata, and finishTime for didFinishLoading exposed in ThreadableLoaderClient
https://bugs.webkit.org/show_bug.cgi?id=54313
No tests needed, exposes no new functionality
- fileapi/FileReaderLoader.cpp: (WebCore::FileReaderLoader::didFinishLoading):
- fileapi/FileReaderLoader.h:
- loader/DocumentThreadableLoader.cpp: (WebCore::DocumentThreadableLoader::setDefersLoading): (WebCore::DocumentThreadableLoader::didReceiveCachedMetadata): (WebCore::DocumentThreadableLoader::didFinishLoading): (WebCore::DocumentThreadableLoader::loadRequest):
- loader/DocumentThreadableLoader.h:
- loader/ThreadableLoaderClient.h: (WebCore::ThreadableLoaderClient::didReceiveData): (WebCore::ThreadableLoaderClient::didReceiveCachedMetadata): (WebCore::ThreadableLoaderClient::didFinishLoading):
- loader/ThreadableLoaderClientWrapper.h: (WebCore::ThreadableLoaderClientWrapper::didReceiveData): (WebCore::ThreadableLoaderClientWrapper::didReceiveCachedMetadata): (WebCore::ThreadableLoaderClientWrapper::didFinishLoading):
- loader/WorkerThreadableLoader.cpp: (WebCore::workerContextDidReceiveCachedMetadata): (WebCore::WorkerThreadableLoader::MainThreadBridge::didReceiveCachedMetadata): (WebCore::workerContextDidFinishLoading): (WebCore::WorkerThreadableLoader::MainThreadBridge::didFinishLoading):
- loader/WorkerThreadableLoader.h:
- notifications/Notification.cpp: (WebCore::Notification::didFinishLoading):
- notifications/Notification.h:
- page/EventSource.cpp: (WebCore::EventSource::didFinishLoading):
- page/EventSource.h:
- workers/WorkerScriptLoader.cpp: (WebCore::WorkerScriptLoader::didFinishLoading):
- workers/WorkerScriptLoader.h:
- xml/XMLHttpRequest.cpp: (WebCore::XMLHttpRequest::didFinishLoading):
- xml/XMLHttpRequest.h:
- 8:03 PM Changeset in webkit [78781] by
-
- 2 edits in trunk/Source/WebCore
2011-02-16 Jeremy Orlow <jorlow@chromium.org>
Fix uninitialized memory error.
- storage/IDBDatabaseBackendImpl.cpp: (WebCore::IDBDatabaseBackendImpl::close):
- 8:00 PM Changeset in webkit [78780] by
-
- 5 edits in trunk
2011-02-16 Adam Barth <abarth@webkit.org>
Reviewed by Eric Seidel.
Fix xssAuditor/form-action.html
https://bugs.webkit.org/show_bug.cgi?id=54590
Update expected results to show that we pass.
- http/tests/security/xssAuditor/form-action-expected.txt:
2011-02-16 Adam Barth <abarth@webkit.org>
Reviewed by Eric Seidel.
Fix xssAuditor/form-action.html
https://bugs.webkit.org/show_bug.cgi?id=54590
We should block form actions. Although this technically can't be used
to run script, it's a pretty easy vector for stealing passwords.
- html/parser/XSSFilter.cpp: (WebCore::XSSFilter::filterTokenInitial): (WebCore::XSSFilter::filterFormToken):
- html/parser/XSSFilter.h:
- 7:48 PM Changeset in webkit [78779] by
-
- 2 edits in trunk/Tools
2011-02-16 Eric Seidel <eric@webkit.org>
Reviewed by Mihai Parparita.
flaky test archive uploads are always 22 bytes long
https://bugs.webkit.org/show_bug.cgi?id=54593
Speculative fix for the 22-bytes bug.
- Scripts/webkitpy/tool/bot/flakytestreporter.py:
- 7:41 PM Changeset in webkit [78778] by
-
- 143 edits2 moves in trunk
2011-02-16 Anna Cavender <annacc@chromium.org>
Reviewed by Mihai Parparita.
http/tests/media should be served over HTTP (not from local file)
https://bugs.webkit.org/show_bug.cgi?id=54028
Removed special file:// treatment of http/tests/media
Moved media-file.js and video-tests.js to http/tests/media so local server can access them.
Update tests to point to new location of javascript libraries.
- http/tests/media/media-file.js: Renamed from LayoutTests/media/media-file.js.
- http/tests/media/pdf-served-as-pdf.html:
- http/tests/media/reload-after-dialog.html:
- http/tests/media/remove-while-loading.html:
- http/tests/media/text-served-as-text.html:
- http/tests/media/video-buffered.html:
- http/tests/media/video-cancel-load.html:
- http/tests/media/video-cookie.html:
- http/tests/media/video-error-abort.html:
- http/tests/media/video-load-twice.html:
- http/tests/media/video-play-stall-seek.html:
- http/tests/media/video-play-stall.html:
- http/tests/media/video-play-suspend.html:
- http/tests/media/video-referer.html:
- http/tests/media/video-seekable-stall.html:
- http/tests/media/video-served-as-text.html:
- http/tests/media/video-test.js: Renamed from LayoutTests/media/video-test.js.
- media/adopt-node-crash.html:
- media/audio-constructor-preload.html:
- media/audio-constructor-src.html:
- media/audio-constructor.html:
- media/audio-controls-rendering.html:
- media/audio-data-url.html:
- media/audio-delete-while-slider-thumb-clicked.html:
- media/audio-delete-while-step-button-clicked.html:
- media/audio-mpeg-supported.html:
- media/audio-mpeg4-supported.html:
- media/audio-play-event.html:
- media/before-load-member-access.html:
- media/broken-video.html:
- media/constructors.html:
- media/context-menu-actions.html:
- media/controls-after-reload.html:
- media/controls-css-overload.html:
- media/controls-drag-timebar.html:
- media/controls-right-click-on-timebar.html:
- media/controls-strict.html:
- media/controls-styling.html:
- media/controls-without-preload.html:
- media/event-attributes.html:
- media/invalid-media-url-crash.html:
- media/media-can-play-mpeg-audio.html:
- media/media-can-play-mpeg4-video.html:
- media/media-can-play-octet-stream.html:
- media/media-can-play-ogg.html:
- media/media-can-play-wav-audio.html:
- media/media-captions.html:
- media/media-constants.html:
- media/media-fullscreen-inline.html:
- media/media-fullscreen-not-in-document.html:
- media/media-load-event.html:
- media/media-startTime.html:
- media/remove-from-document-no-load.html:
- media/remove-from-document.html:
- media/restore-from-page-cache.html:
- media/unsupported-rtsp.html:
- media/unsupported-tracks.html:
- media/video-append-source.html:
- media/video-aspect-ratio.html:
- media/video-autoplay.html:
- media/video-buffered.html:
- media/video-can-play-type.html:
- media/video-canvas-alpha.html:
- media/video-canvas-source.html:
- media/video-canvas.html-disabled:
- media/video-click-dblckick-standalone.html:
- media/video-controls-rendering.html:
- media/video-controls-transformed.html:
- media/video-controls-visible-audio-only.html:
- media/video-controls-zoomed.html:
- media/video-controls.html:
- media/video-currentTime-delay.html:
- media/video-currentTime-set.html:
- media/video-currentTime-set2.html:
- media/video-currentTime.html:
- media/video-delay-load-event.html:
- media/video-display-aspect-ratio.html:
- media/video-display-none-crash.html:
- media/video-display-toggle.html:
- media/video-does-not-loop.html:
- media/video-dom-autoplay.html:
- media/video-dom-preload.html:
- media/video-dom-src.html:
- media/video-duration-known-after-eos.html:
- media/video-error-does-not-exist.html:
- media/video-frame-accurate-seek.html:
- media/video-layer-crash.html:
- media/video-load-networkState.html:
- media/video-load-readyState.html:
- media/video-loop.html:
- media/video-muted.html:
- media/video-no-audio.html:
- media/video-no-autoplay.html:
- media/video-pause-empty-events.html:
- media/video-pause-immediately.html:
- media/video-play-empty-events.html:
- media/video-play-pause-events.html:
- media/video-play-pause-exception.html:
- media/video-played-collapse.html:
- media/video-played-ranges-1.html:
- media/video-played-reset.html:
- media/video-poster-delayed.html:
- media/video-poster-scale.html:
- media/video-poster.html:
- media/video-preload.html:
- media/video-replaces-poster.html:
- media/video-reverse-play-duration.html:
- media/video-seek-by-small-increment.html:
- media/video-seek-no-src-exception.html:
- media/video-seek-past-end-paused.html:
- media/video-seek-past-end-playing.html:
- media/video-seekable.html:
- media/video-seeking.html:
- media/video-size-intrinsic-scale.html:
- media/video-size.html:
- media/video-source-error-no-candidate.html:
- media/video-source-error.html:
- media/video-source-inserted.html:
- media/video-source-media.html:
- media/video-source-moved.html:
- media/video-source-none-supported.html:
- media/video-source-removed.html:
- media/video-source-type-params.html:
- media/video-source-type.html:
- media/video-source.html:
- media/video-src-change.html:
- media/video-src-invalid-remove.html:
- media/video-src-none.html:
- media/video-src-plus-source.html:
- media/video-src-remove.html:
- media/video-src-set.html:
- media/video-src-source.html:
- media/video-src.html:
- media/video-timeupdate-during-playback.html:
- media/video-timeupdate-reverse-play.html:
- media/video-transformed.html:
- media/video-volume-slider.html:
- media/video-volume.html:
- media/video-width-height.html:
- media/video-zoom-controls.html:
- media/video-zoom.html:
2011-02-16 Anna Cavender <annacc@chromium.org>
Reviewed by Mihai Parparita.
http/tests/media should be served over HTTP (not from local file)
https://bugs.webkit.org/show_bug.cgi?id=54028
Removed special file:// treatment of http/tests/media
- Scripts/old-run-webkit-tests:
- Scripts/webkitpy/layout_tests/port/base.py:
- 7:39 PM Changeset in webkit [78777] by
-
- 3 edits in trunk/Tools
2011-02-16 Mihai Parparita <mihaip@chromium.org>
Reviewed by Ojan Vafai.
ChangeLog.parse_latest_entry_from_file does not handle rolled over ChangeLogs
https://bugs.webkit.org/show_bug.cgi?id=54609
r78737 rolled over ChangeLogs, and webkit-patch complains when landing
patches such as this one that are the first to add an entry to the
ChangeLog (since they don't see a second date line to know where the
entry ends).
- Scripts/webkitpy/common/checkout/changelog.py:
- Scripts/webkitpy/common/checkout/changelog_unittest.py:
- 7:05 PM Changeset in webkit [78776] by
-
- 2 edits25 adds in trunk/LayoutTests
2011-02-16 Adam Barth <abarth@webkit.org>
Reviewed by Daniel Bates.
Import XSSAuditor tests from David Ross
https://bugs.webkit.org/show_bug.cgi?id=54576
Many of these tests pass, but some of them fail as well. I'll fix the
failing tests in followup patches.
- http/tests/security/xssAuditor/cookie-injection-expected.txt: Added.
- http/tests/security/xssAuditor/cookie-injection.html: Added.
- We're fine here.
- http/tests/security/xssAuditor/form-action-expected.txt: Added.
- http/tests/security/xssAuditor/form-action.html: Added.
- We need to filter form actions. Previously, we considered this issue out of scope, but we should be able to handle it.
- http/tests/security/xssAuditor/iframe-injection-expected.txt: Added.
- http/tests/security/xssAuditor/iframe-injection.html: Added.
- We need to filter iframe src attributes. Previously, we considered this issue out of scope, but we should be able to handle it.
- http/tests/security/xssAuditor/iframe-javascript-url-more-encoding-expected.txt: Added.
- http/tests/security/xssAuditor/iframe-javascript-url-more-encoding.html: Added.
- We're fine here.
- http/tests/security/xssAuditor/javascript-link-one-plus-one-expected.txt: Added.
- http/tests/security/xssAuditor/javascript-link-one-plus-one.html: Added.
- We're fine here.
- http/tests/security/xssAuditor/open-attribute-body-expected.txt: Added.
- http/tests/security/xssAuditor/open-attribute-body.html: Added.
- http/tests/security/xssAuditor/open-event-handler-iframe-expected.txt: Added.
- http/tests/security/xssAuditor/open-event-handler-iframe.html: Added.
- http/tests/security/xssAuditor/open-iframe-src-expected.txt: Added.
- http/tests/security/xssAuditor/open-iframe-src.html: Added.
- http/tests/security/xssAuditor/open-script-src-expected.txt: Added.
- http/tests/security/xssAuditor/open-script-src.html: Added.
- These are all the same class of issue. Now that we've re-designed the filter, we should be able to address this issue.
- http/tests/security/xssAuditor/resources/echo-inspan.pl: Added.
- http/tests/security/xssAuditor/resources/echo-intertag.pl:
- Tests infrastructure improvements.
- http/tests/security/xssAuditor/script-tag-with-fancy-unicode-expected.txt: Added.
- http/tests/security/xssAuditor/script-tag-with-fancy-unicode.html: Added.
- I'm not sure what's going on here. Requires futher investigation.
- http/tests/security/xssAuditor/script-tag-with-invalid-url-encoding-expected.txt: Added.
- http/tests/security/xssAuditor/script-tag-with-invalid-url-encoding.html: Added.
- We're fine here.
- http/tests/security/xssAuditor/script-tag-with-source-data-url-expected.txt: Added.
- http/tests/security/xssAuditor/script-tag-with-source-data-url.html: Added.
- We're fine here.
- 7:02 PM Changeset in webkit [78775] by
-
- 3 edits2 adds in trunk
2011-02-16 Abhishek Arya <inferno@chromium.org>
Reviewed by James Robinson.
Remove the early bail added in r75823 since we can run into anonymous
blocks when traversing the parents chain for clearing floats.
https://bugs.webkit.org/show_bug.cgi?id=54601
removeFloatingOrPositionedChildFromBlockLists tries to find the topmost
parent containing "this" block and then tries to remove it from its floats
list and mark all descendants blocks for layout. I added a bailout condition
in r75823 because we thought that if one of the parent render block does not
contain "this" float, then it is safe to assume that none of the grand parents
will have it. This is a wrong assumption since anonymous blocks do not have
float objects and we need to go higher in the chain to find the top most parent
containing this float. Instead of breaking out of the loop, it is ok to keep
traversing the chain till we find that parent. Otherwise, we will leave deleted
floats in the grand parents floats list.
Test: fast/block/float/floats-not-cleared-from-grand-parents.html
- rendering/RenderBox.cpp: (WebCore::RenderBox::removeFloatingOrPositionedChildFromBlockLists):
2011-02-16 Abhishek Arya <inferno@chromium.org>
Reviewed by James Robinson.
Tests that we do not crash when floats are not cleared in cases where parents
chain has anonymous blocks.
https://bugs.webkit.org/show_bug.cgi?id=54601
- fast/block/float/floats-not-cleared-from-grand-parents-expected.txt: Added.
- fast/block/float/floats-not-cleared-from-grand-parents.html: Added.
- 6:54 PM Changeset in webkit [78774] by
-
- 2 edits in trunk/LayoutTests
2011-02-16 James Robinson <jamesr@chromium.org>
Fix typo in chromium test_expectations - there is no WINDOWS (just WIN)
- platform/chromium/test_expectations.txt:
- 6:52 PM Changeset in webkit [78773] by
-
- 10 edits in trunk
2011-02-16 Andreas Kling <kling@webkit.org>
Reviewed by Ryosuke Niwa.
Editing styles should not emit #RRGGBBAA colors
https://bugs.webkit.org/show_bug.cgi?id=54540
- editing/ApplyStyleCommand.cpp: (WebCore::StyleChange::extractTextStyles): Use Color::serialized() instead of Color::nameForRenderTreeAsText().
2011-02-16 Andreas Kling <kling@webkit.org>
Reviewed by Ryosuke Niwa.
Editing styles should not emit #RRGGBBAA colors
https://bugs.webkit.org/show_bug.cgi?id=54540
Added a test to editing/style/inline-style-container.html
that would cause invalid #RRGGBBAA output with the previous code.
- editing/execCommand/delete-image-in-anchor-expected.txt:
- editing/execCommand/script-tests/toggle-unlink.js:
- editing/execCommand/toggle-unlink-expected.txt:
- editing/style/fore-color-by-name-expected.txt:
- editing/style/inline-style-container-expected.txt:
- editing/style/script-tests/inline-style-container.js:
- editing/style/style-text-node-without-editable-parent-expected.txt:
- 6:51 PM Changeset in webkit [78772] by
-
- 2 edits in trunk/LayoutTests
2011-02-16 Martin Robinson <mrobinson@igalia.com>
Update the GTK+ skipped list. Skip some SVG tests that now expose rounding
errors. Unskip a test which should have been unskipped by r78614. Skip
Acid2 tests, as they are currently failing on GTK+.
- platform/gtk/Skipped: Update the skipped list.
- 6:44 PM Changeset in webkit [78771] by
-
- 11 edits1 add in trunk/LayoutTests
2011-02-16 James Robinson <jamesr@chromium.org>
Update chromium baselines for 78751.
- platform/chromium-linux/svg/W3C-SVG-1.1/masking-path-05-f-expected.checksum:
- platform/chromium-linux/svg/W3C-SVG-1.1/masking-path-05-f-expected.png:
- platform/chromium-linux/svg/W3C-SVG-1.1/masking-path-05-f-expected.txt: Added.
- platform/chromium-linux/svg/clip-path/clip-path-clipped-evenodd-twice-expected.checksum:
- platform/chromium-linux/svg/clip-path/clip-path-clipped-evenodd-twice-expected.png:
- platform/chromium-win/svg/W3C-SVG-1.1/masking-path-05-f-expected.checksum:
- platform/chromium-win/svg/W3C-SVG-1.1/masking-path-05-f-expected.png:
- platform/chromium-win/svg/W3C-SVG-1.1/masking-path-05-f-expected.txt:
- platform/chromium-win/svg/clip-path/clip-path-clipped-evenodd-twice-expected.checksum:
- platform/chromium-win/svg/clip-path/clip-path-clipped-evenodd-twice-expected.png:
- platform/chromium/test_expectations.txt:
- 6:44 PM Changeset in webkit [78770] by
-
- 2 edits in branches/safari-534.20-branch/Source/WebCore
Merge r78687.
- 6:39 PM Changeset in webkit [78769] by
-
- 16 edits in branches/safari-534.20-branch/Source/WebKit2
Merge r78676.
- 6:39 PM Changeset in webkit [78768] by
-
- 11 edits in branches/safari-534.20-branch/Source/WebKit2
Merge r78663.
- 6:38 PM Changeset in webkit [78767] by
-
- 14 edits1 copy1 add in branches/safari-534.20-branch/Source/WebKit2
Merge r78647.
- 6:38 PM Changeset in webkit [78766] by
-
- 2 edits in branches/safari-534.20-branch/Source/WebKit2
Merge r78638.
- 6:38 PM Changeset in webkit [78765] by
-
- 9 edits2 adds in branches/safari-534.20-branch/Source/WebKit2
Merge r78633.
- 6:37 PM Changeset in webkit [78764] by
-
- 3 edits in branches/safari-534.20-branch/Source/WebKit2
Merge r78611.
- 6:37 PM Changeset in webkit [78763] by
-
- 4 edits in branches/safari-534.20-branch/Source/WebCore
Merge r78604.
- 6:37 PM Changeset in webkit [78762] by
-
- 2 edits in branches/safari-534.20-branch/Source/WebKit2
Merge r78730.
- 6:32 PM Changeset in webkit [78761] by
-
- 9 edits in trunk/Source/WebCore
2011-02-16 Ryosuke Niwa <rniwa@webkit.org>
Reviewed by Kent Tamura.
Improve showTree of Range, Position, and VisiblePosition
https://bugs.webkit.org/show_bug.cgi?id=54536
Enhanced showTree of Range, Position, and VisiblePosition.
- dom/Position.cpp: (WebCore::Position::showAnchorTypeAndOffset): Added; dumps "legacy" if the position is a legacy position and also dumps anchor type. (WebCore::Position::showTreeForThis): Calls showAnchorTypeAndOffset.
- dom/Position.h:
- dom/Range.cpp: (showTree): No longer calls deprecatedEditingOffset.
- editing/VisiblePosition.cpp: (WebCore::VisiblePosition::debugPosition): No longer included in release build. Calls Position::showAnchorTypeAndOffset instead of manually calling deprecatedEditingOffset.
- editing/VisiblePosition.h:
- editing/VisibleSelection.cpp: (WebCore::VisibleSelection::debugPosition): Ditto. (WebCore::VisibleSelection::showTreeForThis): Ditto.
- editing/VisibleSelection.h:
- page/EventHandler.cpp:
- 6:32 PM Changeset in webkit [78760] by
-
- 2 edits2 deletes in trunk/LayoutTests
Unreviewed, Chromium expectations update.
Removed duplicate expected results, update some test expectations.
- platform/chromium-mac/svg/clip-path/clip-path-clipped-evenodd-twice-expected.checksum: Removed.
- platform/chromium-mac/svg/clip-path/clip-path-clipped-evenodd-twice-expected.png: Removed.
- platform/chromium/test_expectations.txt:
- 6:28 PM Changeset in webkit [78759] by
-
- 2 edits in trunk/Source/WebCore
2011-02-16 David Grogan <dgrogan@chromium.org>
Reviewed by Jeremy Orlow.
fix compile error introduced in 78752
https://bugs.webkit.org/show_bug.cgi?id=54604
- storage/IDBRequest.h:
- 6:20 PM Changeset in webkit [78758] by
-
- 11 edits in trunk/Source
2011-02-16 Jeremy Orlow <jorlow@chromium.org>
Back out IndexedDB change thats no longer necessary
https://bugs.webkit.org/show_bug.cgi?id=54603
Backing out 78645 as it turns out that it's not necessary.
- storage/IDBFactoryBackendImpl.cpp: (WebCore::IDBFactoryBackendImpl::open):
- storage/IDBFactoryBackendImpl.h:
- storage/IDBFactoryBackendInterface.h:
2011-02-16 Jeremy Orlow <jorlow@chromium.org>
Back out IndexedDB change thats no longer necessary
https://bugs.webkit.org/show_bug.cgi?id=54603
Backing out 78645 as it turns out that it's not necessary.
- public/WebIDBFactory.h: (WebKit::WebIDBFactory::open):
- src/AssertMatchingEnums.cpp:
- src/IDBFactoryBackendProxy.cpp:
- src/IDBFactoryBackendProxy.h:
- src/WebIDBFactoryImpl.cpp: (WebKit::WebIDBFactoryImpl::open):
- src/WebIDBFactoryImpl.h:
- 5:39 PM Changeset in webkit [78757] by
-
- 3 edits in branches/safari-534.20-branch/Source/WebCore
Merge r78616.
- 5:26 PM Changeset in webkit [78756] by
-
- 2 edits in trunk/LayoutTests
2011-02-16 Kenneth Russell <kbr@google.com>
Unreviewed. Skip recently added tests for adjusting minimum timer
interval per page due to absence of
LayoutTestController.setMinimumTimerInterval.
- platform/mac-wk2/Skipped:
- 5:20 PM Changeset in webkit [78755] by
-
- 2 edits228 adds in trunk/LayoutTests
2011-02-16 Martin Robinson <mrobinson@igalia.com>
Add the next set of GTK+ baselines for the Mozilla tables test suite.
- platform/gtk/Skipped: Unskip tests which now have results.
- 5:10 PM Changeset in webkit [78754] by
-
- 2 edits in trunk/Source/WebCore
2011-02-16 Brian Salomon <bsalomon@google.com>
Reviewed by James Robinson.
Skia's gpu backed just needs the correct context bound before drawing. It will bind the correct FBO itself and doing so externally confuses it unless resetContext is called.
No new tests required.
- platform/graphics/skia/PlatformContextSkia.cpp: (WebCore::PlatformContextSkia::syncSoftwareCanvas):
- 5:08 PM Changeset in webkit [78753] by
-
- 2 edits in trunk/Source/WebCore
2011-02-16 Mike Reed <reed@google.com>
Reviewed by Kenneth Russell.
Use non-asserting pack function for decoding images, since webgl may want
a non-premultiplied version of the image.
https://bugs.webkit.org/show_bug.cgi?id=54023
No new tests.
fast/canvas/webgl/gl-teximage.html
fast/canvas/webgl/tex-image-with-format-and-type.html
fast/canvas/webgl/texture-transparent-pixels-initialized.html
- platform/image-decoders/ImageDecoder.h: (WebCore::ImageFrame::setRGBA):
- 4:55 PM Changeset in webkit [78752] by
-
- 26 edits5 copies5 adds in trunk
2011-02-16 David Grogan <dgrogan@chromium.org>
Reviewed by Jeremy Orlow.
indexeddb: make setVersion fire blocked event if other connections are open
https://bugs.webkit.org/show_bug.cgi?id=53728
Tests: storage/indexeddb/set_version_blocked.html
storage/indexeddb/set_version_queue.html
- WebCore.gypi:
- bindings/js/JSEventCustom.cpp: (WebCore::toJS):
- bindings/v8/custom/V8EventCustom.cpp: (WebCore::toV8):
- dom/Event.cpp: (WebCore::Event::isIDBVersionChangeEvent):
- dom/Event.h:
- dom/EventNames.h:
- dom/EventTarget.cpp: (WebCore::EventTarget::toIDBVersionChangeRequest):
- dom/EventTarget.h:
- storage/IDBCallbacks.h:
- storage/IDBDatabase.cpp: (WebCore::IDBDatabase::setVersion): (WebCore::IDBDatabase::close):
- storage/IDBDatabase.h:
- storage/IDBDatabase.idl:
- storage/IDBDatabaseBackendImpl.cpp: (WebCore::IDBDatabaseBackendImpl::PendingSetVersionCall::create): (WebCore::IDBDatabaseBackendImpl::PendingSetVersionCall::version): (WebCore::IDBDatabaseBackendImpl::PendingSetVersionCall::callbacks): (WebCore::IDBDatabaseBackendImpl::PendingSetVersionCall::PendingSetVersionCall): (WebCore::IDBDatabaseBackendImpl::IDBDatabaseBackendImpl): (WebCore::IDBDatabaseBackendImpl::setVersion): (WebCore::IDBDatabaseBackendImpl::open): (WebCore::IDBDatabaseBackendImpl::close):
- storage/IDBDatabaseBackendImpl.h:
- storage/IDBDatabaseBackendInterface.h:
- storage/IDBFactoryBackendImpl.cpp: (WebCore::IDBFactoryBackendImpl::open):
- storage/IDBRequest.cpp: (WebCore::IDBRequest::onBlocked): (WebCore::IDBRequest::dispatchEvent): (WebCore::IDBRequest::source):
- storage/IDBRequest.h:
- storage/IDBVersionChangeEvent.cpp: Copied from Source/WebKit/chromium/src/WebIDBCallbacksImpl.h. (WebCore::IDBVersionChangeEvent::create): (WebCore::IDBVersionChangeEvent::IDBVersionChangeEvent): (WebCore::IDBVersionChangeEvent::~IDBVersionChangeEvent): (WebCore::IDBVersionChangeEvent::version):
- storage/IDBVersionChangeEvent.h: Copied from Source/WebKit/chromium/src/WebIDBCallbacksImpl.h. (WebCore::IDBVersionChangeEvent::isIDBVersionChangeEvent):
- storage/IDBVersionChangeEvent.idl: Added.
- storage/IDBVersionChangeRequest.cpp: Copied from Source/WebKit/chromium/src/WebIDBCallbacksImpl.h. (WebCore::IDBVersionChangeRequest::create): (WebCore::IDBVersionChangeRequest::IDBVersionChangeRequest): (WebCore::IDBVersionChangeRequest::~IDBVersionChangeRequest): (WebCore::IDBVersionChangeRequest::onBlocked):
- storage/IDBVersionChangeRequest.h: Copied from Source/WebKit/chromium/src/WebIDBCallbacksImpl.h.
- storage/IDBVersionChangeRequest.idl: Copied from Source/WebKit/chromium/src/WebIDBCallbacksImpl.h.
- 4:50 PM Changeset in webkit [78751] by
-
- 2 edits in trunk/Source/WebCore
2011-02-16 Robin Cao <robin.cao@torchmobile.com.cn>
Reviewed by James Robinson.
PlatformContextSkia::applyAntiAliasedClipPaths does not work for paths which have evenOdd property
https://bugs.webkit.org/show_bug.cgi?id=54336
We need to take fill type of paths into account when drawing them.
No new tests, covered by svg/W3C-SVG-1.1/masking-path-05-f.svg.
- platform/graphics/skia/PlatformContextSkia.cpp: (WebCore::PlatformContextSkia::applyAntiAliasedClipPaths):
- 4:50 PM Changeset in webkit [78750] by
-
- 2 edits225 adds in trunk/LayoutTests
2011-02-16 Martin Robinson <mrobinson@igalia.com>
Add the next set of GTK+ Mozilla test suite results.
- platform/gtk/Skipped: Unskip tests that now have results.
- 4:50 PM Changeset in webkit [78749] by
-
- 4 edits in trunk/Source/WebKit/gtk
2011-02-16 Joone Hur <joone.hur@collabora.co.uk>
Reviewed by Xan Lopez.
[GTK] Match more various WebKit API enum values with WebCore enum values
https://bugs.webkit.org/show_bug.cgi?id=54352
AssertMatchingEnums.cpp was added to assert that various WebKit API enum values
continue matching WebCore defined enum values in the following changeset.
http://trac.webkit.org/changeset/77868
However, there are already enum values that have been asserted in other files,
so these assert macros defined need to be moved to AssertMatchingEnum.cpp.
- WebCoreSupport/AssertMatchingEnums.cpp: Add more enum values to be asserted.
- webkit/webkitwebnavigationaction.cpp: (webkit_web_navigation_action_class_init): Move the assert macros of WEBKIT_WEB_NAVIGATION_REASON_* to AssertMatchingEnums.cpp.
- webkit/webkitwebsettings.cpp: (webkit_web_settings_class_init): Move the assert macros of WEBKIT_EDITING_BEHAVIOR_* to AssertMatchingEnums.cpp.
- 4:35 PM Changeset in webkit [78748] by
-
- 2 edits225 adds in trunk/LayoutTests
2011-02-16 Martin Robinson <mrobinson@igalia.com>
Add another group of GTK+ Mozilla test results.
- platform/gtk/Skipped: Unskip tests which now have results.
- 4:31 PM Changeset in webkit [78747] by
-
- 3 edits3 adds in trunk
2011-02-16 Eric Seidel <eric@webkit.org>
Reviewed by Adam Barth.
REGRESSION (r61234): washingtonpost.com top bar looks wrong, doesn't animate
https://bugs.webkit.org/show_bug.cgi?id=53717
- http/tests/local/absolute-url-strip-whitespace-expected.txt: Added.
- http/tests/local/absolute-url-strip-whitespace.html: Added.
- http/tests/resources/absolute-url-strip-whitespace.js: Added.
2011-02-16 Eric Seidel <eric@webkit.org>
Reviewed by Adam Barth.
REGRESSION (r61234): washingtonpost.com top bar looks wrong, doesn't animate
https://bugs.webkit.org/show_bug.cgi?id=53717
Test: http/tests/local/absolute-url-strip-whitespace.html
This was theoretically tested already in fast/url, however the
tests were disabled due to lack of any clean way to test absolute
url parsing in JavaScript. I added a test which mimics the sites
behavior using our local http server. There seems to be no other
way to test this at the moment.
- platform/KURL.cpp:
(WebCore::shouldTrimFromURL):
- Any char 0-20 should be removed (matches google-url and other browsers).
(WebCore::KURL::init):
- 4:24 PM Changeset in webkit [78746] by
-
- 2 edits150 adds in trunk/LayoutTests
2011-02-16 Martin Robinson <mrobinson@igalia.com>
Add another batch of GTK+ Mozilla test suite results.
- platform/gtk/Skipped: Unskip tests which now have results.
- 4:05 PM Changeset in webkit [78745] by
-
- 2 edits150 adds in trunk/LayoutTests
2011-02-16 Martin Robinson <mrobinson@igalia.com>
Add another group of GTK+ Mozilla test suite baselines.
- platform/gtk/Skipped: Unskip tests that now have baselines.
- 4:00 PM Changeset in webkit [78744] by
-
- 3 edits2 adds in trunk
2011-02-16 Abhishek Arya <inferno@chromium.org>
Reviewed by James Robinson.
Tests that we do not crash when finding the text fragment for a first letter.
https://bugs.webkit.org/show_bug.cgi?id=54568
- fast/css/first-letter-text-fragment-crash-expected.txt: Added.
- fast/css/first-letter-text-fragment-crash.html: Added.
2011-02-16 Abhishek Arya <inferno@chromium.org>
Reviewed by James Robinson.
Traverse the next sibling tree to find the text fragment for a first letter.
https://bugs.webkit.org/show_bug.cgi?id=54568
We cannot assume that the next sibling to the first letter will a text fragment
since there can be intermediatary Apple-style-span inline elements wrapping the
text fragment. So, we traverse the next sibling tree to find it.
Test: fast/css/first-letter-text-fragment-crash.html
- rendering/RenderBlock.cpp: (WebCore::RenderBlock::updateFirstLetter):
- 3:57 PM Changeset in webkit [78743] by
-
- 2 edits in trunk/Source/WebCore
2011-02-16 Martin Robinson <mrobinson@igalia.com>
Reviewed by Xan Lopez.
[GTK] r78718 introduced some assertion failures in some HTTP tests
https://bugs.webkit.org/show_bug.cgi?id=54592
No new tests. This fix is covered by tests that are currently failing.
- platform/network/soup/ResourceRequestSoup.cpp: (WebCore::ResourceRequest::updateFromSoupMessage): Instead of setting the existing headers and then selectively removing ones that do not exist in the updated soup message, just remove all headers from the map first.
- 3:54 PM Changeset in webkit [78742] by
-
- 2 edits150 adds in trunk/LayoutTests
2011-02-16 Martin Robinson <mrobinson@igalia.com>
Add the next batch of GTK+ Mozilla test results.
- platform/gtk/Skipped: Unskip tests which now have results.
- 3:37 PM Changeset in webkit [78741] by
-
- 2 edits in trunk/LayoutTests
2011-02-16 Martin Robinson <mrobinson@igalia.com>
Rebaseline media/controls-without-preload.html after r78695.
- media/controls-without-preload-expected.txt: Rebaselined.
- 3:17 PM Changeset in webkit [78740] by
-
- 2 edits8 adds in trunk/LayoutTests
Unreviewed, Chromium expectations update.
https://bugs.webkit.org/show_bug.cgi?id=54579
Add expectations for where V8 passes tests JSC doesn't, or merely has
different errors; mark other failing tests with a V8 tracking bug.
- platform/chromium/fast/js/mozilla: Added.
- platform/chromium/fast/js/mozilla/strict: Added.
- platform/chromium/fast/js/mozilla/strict/11.1.5-expected.txt: Added.
- platform/chromium/fast/js/mozilla/strict/12.14.1-expected.txt: Added.
- platform/chromium/fast/js/mozilla/strict/13.1-expected.txt: Added.
- platform/chromium/fast/js/mozilla/strict/15.3.4.5-expected.txt: Added.
- platform/chromium/fast/js/mozilla/strict/15.3.5.2-expected.txt: Added.
- platform/chromium/fast/js/mozilla/strict/regress-532254-expected.txt: Added.
- platform/chromium/test_expectations.txt:
- 3:08 PM Changeset in webkit [78739] by
-
- 2 edits in trunk/LayoutTests
2011-02-16 Mihai Parparita <mihaip@chromium.org>
Unreviewed chromium-gpu expectations update. Add more tests that fail
because of bug 54409.
- platform/chromium/test_expectations.txt:
- 2:46 PM Changeset in webkit [78738] by
-
- 5 edits in trunk
[V8] DataView constructor can be applied as a regular method
https://bugs.webkit.org/show_bug.cgi?id=54563
Reviewed by Kenneth Russell.
Source/WebCore:
Tested by adding a new test case to fast/canvas/webgl/data-view-test.html.
- bindings/v8/custom/V8DataViewCustom.cpp:
(WebCore::V8DataView::constructorCallback):
LayoutTests:
Added a new test case.
- fast/canvas/webgl/data-view-test-expected.txt:
- fast/canvas/webgl/data-view-test.html:
- 2:30 PM Changeset in webkit [78737] by
-
- 7 edits7 copies in trunk
Roll over some ChangeLogs.
- 2:25 PM Changeset in webkit [78736] by
-
- 2 edits152 adds in trunk/LayoutTests
2011-02-16 Martin Robinson <mrobinson@igalia.com>
Begin adding GTK+ baselines for Mozilla test suites.
- platform/gtk/Skipped: Unskip tests which now have results.
- 2:21 PM Changeset in webkit [78735] by
-
- 3 edits in branches/chromium/648/Source/WebCore/dom
Fix compile on Chromium 648 branch
- 1:52 PM Changeset in webkit [78734] by
-
- 2 edits2 deletes in trunk/LayoutTests
Unreviewed, Chromium test expectations update.
Remove a mac-leopard expectation since the Chromium Mac 10.5 bots at
least seem to be generating results that match the platform/mac images.
- platform/chromium/test_expectations.txt:
- platform/mac-leopard/fast/forms/select-empty-option-height-expected.checksum: Removed.
- platform/mac-leopard/fast/forms/select-empty-option-height-expected.png: Removed.
- 1:48 PM Changeset in webkit [78733] by
-
- 9 edits4 copies in branches/chromium/648
Merge 78648 - 2011-02-15 James Robinson <jamesr@chromium.org>
Reviewed by Alexey Proskuryakov.
requestAnimationFrame callbacks should not fire within a modal dialog
https://bugs.webkit.org/show_bug.cgi?id=53188
Tests that requestAnimationFrame callbacks are suspended while a modal
dialog is showing.
- fast/animation/request-animation-frame-during-modal-expected.txt: Added.
- fast/animation/request-animation-frame-during-modal.html: Added.
2011-02-15 James Robinson <jamesr@chromium.org>
Reviewed by Alexey Proskuryakov.
requestAnimationFrame callbacks should not fire within a modal dialog
https://bugs.webkit.org/show_bug.cgi?id=53188
requestAnimationFrame callbacks shouldn't fire while a modal dialog is up (like a window.alert()).
This matches Firefox and other async APIs. This patch moves the callback servicing into its own
controller class which receives notifications on suspend/resume.
Test: fast/animation/request-animation-frame-during-modal.html
- WebCore.gypi:
- bindings/js/ScriptDebugServer.cpp: (WebCore::ScriptDebugServer::setJavaScriptPaused):
- dom/Document.cpp: (WebCore::Document::Document): (WebCore::Document::suspendScriptedAnimationControllerCallbacks): (WebCore::Document::resumeScriptedAnimationControllerCallbacks): (WebCore::Document::webkitRequestAnimationFrame): (WebCore::Document::webkitCancelRequestAnimationFrame): (WebCore::Document::serviceScriptedAnimations):
- dom/Document.h:
- dom/ScriptExecutionContext.h: (WebCore::ScriptExecutionContext::suspendScriptedAnimationControllerCallbacks): (WebCore::ScriptExecutionContext::resumeScriptedAnimationControllerCallbacks):
- dom/ScriptedAnimationController.cpp: Added. (WebCore::ScriptedAnimationController::ScriptedAnimationController): (WebCore::ScriptedAnimationController::suspend): (WebCore::ScriptedAnimationController::resume): (WebCore::ScriptedAnimationController::registerCallback): (WebCore::ScriptedAnimationController::cancelCallback): (WebCore::ScriptedAnimationController::serviceScriptedAnimations):
- dom/ScriptedAnimationController.h: Added. (WebCore::ScriptedAnimationController::create):
- history/CachedFrame.cpp: (WebCore::CachedFrameBase::restore): (WebCore::CachedFrame::CachedFrame):
- page/PageGroupLoadDeferrer.cpp: (WebCore::PageGroupLoadDeferrer::PageGroupLoadDeferrer): (WebCore::PageGroupLoadDeferrer::~PageGroupLoadDeferrer):
TBR=jamesr@google.com
Review URL: http://codereview.chromium.org/6537003
- 1:35 PM Changeset in webkit [78732] by
-
- 55 edits in trunk/Source
Bug 54524 - Allow JSObject to fully utilize cell's capacity for inline storage.
Reviewed by Geoff Garen.
Currently JSObject is both directly instantiated for regular JS objects, and
derived to implement subtypes. A consequence of this is that we need to ensure
that sufficient space from the cell is left unused and available for any data
members that will be introduced by subclasses of JSObject. By restructuring
the internal storage array out of JSObject we can increase the size in the
internal storage for regular objects.
Add classes JSFinalObject and JSNonFinalObject. JSNonFinalObject retains as
much additional capacity as is currently available to allow for data members
in subclasses. JSFinalObject utilizes all available space for internal storage,
and only allows construction through JSFinalObject::create().
Source/JavaScriptCore:
The additional storage made available in the JSObject means that we need no
longer rely on a union of the internal storage with a pointer to storage that
is only valid for external storage. This means we can go back to always having
a valid pointer to property storage, regardless of whether this is internal or
external. This simplifies some cases of access to the array from C code, and
significantly simplifies JIT access, since repatching no longer needs to be
able to change between a load of the storage pointer / a LEA of the internal
storage.
- API/JSObjectRef.cpp:
(JSObjectMake):
- assembler/ARMAssembler.h:
- assembler/ARMv7Assembler.h:
- assembler/AbstractMacroAssembler.h:
(JSC::AbstractMacroAssembler::repatchPointer):
- assembler/MIPSAssembler.h:
- assembler/MacroAssemblerARM.h:
- assembler/MacroAssemblerARMv7.h:
- assembler/MacroAssemblerMIPS.h:
- assembler/MacroAssemblerX86.h:
- assembler/MacroAssemblerX86_64.h:
- assembler/RepatchBuffer.h:
- assembler/X86Assembler.h:
- debugger/DebuggerActivation.cpp:
(JSC::DebuggerActivation::DebuggerActivation):
- debugger/DebuggerActivation.h:
- interpreter/Interpreter.cpp:
(JSC::Interpreter::privateExecute):
- jit/JIT.h:
- jit/JITOpcodes.cpp:
(JSC::JIT::emit_op_resolve_global):
- jit/JITOpcodes32_64.cpp:
(JSC::JIT::emit_op_resolve_global):
- jit/JITPropertyAccess.cpp:
(JSC::JIT::compileGetDirectOffset):
(JSC::JIT::emit_op_get_by_pname):
(JSC::JIT::compileGetByIdHotPath):
(JSC::JIT::emit_op_put_by_id):
(JSC::JIT::compilePutDirectOffset):
(JSC::JIT::patchGetByIdSelf):
(JSC::JIT::patchPutByIdReplace):
(JSC::JIT::privateCompileGetByIdProto):
(JSC::JIT::privateCompileGetByIdSelfList):
(JSC::JIT::privateCompileGetByIdProtoList):
(JSC::JIT::privateCompileGetByIdChainList):
(JSC::JIT::privateCompileGetByIdChain):
- jit/JITPropertyAccess32_64.cpp:
(JSC::JIT::compileGetByIdHotPath):
(JSC::JIT::emit_op_put_by_id):
(JSC::JIT::compilePutDirectOffset):
(JSC::JIT::compileGetDirectOffset):
(JSC::JIT::patchGetByIdSelf):
(JSC::JIT::patchPutByIdReplace):
(JSC::JIT::privateCompileGetByIdProto):
(JSC::JIT::privateCompileGetByIdSelfList):
(JSC::JIT::privateCompileGetByIdProtoList):
(JSC::JIT::privateCompileGetByIdChainList):
(JSC::JIT::privateCompileGetByIdChain):
(JSC::JIT::emit_op_get_by_pname):
- jit/JITStubs.cpp:
(JSC::DEFINE_STUB_FUNCTION):
- runtime/Arguments.h:
(JSC::Arguments::Arguments):
- runtime/ErrorInstance.cpp:
(JSC::ErrorInstance::ErrorInstance):
- runtime/ErrorInstance.h:
- runtime/ExceptionHelpers.cpp:
(JSC::InterruptedExecutionError::InterruptedExecutionError):
(JSC::TerminatedExecutionError::TerminatedExecutionError):
- runtime/JSArray.cpp:
(JSC::JSArray::JSArray):
- runtime/JSArray.h:
- runtime/JSByteArray.cpp:
(JSC::JSByteArray::JSByteArray):
- runtime/JSByteArray.h:
(JSC::JSByteArray::JSByteArray):
- runtime/JSFunction.cpp:
(JSC::JSFunction::getOwnPropertySlot):
- runtime/JSGlobalData.cpp:
(JSC::JSGlobalData::JSGlobalData):
- runtime/JSGlobalObject.h:
(JSC::constructEmptyObject):
- runtime/JSNotAnObject.h:
(JSC::JSNotAnObject::JSNotAnObject):
- runtime/JSObject.cpp:
(JSC::JSObject::createInheritorID):
(JSC::JSObject::allocatePropertyStorage):
- runtime/JSObject.h:
(JSC::JSObject::propertyStorage):
(JSC::JSNonFinalObject::JSNonFinalObject):
(JSC::JSNonFinalObject::createStructure):
(JSC::JSFinalObject::create):
(JSC::JSFinalObject::createStructure):
(JSC::JSFinalObject::JSFinalObject):
(JSC::JSObject::offsetOfInlineStorage):
(JSC::constructEmptyObject):
(JSC::createEmptyObjectStructure):
(JSC::JSObject::JSObject):
(JSC::JSObject::~JSObject):
(JSC::Structure::isUsingInlineStorage):
- runtime/JSObjectWithGlobalObject.cpp:
(JSC::JSObjectWithGlobalObject::JSObjectWithGlobalObject):
- runtime/JSObjectWithGlobalObject.h:
(JSC::JSObjectWithGlobalObject::JSObjectWithGlobalObject):
- runtime/JSTypeInfo.h:
(JSC::TypeInfo::TypeInfo):
(JSC::TypeInfo::isVanilla):
- runtime/JSVariableObject.h:
(JSC::JSVariableObject::JSVariableObject):
- runtime/JSWrapperObject.h:
(JSC::JSWrapperObject::JSWrapperObject):
- runtime/ObjectConstructor.cpp:
(JSC::constructObject):
- runtime/ObjectPrototype.cpp:
(JSC::ObjectPrototype::ObjectPrototype):
- runtime/ObjectPrototype.h:
- runtime/StrictEvalActivation.cpp:
(JSC::StrictEvalActivation::StrictEvalActivation):
- runtime/StrictEvalActivation.h:
- runtime/Structure.cpp:
(JSC::Structure::Structure):
(JSC::Structure::growPropertyStorageCapacity):
Source/JavaScriptGlue:
- UserObjectImp.cpp:
- UserObjectImp.h:
Update JSObject -> JSNonFinalObject.
Source/WebCore:
- bindings/js/JSDOMWindowShell.h:
Update JSObject -> JSNonFinalObject.
- 1:26 PM Changeset in webkit [78731] by
-
- 1 edit196 adds in trunk/LayoutTests
2011-02-16 Oliver Hunt <oliver@apple.com>
Reviewed by Geoffrey Garen.
Import some mozilla js strict mode regression tests
https://bugs.webkit.org/show_bug.cgi?id=54579
Add a bunch of the mozilla strict mode tests, the majority of the tests pass.
Those that fail fall into two categories
- Tests for features we haven't implemented
- Tests that test behaviour of arrays and arguments with non-writable properties
- fast/js/mozilla/eval/exhaustive-fun-normalcaller-direct-normalcode-expected.txt: Added.
- fast/js/mozilla/eval/exhaustive-fun-normalcaller-direct-normalcode.html: Added.
- fast/js/mozilla/eval/exhaustive-fun-normalcaller-direct-strictcode-expected.txt: Added.
- fast/js/mozilla/eval/exhaustive-fun-normalcaller-direct-strictcode.html: Added.
- fast/js/mozilla/eval/exhaustive-fun-normalcaller-indirect-normalcode-expected.txt: Added.
- fast/js/mozilla/eval/exhaustive-fun-normalcaller-indirect-normalcode.html: Added.
- fast/js/mozilla/eval/exhaustive-fun-normalcaller-indirect-strictcode-expected.txt: Added.
- fast/js/mozilla/eval/exhaustive-fun-normalcaller-indirect-strictcode.html: Added.
- fast/js/mozilla/eval/exhaustive-fun-strictcaller-direct-normalcode-expected.txt: Added.
- fast/js/mozilla/eval/exhaustive-fun-strictcaller-direct-normalcode.html: Added.
- fast/js/mozilla/eval/exhaustive-fun-strictcaller-direct-strictcode-expected.txt: Added.
- fast/js/mozilla/eval/exhaustive-fun-strictcaller-direct-strictcode.html: Added.
- fast/js/mozilla/eval/exhaustive-fun-strictcaller-indirect-normalcode-expected.txt: Added.
- fast/js/mozilla/eval/exhaustive-fun-strictcaller-indirect-normalcode.html: Added.
- fast/js/mozilla/eval/exhaustive-fun-strictcaller-indirect-strictcode-expected.txt: Added.
- fast/js/mozilla/eval/exhaustive-fun-strictcaller-indirect-strictcode.html: Added.
- fast/js/mozilla/eval/exhaustive-global-normalcaller-direct-normalcode-expected.txt: Added.
- fast/js/mozilla/eval/exhaustive-global-normalcaller-direct-normalcode.html: Added.
- fast/js/mozilla/eval/exhaustive-global-normalcaller-direct-strictcode-expected.txt: Added.
- fast/js/mozilla/eval/exhaustive-global-normalcaller-direct-strictcode.html: Added.
- fast/js/mozilla/eval/exhaustive-global-normalcaller-indirect-normalcode-expected.txt: Added.
- fast/js/mozilla/eval/exhaustive-global-normalcaller-indirect-normalcode.html: Added.
- fast/js/mozilla/eval/exhaustive-global-normalcaller-indirect-strictcode-expected.txt: Added.
- fast/js/mozilla/eval/exhaustive-global-normalcaller-indirect-strictcode.html: Added.
- fast/js/mozilla/eval/exhaustive-global-strictcaller-direct-normalcode-expected.txt: Added.
- fast/js/mozilla/eval/exhaustive-global-strictcaller-direct-normalcode.html: Added.
- fast/js/mozilla/eval/exhaustive-global-strictcaller-direct-strictcode-expected.txt: Added.
- fast/js/mozilla/eval/exhaustive-global-strictcaller-direct-strictcode.html: Added.
- fast/js/mozilla/eval/exhaustive-global-strictcaller-indirect-normalcode-expected.txt: Added.
- fast/js/mozilla/eval/exhaustive-global-strictcaller-indirect-normalcode.html: Added.
- fast/js/mozilla/eval/exhaustive-global-strictcaller-indirect-strictcode-expected.txt: Added.
- fast/js/mozilla/eval/exhaustive-global-strictcaller-indirect-strictcode.html: Added.
- fast/js/mozilla/eval/script-tests/TEMPLATE.html: Added.
- fast/js/mozilla/eval/script-tests/exhaustive-fun-normalcaller-direct-normalcode.js: Added.
- fast/js/mozilla/eval/script-tests/exhaustive-fun-normalcaller-direct-strictcode.js: Added.
- fast/js/mozilla/eval/script-tests/exhaustive-fun-normalcaller-indirect-normalcode.js: Added.
- fast/js/mozilla/eval/script-tests/exhaustive-fun-normalcaller-indirect-strictcode.js: Added.
- fast/js/mozilla/eval/script-tests/exhaustive-fun-strictcaller-direct-normalcode.js: Added.
- fast/js/mozilla/eval/script-tests/exhaustive-fun-strictcaller-direct-strictcode.js: Added.
- fast/js/mozilla/eval/script-tests/exhaustive-fun-strictcaller-indirect-normalcode.js: Added.
- fast/js/mozilla/eval/script-tests/exhaustive-fun-strictcaller-indirect-strictcode.js: Added.
- fast/js/mozilla/eval/script-tests/exhaustive-global-normalcaller-direct-normalcode.js: Added.
- fast/js/mozilla/eval/script-tests/exhaustive-global-normalcaller-direct-strictcode.js: Added.
- fast/js/mozilla/eval/script-tests/exhaustive-global-normalcaller-indirect-normalcode.js: Added.
- fast/js/mozilla/eval/script-tests/exhaustive-global-normalcaller-indirect-strictcode.js: Added.
- fast/js/mozilla/eval/script-tests/exhaustive-global-strictcaller-direct-normalcode.js: Added.
- fast/js/mozilla/eval/script-tests/exhaustive-global-strictcaller-direct-strictcode.js: Added.
- fast/js/mozilla/eval/script-tests/exhaustive-global-strictcaller-indirect-normalcode.js: Added.
- fast/js/mozilla/eval/script-tests/exhaustive-global-strictcaller-indirect-strictcode.js: Added.
- fast/js/mozilla/eval/script-tests/undeclared-name-in-nested-strict-eval.js: Added.
- fast/js/mozilla/eval/undeclared-name-in-nested-strict-eval-expected.txt: Added.
- fast/js/mozilla/eval/undeclared-name-in-nested-strict-eval.html: Added.
- fast/js/mozilla/resources/js-test-post-async.js: Added.
- fast/js/mozilla/resources/js-test-post-function.js: Added.
- fast/js/mozilla/resources/js-test-post-n.js: Added.
- fast/js/mozilla/resources/js-test-post.js: Added.
- fast/js/mozilla/resources/js-test-pre.js: Added.
- fast/js/mozilla/resources/js-test-style.css: Added.
- fast/js/mozilla/resources/mozilla-es5-shell.js: Added.
- fast/js/mozilla/resources/mozilla-shell.js: Added.
- fast/js/mozilla/strict/10.4.2-expected.txt: Added.
- fast/js/mozilla/strict/10.4.2.html: Added.
- fast/js/mozilla/strict/10.4.3-expected.txt: Added.
- fast/js/mozilla/strict/10.4.3.html: Added.
- fast/js/mozilla/strict/10.6-expected.txt: Added.
- fast/js/mozilla/strict/10.6.html: Added.
- fast/js/mozilla/strict/11.1.5-expected.txt: Added.
- fast/js/mozilla/strict/11.1.5.html: Added.
- fast/js/mozilla/strict/11.13.1-expected.txt: Added.
- fast/js/mozilla/strict/11.13.1.html: Added.
- fast/js/mozilla/strict/11.13.2-expected.txt: Added.
- fast/js/mozilla/strict/11.13.2.html: Added.
- fast/js/mozilla/strict/11.3.1-expected.txt: Added.
- fast/js/mozilla/strict/11.3.1.html: Added.
- fast/js/mozilla/strict/11.3.2-expected.txt: Added.
- fast/js/mozilla/strict/11.3.2.html: Added.
- fast/js/mozilla/strict/11.4.1-expected.txt: Added.
- fast/js/mozilla/strict/11.4.1.html: Added.
- fast/js/mozilla/strict/11.4.4-expected.txt: Added.
- fast/js/mozilla/strict/11.4.4.html: Added.
- fast/js/mozilla/strict/11.4.5-expected.txt: Added.
- fast/js/mozilla/strict/11.4.5.html: Added.
- fast/js/mozilla/strict/12.10.1-expected.txt: Added.
- fast/js/mozilla/strict/12.10.1.html: Added.
- fast/js/mozilla/strict/12.14.1-expected.txt: Added.
- fast/js/mozilla/strict/12.14.1.html: Added.
- fast/js/mozilla/strict/12.2.1-expected.txt: Added.
- fast/js/mozilla/strict/12.2.1.html: Added.
- fast/js/mozilla/strict/13.1-expected.txt: Added.
- fast/js/mozilla/strict/13.1.html: Added.
- fast/js/mozilla/strict/15.10.7-expected.txt: Added.
- fast/js/mozilla/strict/15.10.7.html: Added.
- fast/js/mozilla/strict/15.3.4.5-expected.txt: Added.
- fast/js/mozilla/strict/15.3.4.5.html: Added.
- fast/js/mozilla/strict/15.3.5.1-expected.txt: Added.
- fast/js/mozilla/strict/15.3.5.1.html: Added.
- fast/js/mozilla/strict/15.3.5.2-expected.txt: Added.
- fast/js/mozilla/strict/15.3.5.2.html: Added.
- fast/js/mozilla/strict/15.4.4.12-expected.txt: Added.
- fast/js/mozilla/strict/15.4.4.12.html: Added.
- fast/js/mozilla/strict/15.4.4.13-expected.txt: Added.
- fast/js/mozilla/strict/15.4.4.13.html: Added.
- fast/js/mozilla/strict/15.4.4.6-expected.txt: Added.
- fast/js/mozilla/strict/15.4.4.6.html: Added.
- fast/js/mozilla/strict/15.4.4.8-expected.txt: Added.
- fast/js/mozilla/strict/15.4.4.8.html: Added.
- fast/js/mozilla/strict/15.4.4.9-expected.txt: Added.
- fast/js/mozilla/strict/15.4.4.9.html: Added.
- fast/js/mozilla/strict/15.4.5.1-expected.txt: Added.
- fast/js/mozilla/strict/15.4.5.1.html: Added.
- fast/js/mozilla/strict/15.5.5.1-expected.txt: Added.
- fast/js/mozilla/strict/15.5.5.1.html: Added.
- fast/js/mozilla/strict/15.5.5.2-expected.txt: Added.
- fast/js/mozilla/strict/15.5.5.2.html: Added.
- fast/js/mozilla/strict/8.12.5-expected.txt: Added.
- fast/js/mozilla/strict/8.12.5.html: Added.
- fast/js/mozilla/strict/8.12.7-expected.txt: Added.
- fast/js/mozilla/strict/8.12.7.html: Added.
- fast/js/mozilla/strict/8.7.2-expected.txt: Added.
- fast/js/mozilla/strict/8.7.2.html: Added.
- fast/js/mozilla/strict/B.1.1-expected.txt: Added.
- fast/js/mozilla/strict/B.1.1.html: Added.
- fast/js/mozilla/strict/B.1.2-expected.txt: Added.
- fast/js/mozilla/strict/B.1.2.html: Added.
- fast/js/mozilla/strict/assign-to-callee-name-expected.txt: Added.
- fast/js/mozilla/strict/assign-to-callee-name.html: Added.
- fast/js/mozilla/strict/directive-prologue-01-expected.txt: Added.
- fast/js/mozilla/strict/directive-prologue-01.html: Added.
- fast/js/mozilla/strict/eval-variable-environment-expected.txt: Added.
- fast/js/mozilla/strict/eval-variable-environment.html: Added.
- fast/js/mozilla/strict/function-name-arity-expected.txt: Added.
- fast/js/mozilla/strict/function-name-arity.html: Added.
- fast/js/mozilla/strict/primitive-this-no-writeback-expected.txt: Added.
- fast/js/mozilla/strict/primitive-this-no-writeback.html: Added.
- fast/js/mozilla/strict/regress-532041-expected.txt: Added.
- fast/js/mozilla/strict/regress-532041.html: Added.
- fast/js/mozilla/strict/regress-532254-expected.txt: Added.
- fast/js/mozilla/strict/regress-532254.html: Added.
- fast/js/mozilla/strict/regress-599159-expected.txt: Added.
- fast/js/mozilla/strict/regress-599159.html: Added.
- fast/js/mozilla/strict/script-tests/10.4.2.js: Added.
- fast/js/mozilla/strict/script-tests/10.4.3.js: Added.
- fast/js/mozilla/strict/script-tests/10.6.js: Added.
- fast/js/mozilla/strict/script-tests/11.1.5.js: Added.
- fast/js/mozilla/strict/script-tests/11.13.1.js: Added.
- fast/js/mozilla/strict/script-tests/11.13.2.js: Added.
- fast/js/mozilla/strict/script-tests/11.3.1.js: Added.
- fast/js/mozilla/strict/script-tests/11.3.2.js: Added.
- fast/js/mozilla/strict/script-tests/11.4.1.js: Added.
- fast/js/mozilla/strict/script-tests/11.4.4.js: Added.
- fast/js/mozilla/strict/script-tests/11.4.5.js: Added.
- fast/js/mozilla/strict/script-tests/12.10.1.js: Added.
- fast/js/mozilla/strict/script-tests/12.14.1.js: Added.
- fast/js/mozilla/strict/script-tests/12.2.1.js: Added.
- fast/js/mozilla/strict/script-tests/13.1.js: Added.
- fast/js/mozilla/strict/script-tests/15.10.7.js: Added.
- fast/js/mozilla/strict/script-tests/15.3.4.5.js: Added.
- fast/js/mozilla/strict/script-tests/15.3.5.1.js: Added.
- fast/js/mozilla/strict/script-tests/15.3.5.2.js: Added.
- fast/js/mozilla/strict/script-tests/15.4.4.12.js: Added.
- fast/js/mozilla/strict/script-tests/15.4.4.13.js: Added.
- fast/js/mozilla/strict/script-tests/15.4.4.6.js: Added.
- fast/js/mozilla/strict/script-tests/15.4.4.8.js: Added.
- fast/js/mozilla/strict/script-tests/15.4.4.9.js: Added.
- fast/js/mozilla/strict/script-tests/15.4.5.1.js: Added.
- fast/js/mozilla/strict/script-tests/15.5.5.1.js: Added.
- fast/js/mozilla/strict/script-tests/15.5.5.2.js: Added.
- fast/js/mozilla/strict/script-tests/8.12.5.js: Added.
- fast/js/mozilla/strict/script-tests/8.12.7.js: Added.
- fast/js/mozilla/strict/script-tests/8.7.2.js: Added.
- fast/js/mozilla/strict/script-tests/B.1.1.js: Added.
- fast/js/mozilla/strict/script-tests/B.1.2.js: Added.
- fast/js/mozilla/strict/script-tests/TEMPLATE.html: Added.
- fast/js/mozilla/strict/script-tests/assign-to-callee-name.js: Added.
- fast/js/mozilla/strict/script-tests/directive-prologue-01.js: Added.
- fast/js/mozilla/strict/script-tests/eval-variable-environment.js: Added.
- fast/js/mozilla/strict/script-tests/function-name-arity.js: Added.
- fast/js/mozilla/strict/script-tests/primitive-this-no-writeback.js: Added.
- fast/js/mozilla/strict/script-tests/regress-532041.js: Added.
- fast/js/mozilla/strict/script-tests/regress-532254.js: Added.
- fast/js/mozilla/strict/script-tests/regress-599159.js: Added.
- fast/js/mozilla/strict/script-tests/strict-this-is-not-truthy.js: Added.
- fast/js/mozilla/strict/script-tests/this-for-function-expression-recursion.js: Added.
- fast/js/mozilla/strict/script-tests/unbrand-this.js: Added.
- fast/js/mozilla/strict/strict-this-is-not-truthy-expected.txt: Added.
- fast/js/mozilla/strict/strict-this-is-not-truthy.html: Added.
- fast/js/mozilla/strict/this-for-function-expression-recursion-expected.txt: Added.
- fast/js/mozilla/strict/this-for-function-expression-recursion.html: Added.
- fast/js/mozilla/strict/unbrand-this-expected.txt: Added.
- fast/js/mozilla/strict/unbrand-this.html: Added.
- 1:02 PM BuildingQtOnSymbian edited by
- (diff)
- 1:01 PM BuildingQtOnSymbian edited by
- (diff)
- 1:00 PM BuildingQtOnSymbian edited by
- (diff)
- 12:58 PM BuildingQtOnSymbian edited by
- added compiler support libraries step (diff)
- 12:50 PM Changeset in webkit [78730] by
-
- 2 edits in trunk/Source/WebKit2
2011-02-16 Anders Carlsson <andersca@apple.com>
Reviewed by Adam Roben.
Always disable the responsiveness timer when showing a popup menu
https://bugs.webkit.org/show_bug.cgi?id=54578
<rdar://problem/9009170>
- UIProcess/WebPageProxy.cpp: (WebKit::WebPageProxy::showPopupMenu):
- 12:38 PM Changeset in webkit [78729] by
-
- 9 edits2 adds in trunk
2011-02-16 Anders Carlsson <andersca@apple.com>
Reviewed by Adam Roben.
Assertion failure in DrawingAreaImpl::display when calling WKPageForceRepaint on a page that uses accelerated compositing
https://bugs.webkit.org/show_bug.cgi?id=54575
<rdar://problem/8979594>
Add test.
- TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
- TestWebKitAPI/Tests/WebKit2/ForceRepaint.cpp: Added. (TestWebKitAPI::didForceRepaint): (TestWebKitAPI::didFinishLoadForFrame): (TestWebKitAPI::TEST):
- TestWebKitAPI/Tests/WebKit2/simple-accelerated-compositing.html: Added.
- TestWebKitAPI/win/TestWebKitAPI.vcproj:
- TestWebKitAPI/win/copy-resources.cmd:
2011-02-16 Anders Carlsson <andersca@apple.com>
Reviewed by Adam Roben.
Assertion failure in DrawingAreaImpl::display when calling WKPageForceRepaint on a page that uses accelerated compositing
https://bugs.webkit.org/show_bug.cgi?id=54575
<rdar://problem/8979594>
- WebProcess/WebPage/DrawingAreaImpl.cpp: (WebKit::DrawingAreaImpl::forceRepaint): If there is a layer tree host, ask it to force a repaint instead.
- WebProcess/WebPage/LayerTreeHost.h:
- WebProcess/WebPage/mac/LayerTreeHostMac.h:
- WebProcess/WebPage/mac/LayerTreeHostMac.mm: (WebKit::LayerTreeHostMac::forceRepaint): Flush any layer changes, then flush and synchronize the current CA transaction.
- 12:01 PM Changeset in webkit [78728] by
-
- 3 edits2 adds in trunk
2011-02-16 Carol Szabo <carol.szabo@nokia.com>
Reviewed by David Hyatt.
REGRESSION: Use after free in WebCore::RenderCounter::destroyCounterNode
https://bugs.webkit.org/show_bug.cgi?id=54478
Test: fast/css/counters/render-tree-reorg-crash.html
- rendering/RenderCounter.cpp: (WebCore::findPlaceForCounter): Fixed typo. The code was still walking sometimes the renderer tree instead of the element tree as intended.
2011-02-16 Carol Szabo <carol.szabo@nokia.com>
Reviewed by David Hyatt.
REGRESSION: Use after free in WebCore::RenderCounter::destroyCounterNode
https://bugs.webkit.org/show_bug.cgi?id=54478
Added this test, to evidence a bug not previously caught by the
Layout tests.
- fast/css/counters/render-tree-reorg-crash-expected.txt: Added.
- fast/css/counters/render-tree-reorg-crash.html: Added.
- 11:31 AM Changeset in webkit [78727] by
-
- 7 edits in trunk
2011-02-16 Oliver Hunt <oliver@apple.com>
Reviewed by Geoff Garen.
Incorrect handling of global writes in dynamic contexts
https://bugs.webkit.org/show_bug.cgi?id=49383
Add a few tests to ensure that global writes are actually
allowed inside dynamic scopes.
- fast/js/basic-strict-mode-expected.txt:
- fast/js/script-tests/basic-strict-mode.js:
2011-02-16 Oliver Hunt <oliver@apple.com>
Reviewed by Geoff Garen.
Incorrect handling of global writes in dynamic contexts
https://bugs.webkit.org/show_bug.cgi?id=49383
- interpreter/Interpreter.cpp: (JSC::Interpreter::privateExecute): Can't use the existing callframe to return an uncaught exception as by definition that callframe has already been torn down.
- parser/ASTBuilder.h: (JSC::ASTBuilder::ASTBuilder): (JSC::ASTBuilder::varDeclarations): (JSC::ASTBuilder::funcDeclarations): (JSC::ASTBuilder::features): (JSC::ASTBuilder::numConstants): (JSC::ASTBuilder::createFuncDeclStatement): (JSC::ASTBuilder::addVar): (JSC::ASTBuilder::incConstants): (JSC::ASTBuilder::usesThis): (JSC::ASTBuilder::usesCatch): (JSC::ASTBuilder::usesClosures): (JSC::ASTBuilder::usesArguments): (JSC::ASTBuilder::usesAssignment): (JSC::ASTBuilder::usesWith): (JSC::ASTBuilder::usesEval): Don't need a vector of scopes in the ASTBuilder
- runtime/Operations.h: (JSC::resolveBase): In strict mode the optimisation that we use to skip a lookup on the global object is incorrect and lead to us always disallowing global writes when we needed to do a dynamic slot lookup. Now the strict mode path actually checks for the property.
- 11:13 AM Changeset in webkit [78726] by
-
- 2 edits in trunk/Source/WebKit2
Reviewed by Anders Carlsson.
https://bugs.webkit.org/show_bug.cgi?id=54572
REGRESSION (WebKit2): Print Backgrounds checkbox has no effect for DOM initiated printing
- UIProcess/WebPageProxy.cpp: (WebKit::WebPageProxy::preferencesDidChange): Preferences need to be propagated to Web process during synchronous printing.
- 10:48 AM Changeset in webkit [78725] by
-
- 4 adds in trunk/LayoutTests/platform/chromium-linux/svg
2011-02-16 Mikhail Naganov <mnaganov@chromium.org>
[Chromium] Unreviewed rebaseline of SVG tests expectations for Linux after r78720.
LayoutTests/platform/chromium-linux/svg/custom/circular-marker-reference-2-expected.txt
LayoutTests/platform/chromium-linux/svg/custom/non-circular-marker-reference-expected.txt
LayoutTests/platform/chromium-linux/svg/custom/non-scaling-stroke-markers-expected.txt
LayoutTests/platform/chromium-linux/svg/hixie/links/001-expected.txt
- 10:41 AM Changeset in webkit [78724] by
-
- 3 edits4 copies in branches/chromium/597
Merge 77724 - 2011-02-04 Hironori Bono <hbono@chromium.org>
Reviewed by Adam Barth.
[chromium] JPEG corruption
https://bugs.webkit.org/show_bug.cgi?id=53250
This change adds a new script test that we can render a CMYK JPEG with a
color profile correctly, i.e. we can render it without color corruption.
- fast/images/cmyk-jpeg-with-color-profile-expected.txt: Added.
- fast/images/cmyk-jpeg-with-color-profile.html: Added.
- fast/images/resources/cmyk-jpeg.jpg: Added.
- fast/images/script-tests/cmyk-jpeg-with-color-profile.js: Added. (image.onload):
2011-02-04 Hironori Bono <hbono@chromium.org>
Reviewed by Adam Barth.
[chromium] JPEG corruption
https://bugs.webkit.org/show_bug.cgi?id=53250
Same as gray-scale JPEGs, we convert the colors of CMYK JPEGs with color
profiles from CMYK to RGB twice and it causes color corruption. This
change suppresses the color profiles for CMYK JPEGs same as gray-scale
ones.
Test: fast/images/cmyk-jpeg-with-color-profile.html
- platform/image-decoders/jpeg/JPEGImageDecoder.cpp: (WebCore::JPEGImageReader::decode):
TBR=commit-queue@webkit.org
Review URL: http://codereview.chromium.org/6529057
- 10:33 AM Changeset in webkit [78723] by
-
- 1 edit14 adds in trunk/LayoutTests/platform
2011-02-16 Mikhail Naganov <mnaganov@chromium.org>
[Chromium] Unreviewed rebaseline of SVG tests expectations for Mac.
- 10:20 AM Changeset in webkit [78722] by
-
- 21 edits in trunk/LayoutTests
2011-02-16 Nikolas Zimmermann <nzimmermann@rim.com>
Not reviewed.
Pixel tests differences on 10.6.6 32bit vs. 64bit
https://bugs.webkit.org/show_bug.cgi?id=54474
Update gtk baseline using the 64bit debug bot - maybe we have another rounding problem on gtk. Let's see.
- platform/gtk/svg/W3C-SVG-1.1/coords-viewattr-01-b-expected.txt:
- platform/gtk/svg/W3C-SVG-1.1/painting-marker-03-f-expected.txt:
- platform/gtk/svg/W3C-SVG-1.1/struct-frag-02-t-expected.txt:
- platform/gtk/svg/W3C-SVG-1.1/struct-frag-03-t-expected.txt:
- platform/gtk/svg/custom/circular-marker-reference-1-expected.txt:
- platform/gtk/svg/custom/circular-marker-reference-3-expected.txt:
- platform/gtk/svg/custom/circular-marker-reference-4-expected.txt:
- platform/gtk/svg/custom/non-scaling-stroke-markers-expected.txt:
- platform/gtk/svg/custom/resource-invalidate-on-target-update-expected.txt:
- platform/gtk/svg/custom/stroked-pattern-expected.txt:
- platform/gtk/svg/custom/text-rotated-gradient-expected.txt:
- platform/gtk/svg/custom/use-css-events-expected.txt:
- platform/gtk/svg/custom/use-detach-expected.txt:
- platform/gtk/svg/filters/filterRes-expected.txt:
- platform/gtk/svg/hixie/links/001-expected.txt:
- platform/gtk/svg/hixie/viewbox/preserveAspectRatio/001-expected.txt:
- platform/gtk/svg/text/small-fonts-2-expected.txt:
- platform/gtk/svg/text/text-align-04-b-expected.txt:
- platform/gtk/svg/zoom/page/zoom-coords-viewattr-01-b-expected.txt:
- platform/gtk/svg/zoom/text/zoom-coords-viewattr-01-b-expected.txt:
- 10:13 AM Changeset in webkit [78721] by
-
- 18 edits in trunk
2011-02-16 Hans Wennborg <hans@chromium.org>
Reviewed by Jeremy Orlow.
IndexedDB: Inject auto increment keys via key path on insertion
https://bugs.webkit.org/show_bug.cgi?id=54457
Prepare to test injection of auto increment key. Keep it commented out
until implemented Chromium-side.
- storage/indexeddb/objectstore-autoincrement-expected.txt:
- storage/indexeddb/objectstore-autoincrement.html:
2011-02-16 Hans Wennborg <hans@chromium.org>
Reviewed by Jeremy Orlow.
IndexedDB: Inject auto increment keys via key path on insertion
https://bugs.webkit.org/show_bug.cgi?id=54457
Inject auto increment keys via key path for object stores using key
path and auto increment.
- bindings/v8/IDBBindingUtilities.cpp: (WebCore::LocalContext::getNthValueOnKeyPath): (WebCore::createIDBKeyFromSerializedValueAndKeyPath): (WebCore::injectIDBKeyIntoSerializedValue):
- bindings/v8/IDBBindingUtilities.h:
- platform/chromium/PlatformBridge.h:
- storage/IDBKeyPathBackendImpl.cpp: (IDBKeyPathBackendImpl::injectIDBKeyIntoSerializedValue):
- storage/IDBKeyPathBackendImpl.h:
- storage/IDBObjectStoreBackendImpl.cpp: (WebCore::injectKeyIntoKeyPath): (WebCore::IDBObjectStoreBackendImpl::selectKeyForPut): (WebCore::IDBObjectStoreBackendImpl::putInternal):
- storage/IDBObjectStoreBackendImpl.h:
- storage/chromium/IDBKeyPathBackendImpl.cpp: (WebCore::IDBKeyPathBackendImpl::injectIDBKeyIntoSerializedValue):
2011-02-16 Hans Wennborg <hans@chromium.org>
Reviewed by Jeremy Orlow.
IndexedDB: Inject auto increment keys via key path on insertion
https://bugs.webkit.org/show_bug.cgi?id=54457
Support for injecting keys into objects via key path.
- public/WebIDBKey.h:
- public/WebKitClient.h: (WebKit::WebKitClient::injectIDBKeyIntoSerializedValue):
- src/PlatformBridge.cpp: (WebCore::PlatformBridge::injectIDBKeyIntoSerializedValue):
- src/WebIDBKey.cpp: (WebKit::WebIDBKey::injectIDBKeyIntoSerializedValue):
- tests/IDBBindingUtilitiesTest.cpp: (WebCore::injectKey): (WebCore::checkInjection): (WebCore::checkInjectionFails): (WebCore::TEST):
- 9:59 AM Changeset in webkit [78720] by
-
- 12 edits12 adds in trunk/LayoutTests
2011-02-16 Nikolas Zimmermann <nzimmermann@rim.com>
Not reviewed.
Pixel tests differences on 10.6.6 32bit vs. 64bit
https://bugs.webkit.org/show_bug.cgi?id=54474
Update mac-leopard/win baselines. I rebaselined the wrong platforms in my last commit.
- platform/mac-leopard/svg/W3C-SVG-1.1/painting-marker-03-f-expected.txt:
- platform/mac-leopard/svg/W3C-SVG-1.1/struct-frag-02-t-expected.txt:
- platform/mac-leopard/svg/W3C-SVG-1.1/struct-frag-03-t-expected.txt:
- platform/mac-leopard/svg/custom/circular-marker-reference-2-expected.txt:
- platform/mac-leopard/svg/custom/non-circular-marker-reference-expected.txt:
- platform/mac-leopard/svg/custom/non-scaling-stroke-markers-expected.txt:
- platform/mac-leopard/svg/custom/stroked-pattern-expected.txt:
- platform/mac-leopard/svg/custom/text-rotated-gradient-expected.txt:
- platform/mac-leopard/svg/custom/use-detach-expected.txt:
- platform/mac-leopard/svg/hixie/links/001-expected.txt:
- platform/mac-leopard/svg/text/small-fonts-2-expected.txt:
- platform/win/svg/W3C-SVG-1.1/painting-marker-03-f-expected.txt: Added.
- platform/win/svg/W3C-SVG-1.1/struct-frag-02-t-expected.txt: Added.
- platform/win/svg/W3C-SVG-1.1/struct-frag-03-t-expected.txt: Added.
- platform/win/svg/custom/circular-marker-reference-2-expected.txt: Added.
- platform/win/svg/custom/non-circular-marker-reference-expected.txt: Added.
- platform/win/svg/custom/non-scaling-stroke-markers-expected.txt: Added.
- platform/win/svg/custom/stroked-pattern-expected.txt: Added.
- platform/win/svg/custom/text-rotated-gradient-expected.txt: Added.
- platform/win/svg/custom/use-detach-expected.txt: Added.
- platform/win/svg/hixie/links: Added.
- platform/win/svg/hixie/links/001-expected.txt: Added.
- platform/win/svg/text/small-fonts-2-expected.txt: Added.
- 9:48 AM Changeset in webkit [78719] by
-
- 9 adds in trunk/LayoutTests/platform/chromium-win-xp/svg
2011-02-16 Mikhail Naganov <mnaganov@chromium.org>
[Chromium] Unreviewed rebaseline of SVG tests expectations for Windows.
- 9:47 AM Changeset in webkit [78718] by
-
- 6 edits in trunk
2011-02-16 Sergio Villar Senin <svillar@igalia.com>
Reviewed by Martin Robinson.
[Gtk] Add support for layoutTestController.setWillSendRequestClearHeader
https://bugs.webkit.org/show_bug.cgi?id=54537
Unskipped http/tests/security/no-referrer.html.
- platform/gtk/Skipped:
2011-02-16 Sergio Villar Senin <svillar@igalia.com>
Reviewed by Martin Robinson.
[Gtk] Add support for layoutTestController.setWillSendRequestClearHeader
https://bugs.webkit.org/show_bug.cgi?id=54537
Headers removed from the SoupMessage should be also removed from
the ResourceRequest when updating the latter from the former.
- platform/network/soup/ResourceRequestSoup.cpp: (WebCore::ResourceRequest::updateFromSoupMessage):
2011-02-16 Sergio Villar Senin <svillar@igalia.com>
Reviewed by Martin Robinson.
[Gtk] Add support for layoutTestController.setWillSendRequestClearHeader
https://bugs.webkit.org/show_bug.cgi?id=54537
Added handler for resource-request-starting emitted in
FrameLoader's willSendRequest(). The current implementation
removes the headers set in setWillSendRequestClearHeader.
- DumpRenderTree/gtk/DumpRenderTree.cpp: (willSendRequestCallback): (createWebView):
- 9:17 AM Changeset in webkit [78717] by
-
- 50 edits in trunk
2011-02-16 Ilya Tikhonovsky <loislo@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: split all the functions of Inspector backend API by domain.
https://bugs.webkit.org/show_bug.cgi?id=54558
We have a number of functions from different domains in single instance of InspectorBackend.
It'd be better to split the functions by their domains.
As example 'evaluate' will be moved from InspectorBackend to RuntimeAgent container.
- http/tests/inspector/console-xhr-logging.html:
- http/tests/inspector/extensions-test.js: (initialize_ExtensionsTest.InspectorTest.runExtensionTests):
- http/tests/inspector/inspector-test.js: (initialize_InspectorTest.InspectorTest.completeTest): (initialize_InspectorTest.InspectorTest.evaluateInPage): (initialize_InspectorTest.InspectorTest.reloadPage):
- inspector/console/console-dir-global.html:
- inspector/debugger/debugger-autocontinue-on-syntax-error.html:
- inspector/debugger/debugger-pause-on-exception.html:
- inspector/elements/elements-panel-search.html:
- inspector/report-API-errors-expected.txt:
- inspector/report-API-errors.html:
- inspector/report-protocol-errors.html:
- inspector/styles/styles-new-API.html:
- inspector/styles/styles-source-offsets.html:
- inspector/timeline/timeline-network-resource.html:
- inspector/timeline/timeline-script-tag-1.html:
- inspector/timeline/timeline-script-tag-2.html:
- inspector/timeline/timeline-test.js: (initialize_Timeline.InspectorTest.performActionsAndPrint.step2):
- inspector/timeline/timeline-trivial.html:
2011-02-16 Ilya Tikhonovsky <loislo@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: split all the functions of Inspector backend API by domain.
https://bugs.webkit.org/show_bug.cgi?id=54558
We have a number of functions from different domains in single instance of InspectorBackend.
It'd be better to split the functions by their domains.
As example 'evaluate' will be moved from InspectorBackend to RuntimeAgent container.
- inspector/CodeGeneratorInspector.pm:
- inspector/front-end/AuditRules.js: (WebInspector.AuditRules.evaluateInTargetWindow): (WebInspector.AuditRules.UnusedCssRule.prototype.doRun):
- inspector/front-end/AuditsPanel.js: (WebInspector.AuditsPanel.prototype._reloadResources):
- inspector/front-end/BreakpointManager.js: (WebInspector.BreakpointManager.prototype._projectChanged): (WebInspector.BreakpointManager.prototype.restoreDOMBreakpoints): (WebInspector.BreakpointManager.prototype._saveBreakpoints): (WebInspector.DOMBreakpoint.prototype._enable): (WebInspector.DOMBreakpoint.prototype._disable): (WebInspector.EventListenerBreakpoint.prototype._enable): (WebInspector.EventListenerBreakpoint.prototype._disable): (WebInspector.XHRBreakpoint.prototype._enable): (WebInspector.XHRBreakpoint.prototype._disable):
- inspector/front-end/CSSStyleModel.js: (WebInspector.CSSStyleModel.prototype.getStylesAsync): (WebInspector.CSSStyleModel.prototype.getComputedStyleAsync): (WebInspector.CSSStyleModel.prototype.getInlineStyleAsync): (WebInspector.CSSStyleModel.prototype.setRuleSelector.callback): (WebInspector.CSSStyleModel.prototype.setRuleSelector): (WebInspector.CSSStyleModel.prototype.addRule.callback): (WebInspector.CSSStyleModel.prototype.addRule): (WebInspector.CSSStyleModel.prototype._styleSheetChanged): (WebInspector.CSSStyleModel.prototype._onRevert): (WebInspector.CSSStyleDeclaration.prototype.insertPropertyAt): (WebInspector.CSSProperty.prototype.setText): (WebInspector.CSSProperty.prototype.setDisabled): (WebInspector.CSSStyleSheet.createForId): (WebInspector.CSSStyleSheet.prototype.setText):
- inspector/front-end/ConsoleView.js: (WebInspector.ConsoleView.prototype.requestClearMessages): (WebInspector.ConsoleView.prototype.completions): (WebInspector.ConsoleView.prototype._handleContextMenuEvent.itemAction): (WebInspector.ConsoleView.prototype._handleContextMenuEvent): (WebInspector.ConsoleView.prototype.evalInInspectedWindow):
- inspector/front-end/CookieItemsView.js: (WebInspector.CookieItemsView.prototype._deleteCookie):
- inspector/front-end/DOMAgent.js: (WebInspector.DOMAgent.prototype.getChildNodesAsync): (WebInspector.DOMAgent.prototype.setAttributeAsync): (WebInspector.DOMAgent.prototype.removeAttributeAsync): (WebInspector.DOMAgent.prototype.setTextNodeValueAsync): (WebInspector.ApplicationCacheDispatcher.getApplicationCachesAsync): (WebInspector.Cookies.getCookiesAsync): (WebInspector.EventListeners.getEventListenersForNodeAsync):
- inspector/front-end/DOMStorage.js: (WebInspector.DOMStorage.prototype.getEntries): (WebInspector.DOMStorage.prototype.setItem): (WebInspector.DOMStorage.prototype.removeItem):
- inspector/front-end/Database.js: (WebInspector.Database.prototype.getTableNames): (WebInspector.Database.prototype.executeSql):
- inspector/front-end/DebuggerModel.js: (WebInspector.DebuggerModel.prototype.enableDebugger): (WebInspector.DebuggerModel.prototype.disableDebugger): (WebInspector.DebuggerModel.prototype.continueToLocation): (WebInspector.DebuggerModel.prototype.setBreakpoint): (WebInspector.DebuggerModel.prototype.setBreakpointBySourceId): (WebInspector.DebuggerModel.prototype.removeBreakpoint): (WebInspector.DebuggerModel.prototype.editScriptSource):
- inspector/front-end/ElementsPanel.js: (WebInspector.ElementsPanel.this.treeOutline.focusedNodeChanged): (WebInspector.ElementsPanel): (WebInspector.ElementsPanel.prototype.setDocument): (WebInspector.ElementsPanel.prototype.searchCanceled): (WebInspector.ElementsPanel.prototype.performSearch): (WebInspector.ElementsPanel.prototype.handleCopyEvent): (WebInspector.ElementsPanel.prototype.setSearchingForNode):
- inspector/front-end/ElementsTreeOutline.js: (WebInspector.ElementsTreeElement.prototype._createTooltipForNode): (WebInspector.ElementsTreeElement.prototype._tagNameEditingCommitted): ():
- inspector/front-end/ExtensionPanel.js: (WebInspector.ExtensionWatchSidebarPane.prototype.setExpression):
- inspector/front-end/ExtensionServer.js: (WebInspector.ExtensionServer.prototype._onAddRequestHeaders): (WebInspector.ExtensionServer.prototype._onReload): (WebInspector.ExtensionServer.prototype._onEvaluateOnInspectedPage):
- inspector/front-end/HeapSnapshotView.js: (WebInspector.HeapSnapshotProfileType.prototype.buttonClicked):
- inspector/front-end/NetworkManager.js: (WebInspector.NetworkManager): (WebInspector.NetworkManager.prototype.reset): (WebInspector.NetworkManager.prototype.requestContent):
- inspector/front-end/NetworkPanel.js: (WebInspector.NetworkDataGridNode.prototype._openInNewTab):
- inspector/front-end/ProfileView.js: (WebInspector.CPUProfileView): (WebInspector.CPUProfileType.prototype.buttonClicked):
- inspector/front-end/ProfilesPanel.js: (WebInspector.ProfilesPanel.prototype._clearProfiles): (WebInspector.ProfilesPanel.prototype._removeProfileHeader): (WebInspector.ProfilesPanel.prototype.loadHeapSnapshot): (WebInspector.ProfilesPanel.prototype._toggleProfiling): (WebInspector.ProfilesPanel.prototype.takeHeapSnapshot):
- inspector/front-end/PropertiesSidebarPane.js: (WebInspector.PropertiesSidebarPane.prototype.update):
- inspector/front-end/RemoteObject.js: (WebInspector.RemoteObject.resolveNode): (WebInspector.RemoteObject.prototype.getProperties): (WebInspector.RemoteObject.prototype.setPropertyValue): (WebInspector.RemoteObject.prototype.pushNodeToFrontend):
- inspector/front-end/ResourcesPanel.js: (WebInspector.FrameTreeElement.prototype.onselect): (WebInspector.FrameTreeElement.prototype.set hovered): (WebInspector.FrameResourceTreeElement.prototype.ondblclick):
- inspector/front-end/Script.js: (WebInspector.Script.prototype.requestSource):
- inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype.evaluateInSelectedCallFrame): (WebInspector.ScriptsPanel.prototype._setPauseOnExceptions): (WebInspector.ScriptsPanel.prototype._togglePause): (WebInspector.ScriptsPanel.prototype._stepOverClicked): (WebInspector.ScriptsPanel.prototype._stepIntoClicked): (WebInspector.ScriptsPanel.prototype._stepOutClicked): (WebInspector.ScriptsPanel.prototype.toggleBreakpointsClicked):
- inspector/front-end/SourceFrame.js: (WebInspector.SourceFrame.prototype._hidePopup):
- inspector/front-end/TestController.js: (WebInspector.TestController.prototype.notifyDone):
- inspector/front-end/TimelinePanel.js: (WebInspector.TimelinePanel.prototype._toggleTimelineButtonClicked):
- inspector/front-end/WatchExpressionsSidebarPane.js: (WebInspector.WatchExpressionsSection.prototype.update):
- inspector/front-end/WorkersSidebarPane.js: (WebInspector.WorkersSidebarPane.prototype.setInstrumentation):
- inspector/front-end/inspector.js: (WebInspector.highlightDOMNode): (WebInspector.doLoadedDone): (WebInspector.openResource): (WebInspector.documentKeyDown):
- 9:14 AM Changeset in webkit [78716] by
-
- 10 edits13 adds in trunk/LayoutTests
2011-02-16 Nikolas Zimmermann <nzimmermann@rim.com>
Not reviewed.
Pixel tests differences on 10.6.6 32bit vs. 64bit
https://bugs.webkit.org/show_bug.cgi?id=54474
Update gtk/win/mac-leopard baselines.
- platform/gtk/svg/custom/resource-invalidate-on-target-update-expected.txt:
- platform/gtk/svg/custom/use-css-events-expected.txt:
- platform/gtk/svg/filters/filterRes-expected.txt:
- platform/gtk/svg/text/text-align-04-b-expected.txt:
- platform/mac-leopard/svg/W3C-SVG-1.1/coords-viewattr-01-b-expected.txt: Added.
- platform/mac-leopard/svg/W3C-SVG-1.1/painting-marker-03-f-expected.txt: Added.
- platform/mac-leopard/svg/W3C-SVG-1.1/struct-frag-02-t-expected.txt: Added.
- platform/mac-leopard/svg/W3C-SVG-1.1/struct-frag-03-t-expected.txt: Added.
- platform/mac-leopard/svg/batik/masking/maskRegions-expected.txt:
- platform/mac-leopard/svg/custom/circular-marker-reference-2-expected.txt: Added.
- platform/mac-leopard/svg/custom/non-circular-marker-reference-expected.txt: Added.
- platform/mac-leopard/svg/custom/non-scaling-stroke-markers-expected.txt: Added.
- platform/mac-leopard/svg/custom/stroked-pattern-expected.txt: Added.
- platform/mac-leopard/svg/custom/text-rotated-gradient-expected.txt: Added.
- platform/mac-leopard/svg/custom/use-detach-expected.txt: Added.
- platform/mac-leopard/svg/hixie/links/001-expected.txt: Added.
- platform/mac-leopard/svg/hixie/viewbox/preserveAspectRatio/001-expected.txt:
- platform/mac-leopard/svg/zoom/page/zoom-coords-viewattr-01-b-expected.txt: Added.
- platform/mac-leopard/svg/zoom/page/zoom-mask-with-percentages-expected.txt:
- platform/mac-leopard/svg/zoom/text/zoom-coords-viewattr-01-b-expected.txt: Added.
- platform/win/svg/batik/masking/maskRegions-expected.txt:
- platform/win/svg/zoom/page/zoom-mask-with-percentages-expected.txt:
- 9:12 AM Changeset in webkit [78715] by
-
- 5 edits2 adds in trunk
2011-02-16 Mario Sanchez Prada <msanchez@igalia.com>
Reviewed by Martin Robinson.
[GTK] events missing when a document is (re)loaded
https://bugs.webkit.org/show_bug.cgi?id=25831
Added new layout test to check the right signals are emitted.
- platform/gtk/accessibility/document-reload-events-expected.txt: Added.
- platform/gtk/accessibility/document-reload-events.html: Added.
2011-02-16 Mario Sanchez Prada <msanchez@igalia.com>
Reviewed by Martin Robinson.
[GTK] events missing when a document is (re)loaded
https://bugs.webkit.org/show_bug.cgi?id=25831
Make sure webArea returns a proper name and that a signal
'state-change::defunct' is emitted when detaching the wrapper.
Test: platform/gtk/accessibility/document-reload-events.html
- accessibility/gtk/AccessibilityObjectWrapperAtk.cpp: (webkit_accessible_get_name): Returns the current document's title as fallback mechanism for webArea objects. (webkit_accessible_detach): Emit 'state-change::defunct' function as soon as the wrapper is detached from the related core object.
2011-02-16 Mario Sanchez Prada <msanchez@igalia.com>
Reviewed by Martin Robinson.
[GTK] events missing when a document is (re)loaded
https://bugs.webkit.org/show_bug.cgi?id=25831
Emit the right signals when reloading a document.
- WebCoreSupport/FrameLoaderClientGtk.cpp: (WebKit::notifyAccessibilityStatus): New function, to make sure the signals involved in reloading a document are properly emitted. (WebKit::notifyStatus): Also notify accessibility if enabled.
- 8:58 AM Changeset in webkit [78714] by
-
- 143 edits in trunk/LayoutTests
2011-02-16 Nikolas Zimmermann <nzimmermann@rim.com>
Reviewed by Dirk Schulze.
Pixel tests differences on 10.6.6 32bit vs. 64bit
https://bugs.webkit.org/show_bug.cgi?id=54474
Update SnowLeopard SVG pixel test baseline, generated on a 32bit machine, where it passes with tolerance 0.
This is the fifth and last chunk.
It should pass on modern 64bit machines as well, using tolerance 0.01.
- platform/mac/svg/filters/feOffset-expected.checksum:
- platform/mac/svg/filters/feOffset-expected.png:
- platform/mac/svg/filters/filter-clip-expected.checksum:
- platform/mac/svg/filters/filter-clip-expected.png:
- platform/mac/svg/filters/filterRes-expected.checksum:
- platform/mac/svg/filters/filterRes-expected.png:
- platform/mac/svg/hixie/cascade/002-expected.checksum:
- platform/mac/svg/hixie/cascade/002-expected.png:
- platform/mac/svg/hixie/error/017-expected.checksum:
- platform/mac/svg/hixie/error/017-expected.png:
- platform/mac/svg/hixie/links/003-broken-expected.checksum:
- platform/mac/svg/hixie/links/003-broken-expected.png:
- platform/mac/svg/hixie/mixed/003-expected.checksum:
- platform/mac/svg/hixie/mixed/003-expected.png:
- platform/mac/svg/hixie/mixed/004-expected.checksum:
- platform/mac/svg/hixie/mixed/004-expected.png:
- platform/mac/svg/hixie/mixed/005-expected.checksum:
- platform/mac/svg/hixie/mixed/005-expected.png:
- platform/mac/svg/hixie/mixed/006-expected.checksum:
- platform/mac/svg/hixie/mixed/006-expected.png:
- platform/mac/svg/hixie/mixed/008-expected.checksum:
- platform/mac/svg/hixie/mixed/008-expected.png:
- platform/mac/svg/hixie/mixed/011-expected.checksum:
- platform/mac/svg/hixie/mixed/011-expected.png:
- platform/mac/svg/hixie/perf/001-expected.checksum:
- platform/mac/svg/hixie/perf/001-expected.png:
- platform/mac/svg/hixie/perf/002-expected.checksum:
- platform/mac/svg/hixie/perf/002-expected.png:
- platform/mac/svg/hixie/perf/007-expected.checksum:
- platform/mac/svg/hixie/perf/007-expected.png:
- platform/mac/svg/hixie/transform/001-expected.checksum:
- platform/mac/svg/hixie/transform/001-expected.png:
- platform/mac/svg/hixie/viewbox/preserveAspectRatio/001-expected.checksum:
- platform/mac/svg/hixie/viewbox/preserveAspectRatio/001-expected.png:
- platform/mac/svg/text/font-size-below-point-five-2-expected.checksum:
- platform/mac/svg/text/font-size-below-point-five-2-expected.png:
- platform/mac/svg/text/scaled-font-expected.checksum:
- platform/mac/svg/text/scaled-font-expected.png:
- platform/mac/svg/text/select-textLength-spacing-squeeze-1-expected.checksum:
- platform/mac/svg/text/select-textLength-spacing-squeeze-1-expected.png:
- platform/mac/svg/text/select-textLength-spacing-squeeze-2-expected.checksum:
- platform/mac/svg/text/select-textLength-spacing-squeeze-2-expected.png:
- platform/mac/svg/text/select-textLength-spacing-squeeze-3-expected.checksum:
- platform/mac/svg/text/select-textLength-spacing-squeeze-3-expected.png:
- platform/mac/svg/text/select-textLength-spacing-squeeze-4-expected.checksum:
- platform/mac/svg/text/select-textLength-spacing-squeeze-4-expected.png:
- platform/mac/svg/text/select-textLength-spacing-stretch-1-expected.checksum:
- platform/mac/svg/text/select-textLength-spacing-stretch-1-expected.png:
- platform/mac/svg/text/select-textLength-spacing-stretch-2-expected.checksum:
- platform/mac/svg/text/select-textLength-spacing-stretch-2-expected.png:
- platform/mac/svg/text/select-textLength-spacing-stretch-3-expected.checksum:
- platform/mac/svg/text/select-textLength-spacing-stretch-3-expected.png:
- platform/mac/svg/text/select-textLength-spacing-stretch-4-expected.checksum:
- platform/mac/svg/text/select-textLength-spacing-stretch-4-expected.png:
- platform/mac/svg/text/select-textLength-spacingAndGlyphs-stretch-1-expected.checksum:
- platform/mac/svg/text/select-textLength-spacingAndGlyphs-stretch-1-expected.png:
- platform/mac/svg/text/select-textLength-spacingAndGlyphs-stretch-2-expected.checksum:
- platform/mac/svg/text/select-textLength-spacingAndGlyphs-stretch-2-expected.png:
- platform/mac/svg/text/select-textLength-spacingAndGlyphs-stretch-3-expected.checksum:
- platform/mac/svg/text/select-textLength-spacingAndGlyphs-stretch-3-expected.png:
- platform/mac/svg/text/select-textLength-spacingAndGlyphs-stretch-4-expected.checksum:
- platform/mac/svg/text/select-textLength-spacingAndGlyphs-stretch-4-expected.png:
- platform/mac/svg/text/select-x-list-3-expected.checksum:
- platform/mac/svg/text/select-x-list-3-expected.png:
- platform/mac/svg/text/selection-background-color-expected.checksum:
- platform/mac/svg/text/selection-background-color-expected.png:
- platform/mac/svg/text/selection-styles-expected.checksum:
- platform/mac/svg/text/selection-styles-expected.png:
- platform/mac/svg/text/small-fonts-2-expected.checksum:
- platform/mac/svg/text/small-fonts-2-expected.png:
- platform/mac/svg/text/small-fonts-3-expected.checksum:
- platform/mac/svg/text/small-fonts-3-expected.png:
- platform/mac/svg/text/small-fonts-expected.checksum:
- platform/mac/svg/text/small-fonts-expected.png:
- platform/mac/svg/text/small-fonts-in-html5-expected.checksum:
- platform/mac/svg/text/small-fonts-in-html5-expected.png:
- platform/mac/svg/text/text-align-01-b-expected.checksum:
- platform/mac/svg/text/text-align-01-b-expected.png:
- platform/mac/svg/text/text-align-02-b-expected.checksum:
- platform/mac/svg/text/text-align-02-b-expected.png:
- platform/mac/svg/text/text-align-03-b-expected.checksum:
- platform/mac/svg/text/text-align-03-b-expected.png:
- platform/mac/svg/text/text-align-04-b-expected.checksum:
- platform/mac/svg/text/text-align-04-b-expected.png:
- platform/mac/svg/text/text-align-05-b-expected.checksum:
- platform/mac/svg/text/text-align-05-b-expected.png:
- platform/mac/svg/text/text-align-06-b-expected.checksum:
- platform/mac/svg/text/text-align-06-b-expected.png:
- platform/mac/svg/text/text-altglyph-01-b-expected.checksum:
- platform/mac/svg/text/text-altglyph-01-b-expected.png:
- platform/mac/svg/text/text-deco-01-b-expected.checksum:
- platform/mac/svg/text/text-deco-01-b-expected.png:
- platform/mac/svg/text/text-fonts-01-t-expected.checksum:
- platform/mac/svg/text/text-fonts-01-t-expected.png:
- platform/mac/svg/text/text-fonts-02-t-expected.checksum:
- platform/mac/svg/text/text-fonts-02-t-expected.png:
- platform/mac/svg/text/text-intro-05-t-expected.checksum:
- platform/mac/svg/text/text-intro-05-t-expected.png:
- platform/mac/svg/text/text-path-01-b-expected.checksum:
- platform/mac/svg/text/text-path-01-b-expected.png:
- platform/mac/svg/text/text-text-01-b-expected.checksum:
- platform/mac/svg/text/text-text-01-b-expected.png:
- platform/mac/svg/text/text-text-03-b-expected.checksum:
- platform/mac/svg/text/text-text-03-b-expected.png:
- platform/mac/svg/text/text-text-04-t-expected.checksum:
- platform/mac/svg/text/text-text-04-t-expected.png:
- platform/mac/svg/text/text-text-05-t-expected.checksum:
- platform/mac/svg/text/text-text-05-t-expected.png:
- platform/mac/svg/text/text-text-06-t-expected.checksum:
- platform/mac/svg/text/text-text-06-t-expected.png:
- platform/mac/svg/text/text-text-07-t-expected.checksum:
- platform/mac/svg/text/text-text-07-t-expected.png:
- platform/mac/svg/text/text-text-08-b-expected.checksum:
- platform/mac/svg/text/text-text-08-b-expected.png:
- platform/mac/svg/text/text-tselect-01-b-expected.checksum:
- platform/mac/svg/text/text-tselect-01-b-expected.png:
- platform/mac/svg/text/text-tselect-02-f-expected.checksum:
- platform/mac/svg/text/text-tselect-02-f-expected.png:
- platform/mac/svg/text/text-tspan-01-b-expected.checksum:
- platform/mac/svg/text/text-tspan-01-b-expected.png:
- platform/mac/svg/text/text-ws-01-t-expected.checksum:
- platform/mac/svg/text/text-ws-01-t-expected.png:
- platform/mac/svg/text/text-ws-02-t-expected.checksum:
- platform/mac/svg/text/text-ws-02-t-expected.png:
- platform/mac/svg/transforms/animated-path-inside-transformed-html-expected.checksum:
- platform/mac/svg/transforms/animated-path-inside-transformed-html-expected.png:
- platform/mac/svg/transforms/text-with-mask-with-svg-transform-expected.checksum:
- platform/mac/svg/transforms/text-with-mask-with-svg-transform-expected.png:
- platform/mac/svg/transforms/text-with-pattern-inside-transformed-html-expected.checksum:
- platform/mac/svg/transforms/text-with-pattern-inside-transformed-html-expected.png:
- platform/mac/svg/transforms/text-with-pattern-with-svg-transform-expected.checksum:
- platform/mac/svg/transforms/text-with-pattern-with-svg-transform-expected.png:
- platform/mac/svg/webarchive/svg-feimage-subresources-expected.checksum:
- platform/mac/svg/webarchive/svg-feimage-subresources-expected.png:
- platform/mac/svg/zoom/page/zoom-foreignObject-expected.checksum:
- platform/mac/svg/zoom/page/zoom-foreignObject-expected.png:
- platform/mac/svg/zoom/page/zoom-hixie-mixed-008-expected.checksum:
- platform/mac/svg/zoom/page/zoom-hixie-mixed-008-expected.png:
- platform/mac/svg/zoom/page/zoom-mask-with-percentages-expected.checksum:
- platform/mac/svg/zoom/page/zoom-mask-with-percentages-expected.png:
- platform/mac/svg/zoom/text/zoom-hixie-mixed-008-expected.checksum:
- platform/mac/svg/zoom/text/zoom-hixie-mixed-008-expected.png:
- 8:58 AM Changeset in webkit [78713] by
-
- 1 edit in trunk/Source/WebCore/ChangeLog
Oops forgot to land the ChangeLog for r78704.
- 8:43 AM Changeset in webkit [78712] by
-
- 29 edits74 adds in trunk/LayoutTests/platform
2011-02-16 Mikhail Naganov <mnaganov@chromium.org>
[Chromium] Unreviewed rebaseline of SVG tests expectations.
- 8:41 AM Changeset in webkit [78711] by
-
- 137 edits in trunk/LayoutTests
2011-02-16 Nikolas Zimmermann <nzimmermann@rim.com>
Reviewed by Dirk Schulze.
Pixel tests differences on 10.6.6 32bit vs. 64bit
https://bugs.webkit.org/show_bug.cgi?id=54474
Update SnowLeopard SVG pixel test baseline, generated on a 32bit machine, where it passes with tolerance 0.
This is the fourth chunk.
It should pass on modern 64bit machines as well, using tolerance 0.01.
- platform/mac/svg/dynamic-updates/SVGEllipseElement-dom-cx-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGEllipseElement-dom-cx-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGEllipseElement-dom-cy-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGEllipseElement-dom-cy-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGEllipseElement-svgdom-cx-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGEllipseElement-svgdom-cx-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGEllipseElement-svgdom-cy-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGEllipseElement-svgdom-cy-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-in-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-in-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-in2-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-in2-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k1-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k1-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k2-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k2-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k3-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k3-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k4-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k4-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-operator-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-operator-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-in-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-in-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-in2-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-in2-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k1-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k1-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k2-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k2-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k3-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k3-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k4-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k4-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-operator-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-operator-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-bias-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-bias-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-divisor-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-divisor-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-edgeMode-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-edgeMode-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-in-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-in-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelMatrix-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelMatrix-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelUnitLength-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelUnitLength-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-order-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-order-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-preserveAlpha-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-preserveAlpha-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-targetX-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-targetX-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-targetY-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-targetY-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-bias-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-bias-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-divisor-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-divisor-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-edgeMode-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-edgeMode-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-in-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-in-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelMatrix-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelMatrix-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelUnitLength-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelUnitLength-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-order-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-order-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-preserveAlpha-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-preserveAlpha-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-targetX-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-targetX-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-targetY-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-targetY-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEMergeNodeElement-dom-in-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEMergeNodeElement-dom-in-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFEMergeNodeElement-svgdom-in-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFEMergeNodeElement-svgdom-in-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientTransform-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientTransform-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientUnits-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-gradientUnits-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-x1-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-x1-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-x2-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-x2-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-y1-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-y1-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-y2-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-dom-y2-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientTransform-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientTransform-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientUnits-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-gradientUnits-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x1-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x1-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x2-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x2-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y1-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y1-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y2-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGLinearGradientElement-svgdom-y2-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGMaskElement-dom-maskUnits-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGMaskElement-dom-maskUnits-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGMaskElement-svgdom-maskUnits-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGMaskElement-svgdom-maskUnits-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-cx-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-cx-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-cy-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-cy-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-fx-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-fx-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-fy-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-fy-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientTransform-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientTransform-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientUnits-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientUnits-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-r-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-r-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cx-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cx-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cy-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cy-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fx-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fx-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fy-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fy-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientTransform-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientTransform-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientUnits-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientUnits-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-r-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-r-prop-expected.png:
- 8:37 AM Changeset in webkit [78710] by
-
- 2 edits in trunk/LayoutTests
Merge branch 'bug/54552' into staging
- 8:32 AM Changeset in webkit [78709] by
-
- 6 edits in trunk/LayoutTests
Unreviewed.
Update Qt specific expected files.
- platform/qt/svg/custom/non-scaling-stroke-markers-expected.checksum:
- platform/qt/svg/custom/non-scaling-stroke-markers-expected.png:
- platform/qt/svg/custom/non-scaling-stroke-markers-expected.txt:
- platform/qt/svg/custom/text-rotated-gradient-expected.txt:
- platform/qt/svg/zoom/page/zoom-mask-with-percentages-expected.txt:
- 7:48 AM Changeset in webkit [78708] by
-
- 2 edits in trunk/Tools
[Qt] Qt build system can't handle removing headers from tree
https://bugs.webkit.org/show_bug.cgi?id=54466
Reviewed by Andreas Kling.
- Scripts/build-webkit: Remove Qt makefiles from productDir before build.
- 7:26 AM Changeset in webkit [78707] by
-
- 139 edits in trunk/LayoutTests
2011-02-16 Nikolas Zimmermann <nzimmermann@rim.com>
Reviewed by Dirk Schulze.
Pixel tests differences on 10.6.6 32bit vs. 64bit
https://bugs.webkit.org/show_bug.cgi?id=54474
Update SnowLeopard SVG pixel test baseline, generated on a 32bit machine, where it passes with tolerance 0.
This is the third chunk.
It should pass on modern 64bit machines as well, using tolerance 0.01.
- platform/mac/svg/clip-path/clip-in-mask-expected.checksum:
- platform/mac/svg/clip-path/clip-in-mask-expected.png:
- platform/mac/svg/clip-path/clip-path-child-clipped-expected.checksum:
- platform/mac/svg/clip-path/clip-path-child-clipped-expected.png:
- platform/mac/svg/clip-path/clip-path-childs-clipped-expected.checksum:
- platform/mac/svg/clip-path/clip-path-childs-clipped-expected.png:
- platform/mac/svg/clip-path/clip-path-clipped-expected.checksum:
- platform/mac/svg/clip-path/clip-path-clipped-expected.png:
- platform/mac/svg/clip-path/clip-path-clipped-nonzero-expected.checksum:
- platform/mac/svg/clip-path/clip-path-clipped-nonzero-expected.png:
- platform/mac/svg/clip-path/clip-path-on-clipped-use-expected.checksum:
- platform/mac/svg/clip-path/clip-path-on-clipped-use-expected.png:
- platform/mac/svg/clip-path/clip-path-on-g-and-child-expected.checksum:
- platform/mac/svg/clip-path/clip-path-on-g-and-child-expected.png:
- platform/mac/svg/clip-path/clip-path-on-g-expected.checksum:
- platform/mac/svg/clip-path/clip-path-on-g-expected.png:
- platform/mac/svg/clip-path/clip-path-on-svg-and-child-expected.checksum:
- platform/mac/svg/clip-path/clip-path-on-svg-and-child-expected.png:
- platform/mac/svg/clip-path/clip-path-on-svg-expected.checksum:
- platform/mac/svg/clip-path/clip-path-on-svg-expected.png:
- platform/mac/svg/clip-path/clip-path-use-as-child-expected.checksum:
- platform/mac/svg/clip-path/clip-path-use-as-child-expected.png:
- platform/mac/svg/clip-path/clip-path-use-as-child2-expected.checksum:
- platform/mac/svg/clip-path/clip-path-use-as-child2-expected.png:
- platform/mac/svg/clip-path/clip-path-use-as-child3-expected.checksum:
- platform/mac/svg/clip-path/clip-path-use-as-child3-expected.png:
- platform/mac/svg/clip-path/clip-path-use-as-child4-expected.checksum:
- platform/mac/svg/clip-path/clip-path-use-as-child4-expected.png:
- platform/mac/svg/clip-path/nested-clip-in-mask-image-based-clipping-expected.checksum:
- platform/mac/svg/clip-path/nested-clip-in-mask-image-based-clipping-expected.png:
- platform/mac/svg/clip-path/nested-clip-in-mask-path-and-image-based-clipping-expected.checksum:
- platform/mac/svg/clip-path/nested-clip-in-mask-path-and-image-based-clipping-expected.png:
- platform/mac/svg/clip-path/nested-clip-in-mask-path-based-clipping-expected.checksum:
- platform/mac/svg/clip-path/nested-clip-in-mask-path-based-clipping-expected.png:
- platform/mac/svg/custom/absolute-sized-content-with-resources-expected.checksum:
- platform/mac/svg/custom/absolute-sized-content-with-resources-expected.png:
- platform/mac/svg/custom/animate-path-discrete-expected.checksum:
- platform/mac/svg/custom/animate-path-discrete-expected.png:
- platform/mac/svg/custom/convolution-crash-expected.checksum:
- platform/mac/svg/custom/convolution-crash-expected.png:
- platform/mac/svg/custom/createImageElement2-expected.checksum:
- platform/mac/svg/custom/createImageElement2-expected.png:
- platform/mac/svg/custom/dynamic-svg-document-creation-expected.checksum:
- platform/mac/svg/custom/dynamic-svg-document-creation-expected.png:
- platform/mac/svg/custom/feComponentTransfer-Discrete-expected.checksum:
- platform/mac/svg/custom/feComponentTransfer-Discrete-expected.png:
- platform/mac/svg/custom/feComponentTransfer-Gamma-expected.checksum:
- platform/mac/svg/custom/feComponentTransfer-Gamma-expected.png:
- platform/mac/svg/custom/feComponentTransfer-Linear-expected.checksum:
- platform/mac/svg/custom/feComponentTransfer-Linear-expected.png:
- platform/mac/svg/custom/feComponentTransfer-Table-expected.checksum:
- platform/mac/svg/custom/feComponentTransfer-Table-expected.png:
- platform/mac/svg/custom/focus-ring-expected.checksum:
- platform/mac/svg/custom/focus-ring-expected.png:
- platform/mac/svg/custom/foreign-object-skew-expected.checksum:
- platform/mac/svg/custom/foreign-object-skew-expected.png:
- platform/mac/svg/custom/glyph-transformation-with-hkern-expected.checksum:
- platform/mac/svg/custom/glyph-transformation-with-hkern-expected.png:
- platform/mac/svg/custom/gradient-rotated-bbox-expected.checksum:
- platform/mac/svg/custom/gradient-rotated-bbox-expected.png:
- platform/mac/svg/custom/gradient-stroke-width-expected.checksum:
- platform/mac/svg/custom/gradient-stroke-width-expected.png:
- platform/mac/svg/custom/grayscale-gradient-mask-expected.checksum:
- platform/mac/svg/custom/grayscale-gradient-mask-expected.png:
- platform/mac/svg/custom/inline-svg-in-xhtml-expected.checksum:
- platform/mac/svg/custom/inline-svg-in-xhtml-expected.png:
- platform/mac/svg/custom/invalid-css-expected.checksum:
- platform/mac/svg/custom/invalid-css-expected.png:
- platform/mac/svg/custom/js-late-clipPath-and-object-creation-expected.checksum:
- platform/mac/svg/custom/js-late-clipPath-and-object-creation-expected.png:
- platform/mac/svg/custom/js-late-clipPath-creation-expected.checksum:
- platform/mac/svg/custom/js-late-clipPath-creation-expected.png:
- platform/mac/svg/custom/js-late-gradient-and-object-creation-expected.checksum:
- platform/mac/svg/custom/js-late-gradient-and-object-creation-expected.png:
- platform/mac/svg/custom/js-late-gradient-creation-expected.checksum:
- platform/mac/svg/custom/js-late-gradient-creation-expected.png:
- platform/mac/svg/custom/js-late-pattern-and-object-creation-expected.checksum:
- platform/mac/svg/custom/js-late-pattern-and-object-creation-expected.png:
- platform/mac/svg/custom/linking-a-03-b-all-expected.checksum:
- platform/mac/svg/custom/linking-a-03-b-all-expected.png:
- platform/mac/svg/custom/linking-a-03-b-transform-expected.checksum:
- platform/mac/svg/custom/linking-a-03-b-transform-expected.png:
- platform/mac/svg/custom/linking-a-03-b-viewBox-transform-expected.checksum:
- platform/mac/svg/custom/linking-a-03-b-viewBox-transform-expected.png:
- platform/mac/svg/custom/marker-default-width-height-expected.checksum:
- platform/mac/svg/custom/marker-default-width-height-expected.png:
- platform/mac/svg/custom/marker-opacity-expected.checksum:
- platform/mac/svg/custom/marker-opacity-expected.png:
- platform/mac/svg/custom/mouse-move-on-svg-root-expected.checksum:
- platform/mac/svg/custom/mouse-move-on-svg-root-expected.png:
- platform/mac/svg/custom/mouse-move-on-svg-root-standalone-expected.checksum:
- platform/mac/svg/custom/mouse-move-on-svg-root-standalone-expected.png:
- platform/mac/svg/custom/non-scaling-stroke-expected.checksum:
- platform/mac/svg/custom/non-scaling-stroke-expected.png:
- platform/mac/svg/custom/pattern-skew-transformed-expected.checksum:
- platform/mac/svg/custom/pattern-skew-transformed-expected.png:
- platform/mac/svg/custom/pattern-with-transformation-expected.checksum:
- platform/mac/svg/custom/pattern-with-transformation-expected.png:
- platform/mac/svg/custom/pointer-events-image-expected.checksum:
- platform/mac/svg/custom/pointer-events-image-expected.png:
- platform/mac/svg/custom/radial-gradient-with-outstanding-focalPoint-expected.checksum:
- platform/mac/svg/custom/radial-gradient-with-outstanding-focalPoint-expected.png:
- platform/mac/svg/custom/relative-sized-content-with-resources-expected.checksum:
- platform/mac/svg/custom/relative-sized-content-with-resources-expected.png:
- platform/mac/svg/custom/relative-sized-inner-svg-expected.checksum:
- platform/mac/svg/custom/relative-sized-inner-svg-expected.png:
- platform/mac/svg/custom/relative-sized-use-on-symbol-expected.checksum:
- platform/mac/svg/custom/relative-sized-use-on-symbol-expected.png:
- platform/mac/svg/custom/relative-sized-use-without-attributes-on-symbol-expected.checksum:
- platform/mac/svg/custom/relative-sized-use-without-attributes-on-symbol-expected.png:
- platform/mac/svg/custom/resource-invalidate-on-target-update-expected.checksum:
- platform/mac/svg/custom/resource-invalidate-on-target-update-expected.png:
- platform/mac/svg/custom/shapes-supporting-markers-expected.checksum:
- platform/mac/svg/custom/shapes-supporting-markers-expected.png:
- platform/mac/svg/custom/stroked-pattern-expected.checksum:
- platform/mac/svg/custom/stroked-pattern-expected.png:
- platform/mac/svg/custom/struct-use-09-b-expected.checksum:
- platform/mac/svg/custom/struct-use-09-b-expected.png:
- platform/mac/svg/custom/svg-curve-with-relative-cordinates-expected.checksum:
- platform/mac/svg/custom/svg-curve-with-relative-cordinates-expected.png:
- platform/mac/svg/custom/svg-fonts-in-html-expected.checksum:
- platform/mac/svg/custom/svg-fonts-in-html-expected.png:
- platform/mac/svg/custom/svg-fonts-with-no-element-reference-expected.checksum:
- platform/mac/svg/custom/svg-fonts-with-no-element-reference-expected.png:
- platform/mac/svg/custom/text-rotated-gradient-expected.checksum:
- platform/mac/svg/custom/text-rotated-gradient-expected.png:
- platform/mac/svg/custom/tref-update-expected.checksum:
- platform/mac/svg/custom/tref-update-expected.png:
- platform/mac/svg/custom/use-css-events-expected.checksum:
- platform/mac/svg/custom/use-css-events-expected.png:
- platform/mac/svg/custom/use-detach-expected.checksum:
- platform/mac/svg/custom/use-detach-expected.png:
- platform/mac/svg/custom/use-on-clip-path-with-transformation-expected.checksum:
- platform/mac/svg/custom/use-on-clip-path-with-transformation-expected.png:
- platform/mac/svg/custom/use-referencing-nonexisting-symbol-expected.checksum:
- platform/mac/svg/custom/use-referencing-nonexisting-symbol-expected.png:
- platform/mac/svg/custom/width-full-percentage-expected.checksum:
- platform/mac/svg/custom/width-full-percentage-expected.png:
- 7:23 AM Changeset in webkit [78706] by
-
- 47 edits in trunk/LayoutTests
2011-02-16 Nikolas Zimmermann <nzimmermann@rim.com>
Reviewed by Dirk Schulze.
Pixel tests differences on 10.6.6 32bit vs. 64bit
https://bugs.webkit.org/show_bug.cgi?id=54474
Update SnowLeopard SVG pixel test baseline, generated on a 32bit machine, where it passes with tolerance 0.
This is the second chunk.
It should pass on modern 64bit machines as well, using tolerance 0.01.
- platform/mac/svg/batik/masking/maskRegions-expected.checksum:
- platform/mac/svg/batik/masking/maskRegions-expected.png:
- platform/mac/svg/batik/text/smallFonts-expected.checksum:
- platform/mac/svg/batik/text/smallFonts-expected.png:
- platform/mac/svg/batik/text/textAnchor-expected.checksum:
- platform/mac/svg/batik/text/textAnchor-expected.png:
- platform/mac/svg/batik/text/textEffect-expected.checksum:
- platform/mac/svg/batik/text/textEffect-expected.png:
- platform/mac/svg/batik/text/textEffect3-expected.checksum:
- platform/mac/svg/batik/text/textEffect3-expected.png:
- platform/mac/svg/batik/text/textFeatures-expected.checksum:
- platform/mac/svg/batik/text/textFeatures-expected.png:
- platform/mac/svg/batik/text/textOnPath2-expected.checksum:
- platform/mac/svg/batik/text/textOnPath2-expected.png:
- platform/mac/svg/batik/text/textOnPath3-expected.checksum:
- platform/mac/svg/batik/text/textOnPath3-expected.png:
- platform/mac/svg/batik/text/verticalTextOnPath-expected.checksum:
- platform/mac/svg/batik/text/verticalTextOnPath-expected.png:
- platform/mac/svg/carto.net/button-expected.checksum:
- platform/mac/svg/carto.net/button-expected.png:
- platform/mac/svg/carto.net/colourpicker-expected.checksum:
- platform/mac/svg/carto.net/colourpicker-expected.png:
- platform/mac/svg/carto.net/combobox-expected.checksum:
- platform/mac/svg/carto.net/combobox-expected.png:
- platform/mac/svg/carto.net/scrollbar-expected.checksum:
- platform/mac/svg/carto.net/scrollbar-expected.png:
- platform/mac/svg/carto.net/selectionlist-expected.checksum:
- platform/mac/svg/carto.net/selectionlist-expected.png:
- platform/mac/svg/carto.net/slider-expected.checksum:
- platform/mac/svg/carto.net/slider-expected.png:
- platform/mac/svg/carto.net/textbox-expected.checksum:
- platform/mac/svg/carto.net/textbox-expected.png:
- platform/mac/svg/carto.net/window-expected.checksum:
- platform/mac/svg/carto.net/window-expected.png:
- platform/mac/svg/css/composite-shadow-example-expected.checksum:
- platform/mac/svg/css/composite-shadow-example-expected.png:
- platform/mac/svg/css/composite-shadow-text-expected.checksum:
- platform/mac/svg/css/composite-shadow-text-expected.png:
- platform/mac/svg/css/composite-shadow-with-opacity-expected.checksum:
- platform/mac/svg/css/composite-shadow-with-opacity-expected.png:
- platform/mac/svg/css/group-with-shadow-expected.checksum:
- platform/mac/svg/css/group-with-shadow-expected.png:
- platform/mac/svg/dom/SVGTransformList-basics-expected.checksum:
- platform/mac/svg/dom/SVGTransformList-basics-expected.png:
- svg/batik/masking/maskRegions.svg:
- svg/zoom/page/zoom-mask-with-percentages.svg:
- 7:18 AM Changeset in webkit [78705] by
-
- 5 edits in trunk/Source/WebKit/chromium
2011-02-16 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r78678.
http://trac.webkit.org/changeset/78678
https://bugs.webkit.org/show_bug.cgi?id=54554
Breaks NaCl tests in Chromium (Requested by mnaganov on
#webkit).
- src/WebURLRequest.cpp: (WebKit::WebURLRequestPrivateImpl::WebURLRequestPrivateImpl): (WebKit::WebURLRequest::downloadToFile): (WebKit::WebURLRequest::setDownloadToFile):
- src/WebURLRequestPrivate.h: (WebKit::WebURLRequestPrivate::WebURLRequestPrivate):
- src/WebURLResponse.cpp: (WebKit::WebURLResponsePrivateImpl::WebURLResponsePrivateImpl): (WebKit::WebURLResponse::downloadFilePath): (WebKit::WebURLResponse::setDownloadFilePath):
- src/WebURLResponsePrivate.h:
- 7:11 AM Changeset in webkit [78704] by
-
- 128 edits in trunk
2011-02-15 Nikolas Zimmermann <nzimmermann@rim.com>
Reviewed by Dirk Schulze.
Pixel tests differences on 10.6.6 32bit vs. 64bit
https://bugs.webkit.org/show_bug.cgi?id=54474
When generating a SVG pixel test baseline with a vanilla 10.6.6 installation on a 32bit machine (Core Duo MBP)
and comparing the run with a software-identical 64bit machine (Core 2 Duo MBP), there are about 250 differences.
These fall in two categories:
a) 1px differences in text AA, or when drawing circles (all _below_ a tolerance of 0.01). Only visible in the subtracted difference image.
The reason is probably CGFloat being typedefed to double on 64bit machines, and float on 32bit machines.
AffineTransform stores doubles, so on 32bit machines we loose precision from AffineTransform -> CGAffineTransform.
b) Failures >0.1% (text origin/scale is slightly different, user-visible).
Caused by several sources of numerical instabilities within the SVG rendering code.
-> SVGPreserveAspectRatio::getCTM() computes an AffineTransform using doubles as input parameters, but floats are passed (like everywhere else in SVG).
This method is used to compute the viewBox AffineTransform, that affects the rendering of every content in the document. RenderSVGRoot concats
this transformation matrix to the GraphicsContext CTM, resulting in a source of numerical imprecision.
-> SVGInlineTextBox::paintTextWithShadows() calculates a scaling factor for text, to scale up the specified font size, to the actual on-screen size.
SVGInlineTextBox uses the scaled Font object, to draw in an unscaled context, that gets scaled up again afterwards.
context->scale(1 / scalingFactor); scaledFont.drawText(); context->scale(scalingFactor);
To remove the scale from the current GraphicsContext CTM, "context->scale(FloatSize(1 / scalingFactor, ...)" is used. As AffineTransform stores
doubles internally, it's likely that "context->scale(FloatSize(1 / ctm.a(), .." doesn't give you a matrix with a=1, but something close to 1.
Using "context->concatCTM(AffineTransform().scale(1 / ctm.a(), ..." could be used as workaround, to preserve double precision.
Fixing that brings us down to just a few pixel tests that differ between 32 & 64bit. There is still numerical imprecision, as floating-point
number representations aren't always precise. Unfortunately CoreGraphics doesn't provide a public way to just set a CTM, it only allows to concat them.
Fortunately CGContextSetCTM() is available, as private method, that allows me to switch the context CTM to any arbitary CGAffineTransform.
-> Add GraphicsContext::setCTM(const AffineTransform&) and implement it for all platforms (each explicitely exposes a 'setCTM' concept, except CG)
Use CGContextSetCTM() for CG, which appears to be present since at least 10.4, Cairo is using it for the same purpose since some years!
-> Instead of scaling the GraphicsContext before drawing text, grab the current CTM using context->getCTM(), scale it by '1 / scalingFactor'
normalize the transform (look for values close to 0/1 using float precision, and round!), and assign it using context->setCTM(normalizedTransform).
After drawing, just switch back to the preserved original CTM, both operations need GraphicsContext::setCTM.
This fixes all pixel test differences between 32/64 bit machines that fall into category b).
The use of GraphicsContext::setCTM() allows to switch between arbitary context transformations _without_ inducing accumulated rounding imprecision.
These combined patches fix the pixel test baseline changes.
Updated existing Snow Leopard pixel test baseline with a 32bit machine, passes here with tolerance 0.
The 64bit machine passes the baseline with tolerance 0.01.
- platform/graphics/GraphicsContext.h: Add setCTM(const AffineTransform&) method.
- platform/graphics/cairo/GraphicsContextCairo.cpp: (WebCore::GraphicsContext::setCTM): Implement setCTM.
- platform/graphics/cairo/GraphicsContextPlatformPrivateCairo.h: (WebCore::GraphicsContextPlatformPrivate::setCTM): Ditto.
- platform/graphics/cg/GraphicsContextCG.cpp: (WebCore::GraphicsContext::setCTM): Ditto.
- platform/graphics/cg/GraphicsContextPlatformPrivateCG.h: (WebCore::GraphicsContextPlatformPrivate::setCTM): Ditto.
- platform/graphics/chromium/GLES2Canvas.cpp: (WebCore::GLES2Canvas::setCTM): Ditto.
- platform/graphics/chromium/GLES2Canvas.h:
- platform/graphics/haiku/GraphicsContextHaiku.cpp: (WebCore::GraphicsContext::setCTM): Ditto.
- platform/graphics/openvg/GraphicsContextOpenVG.cpp: (WebCore::GraphicsContext::setCTM): Ditto.
- platform/graphics/qt/GraphicsContextQt.cpp: (WebCore::GraphicsContext::setCTM): Ditto.
- platform/graphics/skia/GraphicsContextSkia.cpp: (WebCore::GraphicsContext::setCTM): Ditto.
- platform/graphics/win/GraphicsContextWin.cpp: (WebCore::GraphicsContextPlatformPrivate::setCTM): Ditto.
- platform/graphics/wince/GraphicsContextWinCE.cpp: (WebCore::GraphicsContextPlatformPrivate::concatCTM): (WebCore::GraphicsContextPlatformPrivate::setCTM): Ditto. (WebCore::GraphicsContext::setCTM):
- platform/graphics/wx/GraphicsContextWx.cpp: (WebCore::GraphicsContext::setCTM): Ditto.
- rendering/svg/SVGInlineTextBox.cpp: Use setCTM() to switch to a scale-free AffineTransform, and also to switch back to the original CTM after rendering text. (WebCore::normalizeTransform): (WebCore::SVGInlineTextBox::paintDecorationWithStyle): (WebCore::SVGInlineTextBox::paintTextWithShadows):
- svg/SVGPreserveAspectRatio.cpp: s/double/float/. (WebCore::SVGPreserveAspectRatio::getCTM):
- svg/SVGPreserveAspectRatio.h:
- svg/SVGSVGElement.cpp: Simplify viewport() code, avoid using doubles. (WebCore::SVGSVGElement::viewport):
2011-02-16 Nikolas Zimmermann <nzimmermann@rim.com>
Reviewed by Dirk Schulze.
Pixel tests differences on 10.6.6 32bit vs. 64bit
https://bugs.webkit.org/show_bug.cgi?id=54474
Update SnowLeopard SVG pixel test baseline, generated on a 32bit machine, where it passes with tolerance 0.
This is the first chunk of several commits, as one commit is too huge for SVN.
It should pass on modern 64bit machines as well, using tolerance 0.01.
- platform/mac/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.png:
- platform/mac/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-03-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-03-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-08-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-08-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-26-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-26-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-30-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-30-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-33-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-33-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-34-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-34-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-36-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-40-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-40-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-44-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-44-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-82-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-82-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-84-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-84-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/filters-color-01-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/filters-color-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/filters-comptran-01-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/filters-comptran-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/filters-example-01-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/filters-example-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/filters-morph-01-f-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/filters-morph-01-f-expected.png:
- platform/mac/svg/W3C-SVG-1.1/filters-offset-01-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/filters-offset-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/interact-order-01-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/interact-order-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/interact-order-02-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/interact-order-02-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/linking-a-05-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/linking-a-05-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/metadata-example-01-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/metadata-example-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/painting-marker-03-f-expected.txt:
- platform/mac/svg/W3C-SVG-1.1/paths-data-02-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/paths-data-02-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/paths-data-03-f-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/paths-data-03-f-expected.png:
- platform/mac/svg/W3C-SVG-1.1/paths-data-04-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/paths-data-04-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/paths-data-05-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/paths-data-05-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/paths-data-06-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/paths-data-06-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/paths-data-07-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/paths-data-07-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/paths-data-08-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/paths-data-08-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/paths-data-15-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/paths-data-15-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/pservers-grad-07-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/pservers-grad-07-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/pservers-grad-11-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/pservers-grad-11-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/pservers-grad-13-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/pservers-grad-13-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/render-groups-03-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/render-groups-03-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/shapes-circle-01-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/shapes-circle-01-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/shapes-circle-02-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/shapes-circle-02-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/shapes-ellipse-01-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/shapes-ellipse-01-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-frag-02-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/struct-frag-02-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-frag-02-t-expected.txt:
- platform/mac/svg/W3C-SVG-1.1/struct-frag-03-t-expected.txt:
- platform/mac/svg/W3C-SVG-1.1/struct-image-02-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/struct-image-02-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/text-path-01-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/text-path-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/text-text-01-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/text-text-01-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/types-basicDOM-01-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/types-basicDOM-01-b-expected.png:
- platform/mac/svg/batik/masking/maskRegions-expected.txt:
- platform/mac/svg/custom/circular-marker-reference-1-expected.txt:
- platform/mac/svg/custom/circular-marker-reference-2-expected.txt:
- platform/mac/svg/custom/circular-marker-reference-3-expected.txt:
- platform/mac/svg/custom/circular-marker-reference-4-expected.txt:
- platform/mac/svg/custom/non-circular-marker-reference-expected.txt:
- platform/mac/svg/custom/non-scaling-stroke-markers-expected.txt:
- platform/mac/svg/custom/stroked-pattern-expected.txt:
- platform/mac/svg/custom/text-rotated-gradient-expected.txt:
- platform/mac/svg/custom/use-detach-expected.txt:
- platform/mac/svg/hixie/links/001-expected.txt:
- platform/mac/svg/hixie/viewbox/preserveAspectRatio/001-expected.txt:
- platform/mac/svg/text/small-fonts-2-expected.txt:
- platform/mac/svg/zoom/page/zoom-mask-with-percentages-expected.txt:
- 7:01 AM Changeset in webkit [78703] by
-
- 2 edits in trunk/Source/WebCore
2011-02-16 Andreas Kling <kling@webkit.org>
Reviewed by Dirk Schulze.
SVGAnimateElement incorrectly uses Color::nameForRenderTreeAsText()
https://bugs.webkit.org/show_bug.cgi?id=54547
- svg/SVGAnimateElement.cpp: (WebCore::SVGAnimateElement::applyResultsToTarget):
- 6:18 AM Changeset in webkit [78702] by
-
- 2 adds in trunk/LayoutTests/platform/chromium-win-xp/media
2011-02-16 Mikhail Naganov <mnaganov@chromium.org>
[Chromium] Unreviewed rebaseline of media video-controls-rendering for Windows.
- 5:52 AM Changeset in webkit [78701] by
-
- 3 edits in trunk/LayoutTests
2011-02-16 Philippe Normand <pnormand@igalia.com>
Reviewed by Adam Roben.
media/audio-delete-while-slider-thumb-clicked.html failing on Windows since r78562
https://bugs.webkit.org/show_bug.cgi?id=54502
- media/audio-delete-while-slider-thumb-clicked.html: Avoid deleting the element twice.
- platform/win/Skipped: unskip the test.
- 5:48 AM Changeset in webkit [78700] by
-
- 7 edits1 add in trunk/Source/WebCore
2011-02-14 Mikhail Naganov <mnaganov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: [Chromium] Landing detailed heap snapshots, part 3.
https://bugs.webkit.org/show_bug.cgi?id=54385
Provide node classes for data grid views:
- summary -- list of objects by constuctor;
- diff -- summaries btw two snapshots;
- explorer -- explore heap graph;
- dominators tree;
- WebCore.gypi:
- WebCore.vcproj/WebCore.vcproj:
- inspector/front-end/DetailedHeapshotGridNodes.js: Added.
- inspector/front-end/HeapSnapshot.js: (WebInspector.HeapSnapshotFilteredOrderedIterator): (WebInspector.HeapSnapshotFilteredOrderedIterator.prototype.incInstancesCount): (WebInspector.HeapSnapshotFilteredOrderedIterator.prototype.get instancesCount): (WebInspector.HeapSnapshotFilteredOrderedIterator.prototype.next): (WebInspector.HeapSnapshotFilteredOrderedIterator.prototype.resetInstancesCount): (WebInspector.HeapSnapshotEdgesProvider): (WebInspector.HeapSnapshotNodesProvider):
- inspector/front-end/PleaseWaitMessage.js: (WebInspector.PleaseWaitMessage.prototype.get instance):
- inspector/front-end/WebKit.qrc:
- inspector/front-end/inspector.html:
- 5:22 AM Changeset in webkit [78699] by
-
- 4 edits in trunk
2011-02-16 Ilya Tikhonovsky <loislo@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: chromium: DRT is crashing on the tests in inspector-enabled folder.
https://bugs.webkit.org/show_bug.cgi?id=54548
Bug in chromium DRT implementation was fixed.
The tests were enabled.
- platform/chromium/test_expectations.txt:
2011-02-16 Ilya Tikhonovsky <loislo@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: chromium: DRT is crashing on the tests in inspector-enabled folder.
https://bugs.webkit.org/show_bug.cgi?id=54548
- DumpRenderTree/chromium/TestShell.cpp: (TestShell::runFileTest):
- 5:08 AM Changeset in webkit [78698] by
-
- 2 edits5 adds in trunk/LayoutTests/platform
2011-02-16 Mikhail Naganov <mnaganov@chromium.org>
[Chromium] Unreviewed rebaseline of 2 more media tests.
- 5:02 AM Changeset in webkit [78697] by
-
- 19 edits13 adds in trunk/LayoutTests/platform
2011-02-16 Mikhail Naganov <mnaganov@chromium.org>
[Chromium] Unreviewed rebaseline of media tests.
- 4:54 AM Changeset in webkit [78696] by
-
- 3 edits in trunk/LayoutTests
2011-02-16 Philippe Normand <pnormand@igalia.com>
Unreviewed, qt and mac rebaseline of test after r78690.
- media/controls-without-preload-expected.txt:
- platform/qt/media/controls-without-preload-expected.txt:
- 3:58 AM Changeset in webkit [78695] by
-
- 2 edits in trunk/LayoutTests
2011-02-16 Philippe Normand <pnormand@igalia.com>
Unreviewed, rebaseline test after r78690.
- media/controls-without-preload-expected.txt:
- 3:51 AM Changeset in webkit [78694] by
-
- 16 edits2 deletes in trunk
2011-02-16 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r78655.
http://trac.webkit.org/changeset/78655
https://bugs.webkit.org/show_bug.cgi?id=54543
Causes too many test failures in chromium (Requested by
mnaganov on #webkit).
- storage/indexeddb/exception-in-event-aborts-expected.txt: Removed.
- storage/indexeddb/exception-in-event-aborts.html: Removed.
- storage/indexeddb/queued-commands-expected.txt:
- storage/indexeddb/queued-commands.html:
- storage/indexeddb/request-event-propagation-expected.txt:
- storage/indexeddb/request-event-propagation.html:
- storage/indexeddb/resources/shared.js: (unexpectedErrorCallback):
- storage/indexeddb/transaction-event-propagation-expected.txt:
- storage/indexeddb/transaction-event-propagation.html:
- 3:41 AM Changeset in webkit [78693] by
-
- 2 edits in trunk/LayoutTests
2011-02-16 Philippe Normand <pnormand@igalia.com>
Unreviewed rebaseline GTK media test result.
- platform/gtk/media/video-controls-rendering-expected.txt:
- 3:21 AM Changeset in webkit [78692] by
-
- 8 edits in trunk/Source/WebCore
2011-02-16 Ilya Tikhonovsky <loislo@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: move Database and DOMStorage related things from InspectorAgent to the corresponding agents.
Some set of instrumentation calls should work even if we have no InspectorFrontend instance and corresponding agents.
At the moment we are using InspectorAgent instance for such calls.
- inspector/InspectorAgent.cpp: (WebCore::InspectorAgent::InspectorAgent): (WebCore::InspectorAgent::createFrontendLifetimeAgents): (WebCore::InspectorAgent::pushDataCollectedOffline): (WebCore::InspectorAgent::didCommitLoad):
- inspector/InspectorAgent.h: (WebCore::InspectorOfflineResourcesBase::~InspectorOfflineResourcesBase): (WebCore::InspectorOfflineResourcesBase::InspectorOfflineResourcesBase): (WebCore::InspectorAgent::databaseAgentResources): (WebCore::InspectorAgent::domStorageAgentResources):
- inspector/InspectorDOMStorageAgent.cpp: (WebCore::InspectorDOMStorageAgent::Resources::clear): (WebCore::InspectorDOMStorageAgent::Resources::pushDataCollectedOffline): (WebCore::InspectorDOMStorageAgent::InspectorDOMStorageAgent): (WebCore::InspectorDOMStorageAgent::~InspectorDOMStorageAgent): (WebCore::InspectorDOMStorageAgent::createOfflineStorage): (WebCore::InspectorDOMStorageAgent::selectDOMStorage): (WebCore::InspectorDOMStorageAgent::getDOMStorageResourceForId): (WebCore::InspectorDOMStorageAgent::didUseDOMStorage):
- inspector/InspectorDOMStorageAgent.h: (WebCore::InspectorDOMStorageAgent::create):
- inspector/InspectorDatabaseAgent.cpp: (WebCore::InspectorDatabaseAgent::Resources::clear): (WebCore::InspectorDatabaseAgent::Resources::pushDataCollectedOffline): (WebCore::InspectorDatabaseAgent::didOpenDatabase): (WebCore::InspectorDatabaseAgent::InspectorDatabaseAgent): (WebCore::InspectorDatabaseAgent::createOfflineStorage): (WebCore::InspectorDatabaseAgent::databaseForId): (WebCore::InspectorDatabaseAgent::selectDatabase):
- inspector/InspectorDatabaseAgent.h: (WebCore::InspectorDatabaseAgent::create):
- inspector/InspectorInstrumentation.cpp: (WebCore::InspectorInstrumentation::didOpenDatabaseImpl): (WebCore::InspectorInstrumentation::didUseDOMStorageImpl):
- 3:20 AM Changeset in webkit [78691] by
-
- 3 edits in trunk/Tools
2011-02-16 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r77898.
http://trac.webkit.org/changeset/77898
https://bugs.webkit.org/show_bug.cgi?id=54541
Leopard Debug hasn't compiled for a long time (Requested by
abarth on #webkit).
- Scripts/webkitpy/common/net/buildbot/buildbot.py:
- Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
- 3:13 AM Changeset in webkit [78690] by
-
- 5 edits in trunk/LayoutTests
2011-02-15 Philippe Normand <pnormand@igalia.com>
Reviewed by Martin Robinson.
[GTK] media/controls-without-preload.html is flacky on 32-bits Debug
https://bugs.webkit.org/show_bug.cgi?id=50518
Refactored 2 media tests to avoid use of setTimeout and possible
flakyness.
- media/controls-without-preload.html:
- media/video-display-toggle.html:
- platform/gtk/Skipped:
- platform/gtk/media/controls-without-preload-expected.txt:
- 3:10 AM Changeset in webkit [78689] by
-
- 6 edits in trunk/LayoutTests
2011-02-15 Philippe Normand <pnormand@igalia.com>
Reviewed by Martin Robinson.
[GStreamer] wrong media duration report in media/controls-after-reload.html
https://bugs.webkit.org/show_bug.cgi?id=51602
Refactored some media tests to be less flaky-prone.
- media/controls-after-reload.html: Trigger playback just before rendering the controls.
- media/video-paint-test.js: Ditto. (init.document.addEventListener.): (init):
- media/video-volume-slider.html: Trigger DRT dump after volume was updated.
- platform/gtk/Skipped: Unskip fixed tests.
- platform/gtk/media/video-controls-rendering-expected.txt:
- 2:47 AM Changeset in webkit [78688] by
-
- 2 edits in trunk/Source/WebKit/qt
2011-02-16 Aparna Nandyal <aparna.nand@wipro.com>
Reviewed by Andreas Kling.
[Qt] QWebFrame: When a relative url is loaded then it will make it absolute internally, however this strips out any query/fragments
https://bugs.webkit.org/show_bug.cgi?id=29424
ensureAbsoluteUrl function was stripping the query and the
fragment part of the url. Corrected this.
- Api/qwebframe.cpp: (ensureAbsoluteUrl):