- 15 Nov, 2011 30 commits
-
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=65796 This adds test to ensure that the bug does not reappear unnoticed. Patch by Stephen Chenney <schenney@chromium.org> on 2011-11-15 Reviewed by Nikolas Zimmermann. * svg/custom/zero-path-square-cap-rendering3-expected.png: Added. * svg/custom/zero-path-square-cap-rendering3-expected.txt: Added. * svg/custom/zero-path-square-cap-rendering3.svg: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100291 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
arv@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=72391 Reviewed by Ojan Vafai. These tests had <div id="console"></p> in them which causes a lot of extra whitespace. * fast/dom/HTMLElement/attr-dir-auto-change-before-text-node-expected.txt: * fast/dom/HTMLElement/attr-dir-auto-change-before-text-node.html: * fast/dom/HTMLElement/attr-dir-auto-change-child-node-expected.txt: * fast/dom/HTMLElement/attr-dir-auto-change-child-node.html: * fast/dom/HTMLElement/attr-dir-auto-change-text-expected.txt: * fast/dom/HTMLElement/attr-dir-auto-change-text-form-control-expected.txt: * fast/dom/HTMLElement/attr-dir-auto-change-text-form-control.html: * fast/dom/HTMLElement/attr-dir-auto-change-text.html: * fast/dom/HTMLElement/attr-dir-auto-children-expected.txt: * fast/dom/HTMLElement/attr-dir-auto-children.html: * fast/dom/HTMLElement/attr-dir-auto-expected.txt: * fast/dom/HTMLElement/attr-dir-auto-remove-add-children-expected.txt: * fast/dom/HTMLElement/attr-dir-auto-remove-add-children.html: * fast/dom/HTMLElement/attr-dir-auto-text-form-control-child-expected.txt: * fast/dom/HTMLElement/attr-dir-auto-text-form-control-child.html: * fast/dom/HTMLElement/attr-dir-auto-text-form-control-expected.txt: * fast/dom/HTMLElement/attr-dir-auto-text-form-control.html: * fast/dom/HTMLElement/attr-dir-auto.html: * fast/dom/HTMLElement/attr-dir-value-change-expected.txt: * fast/dom/HTMLElement/attr-dir-value-change.html: * fast/dom/HTMLElement/attr-empty-string-expected.txt: * fast/dom/HTMLElement/attr-empty-string.html: * fast/dom/HTMLElement/attr-false-string-expected.txt: * fast/dom/HTMLElement/attr-false-string.html: * fast/dom/HTMLElement/attr-invalid-string-expected.txt: * fast/dom/HTMLElement/attr-invalid-string.html: * fast/dom/HTMLElement/attr-missing-ancestor-false-expected.txt: * fast/dom/HTMLElement/attr-missing-ancestor-false.html: * fast/dom/HTMLElement/attr-missing-ancestor-true-expected.txt: * fast/dom/HTMLElement/attr-missing-ancestor-true.html: * fast/dom/HTMLElement/attr-missing-parent-ancestor-missing-expected.txt: * fast/dom/HTMLElement/attr-missing-parent-ancestor-missing.html: * fast/dom/HTMLElement/attr-missing-parent-false-expected.txt: * fast/dom/HTMLElement/attr-missing-parent-false.html: * fast/dom/HTMLElement/attr-missing-parent-true-expected.txt: * fast/dom/HTMLElement/attr-missing-parent-true.html: * fast/dom/HTMLElement/attr-true-string-expected.txt: * fast/dom/HTMLElement/attr-true-string.html: * fast/dom/HTMLElement/iscontenteditable-designmodeon-allinherit-expected.txt: * fast/dom/HTMLElement/iscontenteditable-designmodeon-allinherit-subframe-expected.txt: * fast/dom/HTMLElement/iscontenteditable-designmodeon-allinherit-subframe.html: * fast/dom/HTMLElement/iscontenteditable-designmodeon-allinherit.html: * fast/dom/HTMLElement/iscontenteditable-designmodeon-ancestor-expected.txt: * fast/dom/HTMLElement/iscontenteditable-designmodeon-ancestor.html: * fast/dom/HTMLElement/iscontenteditable-designmodeon-expected.txt: * fast/dom/HTMLElement/iscontenteditable-designmodeon.html: * fast/dom/HTMLElement/set-false-expected.txt: * fast/dom/HTMLElement/set-false.html: * fast/dom/HTMLElement/set-inherit-parent-false-expected.txt: * fast/dom/HTMLElement/set-inherit-parent-false.html: * fast/dom/HTMLElement/set-inherit-parent-true-expected.txt: * fast/dom/HTMLElement/set-inherit-parent-true.html: * fast/dom/HTMLElement/set-invalid-value-expected.txt: * fast/dom/HTMLElement/set-invalid-value.html: * fast/dom/HTMLElement/set-true-expected.txt: * fast/dom/HTMLElement/set-true.html: * fast/dom/HTMLElement/set-value-caseinsensitive-expected.txt: * fast/dom/HTMLElement/set-value-caseinsensitive.html: * fast/dom/Orientation/create-event-orientationchange.html: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100289 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
philn@webkit.org authored
* platform/gtk/fast/dom/Window/window-properties-expected.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100288 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
Implement maxWidth for fillText and strokeText, fixing the canvas/philip/tests/2d.text.draw.fill.maxWidth.fontface.html test. https://bugs.webkit.org/show_bug.cgi?id=61528 Patch by Philip Rogers <pdr@google.com> on 2011-11-15 Reviewed by Stephen White. Source/WebCore: Tests: fast/canvas/2d.text.draw.fill.maxWidth.gradient.html fast/canvas/2d.text.draw.fill.maxWidth.negative.html fast/canvas/2d.text.draw.fill.maxWidth.veryLarge.html fast/canvas/2d.text.draw.fill.maxWidth.verySmall.html * html/canvas/CanvasRenderingContext2D.cpp: (WebCore::CanvasRenderingContext2D::drawTextInternal): LayoutTests: * fast/canvas/2d.text.draw.fill.maxWidth.gradient-expected.txt: Added. * fast/canvas/2d.text.draw.fill.maxWidth.gradient.html: Added. * fast/canvas/2d.text.draw.fill.maxWidth.negative-expected.txt: Added. * fast/canvas/2d.text.draw.fill.maxWidth.negative.html: Added. * fast/canvas/2d.text.draw.fill.maxWidth.veryLarge-expected.txt: Added. * fast/canvas/2d.text.draw.fill.maxWidth.veryLarge.html: Added. * fast/canvas/2d.text.draw.fill.maxWidth.verySmall-expected.txt: Added. * fast/canvas/2d.text.draw.fill.maxWidth.verySmall.html: Added. * platform/chromium/canvas/philip/tests/2d.text.draw.fill.maxWidth.fontface-expected.txt: Removed. * platform/chromium/test_expectations.txt: * platform/gtk/Skipped: * platform/mac-leopard/Skipped: * platform/mac/canvas/philip/tests/2d.text.draw.fill.maxWidth.fontface-expected.txt: * platform/qt/Skipped: * resources/Ahem.ttf: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100285 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
caryclark@google.com authored
https://bugs.webkit.org/show_bug.cgi?id=72137 Source/WebCore: Use Skia to draw vertical text. This is much faster and has higher fidelity than the old method of drawing text on a path. The graphics context passed to Skia has been rotated 90 degrees but the character advances have not, so it is necessary to unrotate the canvas, and re-rotate the positions. This generates correct output (or, at least, consistent with Chromium CG on Mac) for all vertical text tests, one of which is mentioned below. Reviewed by Stephen White. Test: fast/writing-mode/text-orientation-basic.html * platform/graphics/skia/FontSkia.cpp: (WebCore::setupPaint): (WebCore::Font::drawGlyphs): LayoutTests: Ignore vertical text tests on Skia on Mac for now. Reviewed by Stephen White. * platform/chromium/test_expectations.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100283 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
eric.carlson@apple.com authored
https://bugs.webkit.org/show_bug.cgi?id=72381 Reviewed by Tony Gentilcore. * media/media-blocked-by-willsendrequest.html: Don't assume the media events will be dispatched before the window 'load' event. * platform/chromium/test_expectations.txt: Don't skip media/media-blocked-by-willsendrequest.html. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100282 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ossy@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=71911 Patch by Zoltan Arvai <zarvai@inf.u-szeged.hu> on 2011-11-15 Reviewed by Csaba Osztrogonác. * platform/qt/Skipped: Unskip 24 tests. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100281 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=37325 Patch by Philip Rogers <pdr@google.com> on 2011-11-15 Reviewed by Nikolas Zimmermann. Source/WebCore: Test: svg/hittest/svg-padding.xhtml * rendering/svg/RenderSVGRoot.cpp: (WebCore::RenderSVGRoot::nodeAtPoint): LayoutTests: * svg/hittest/svg-padding-expected.txt: Added. * svg/hittest/svg-padding.xhtml: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100280 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
philn@webkit.org authored
fast/frames/flattening/frameset-flattening-simple.html as flaky on GTK. * platform/gtk/test_expectations.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100279 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
tonyg@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=72039 * platform/chromium/test_expectations.txt: Add 3 more tests which flakily report missing. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100278 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
reed@google.com authored
https://bugs.webkit.org/show_bug.cgi?id=72270 Reviewed by NOBODY. * platform/chromium/test_expectations.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100276 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
tonyg@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=72381 * platform/chromium/test_expectations.txt: Mark test as flaky. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100275 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
apavlov@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=15598 Reviewed by Nikolas Zimmermann. Source/WebCore: The "font" CSS property is turned into a real shorthand, as its longhands used to float around in the resulting style declaration without any reference to their underlying "font" property. Test: fast/css/font-shorthand.html * css/CSSMutableStyleDeclaration.cpp: (WebCore::CSSMutableStyleDeclaration::getPropertyValue): Extracted the "font" value building into fontValue(). (WebCore::CSSMutableStyleDeclaration::appendFontLonghandValueIfExplicit): Added (WebCore::CSSMutableStyleDeclaration::fontValue): Build the "font" value from longhands. * css/CSSMutableStyleDeclaration.h: * css/CSSParser.cpp: (WebCore::CSSParser::addProperty): Added optional "implicit" parameter. (WebCore::CSSParser::parseFont): Build respective longhands instead of the shorthand "font" property. * css/CSSParser.h: Added optional "implicit" parameter to addProperty(). * css/CSSPropertyLonghand.cpp: (WebCore::initShorthandMap): Added "font" shorthand map entry. * css/CSSStyleSelector.cpp: (WebCore::CSSStyleSelector::applyPropertyToStyle): Separated the property application from the instance setup. (WebCore::CSSStyleSelector::applyPropertyToCurrentStyle): Added. * css/CSSStyleSelector.h: Made updateFont() public. * css/FontValue.cpp: (WebCore::FontValue::customCssText): Made use of StringBuilder. * html/canvas/CanvasRenderingContext2D.cpp: (WebCore::CanvasRenderingContext2D::setFont): Apply "font" longhands rather than the (non-existent) "font" property. * inspector/front-end/StylesSidebarPane.js: (WebInspector.StylesSidebarPane.prototype._markUsedProperties): Removed a workaround for "font" not being a shorthand. * page/animation/AnimationBase.cpp: (WebCore::addShorthandProperties): Removed a workaround for "font" not being a shorthand. LayoutTests: * fast/css/font-shorthand-expected.txt: Added. * fast/css/font-shorthand.html: Added. * fast/inspector-support/style-expected.txt: * fast/inspector-support/style.html: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100273 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
philn@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=72297 Unreviewed, GTK rebaseline after r100159. * platform/gtk/Skipped: * platform/gtk/fast/dom/Window/window-properties-expected.txt: * platform/gtk/fast/dom/Window/window-property-descriptors-expected.txt: * platform/gtk/fast/dom/constructed-objects-prototypes-expected.txt: Added. * platform/gtk/fast/dom/prototype-inheritance-2-expected.txt: * platform/gtk/fast/js/global-constructors-expected.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100272 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
philn@webkit.org authored
* platform/gtk/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100271 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ossy@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=72364 * platform/qt/Skipped: Skip failing tests until fix. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100268 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
tonyg@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=72376 * platform/chromium/test_expectations.txt: Mark test flaky on win. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100267 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
noel.gordon@gmail.com authored
https://bugs.webkit.org/show_bug.cgi?id=72240 Reviewed by Eric Seidel. * fast/images/gray-scale-jpeg-with-color-profile-expected.txt: Renamed from LayoutTests/platform/gtk/fast/images/gray-scale-jpeg-with-color-profile-expected.txt. * platform/chromium-linux/fast/images/gray-scale-jpeg-with-color-profile-expected.png: Added. * platform/chromium-win/fast/images/gray-scale-jpeg-with-color-profile-expected.png: Added. * platform/chromium/fast/images/gray-scale-jpeg-with-color-profile-expected.png: Added. * platform/chromium/test_expectations.txt: * platform/qt/fast/images/gray-scale-jpeg-with-color-profile-expected.txt: Removed. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100264 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
tonyg@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=72372 * platform/chromium/test_expectations.txt: Marking flaky on WIN. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100263 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
commit-queue@webkit.org authored
http://trac.webkit.org/changeset/100213 https://bugs.webkit.org/show_bug.cgi?id=72371 "Breaks test_shell_tests" (Requested by tonyg-cr on #webkit). Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-11-15 Source/WebCore: * page/SecurityOrigin.cpp: (WebCore::SecurityOrigin::SecurityOrigin): * platform/SchemeRegistry.cpp: (WebCore::schemesWithUniqueOrigins): LayoutTests: * fast/filesystem/async-operations-expected.txt: * fast/filesystem/not-enough-arguments-expected.txt: * fast/filesystem/read-directory-expected.txt: * fast/filesystem/simple-persistent-expected.txt: * fast/filesystem/simple-readonly-expected.txt: * fast/filesystem/simple-temporary-expected.txt: * fast/frames/resources/sandboxed-iframe-storage-disallowed.html: * fast/frames/sandboxed-iframe-attribute-parsing.html: * fast/frames/sandboxed-iframe-forms-dynamic.html: * fast/frames/sandboxed-iframe-forms.html: * fast/frames/sandboxed-iframe-navigation-top-by-constant-name.html: * fast/frames/sandboxed-iframe-navigation-top-by-constant-name2.html: * fast/frames/sandboxed-iframe-navigation-top-by-name.html: * fast/frames/sandboxed-iframe-navigation-top.html: * media/video-controls-no-scripting.html: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100262 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
ossy@webkit.org authored
* platform/qt/fast/dom/Window/window-properties-expected.png: * platform/qt/fast/dom/Window/window-properties-expected.txt: * platform/qt/fast/dom/Window/window-property-descriptors-expected.png: * platform/qt/fast/dom/Window/window-property-descriptors-expected.txt: * platform/qt/fast/dom/constructed-objects-prototypes-expected.png: Added. * platform/qt/fast/dom/constructed-objects-prototypes-expected.txt: Added. * platform/qt/fast/js/global-constructors-expected.png: * platform/qt/fast/js/global-constructors-expected.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100259 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
tonyg@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=72369 * platform/chromium/test_expectations.txt: Marked test flaky. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100257 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
hausmann@webkit.org authored
[Qt] REGRESSION(100123): It made inspector tests crash https://bugs.webkit.org/show_bug.cgi?id=72274 Reviewed by Tor Arne Vestbø. Source/WebCore: * platform/qt/RenderThemeQStyle.h: Remove uninitialized and duplicated m_page member that should really come from RenderThemeQt. LayoutTests: * platform/qt/Skipped: Unskip passing tests. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100256 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
reni@webkit.org authored
Patch by Oliver Varga <voliver@inf.u-szeged.hu> on 2011-11-15 * platform/qt/fast/dom/Window/window-properties-expected.png: * platform/qt/fast/dom/Window/window-properties-expected.txt: * platform/qt/fast/dom/Window/window-property-descriptors-expected.png: * platform/qt/fast/dom/Window/window-property-descriptors-expected.txt: * platform/qt/fast/dom/prototype-inheritance-2-expected.png: * platform/qt/fast/dom/prototype-inheritance-2-expected.txt: * platform/qt/fast/js/global-constructors-expected.png: * platform/qt/fast/js/global-constructors-expected.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100254 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
apavlov@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=72261 Reviewed by Pavel Feldman. Source/WebCore: Test: inspector/styles/svg-style.xhtml * inspector/InspectorStyleSheet.cpp: (WebCore::InspectorStyleSheet::inlineStyleSheetText): LayoutTests: * inspector/styles/svg-style-expected.txt: Added. * inspector/styles/svg-style.xhtml: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100251 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
reni@webkit.org authored
Unreviewed, gardening. Patch by Czene Tamás <tczene@inf.u-szeged.hu> on 2011-11-15 * platform/qt/svg/foreignObject/multiple-foreign-objects-expected.png: Added. * platform/qt/svg/foreignObject/multiple-foreign-objects-expected.txt: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100250 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
reni@webkit.org authored
Unreviewed gardening. * platform/qt/Skipped: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100249 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
tkent@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=53578 Reviewed by Adam Barth. Source/WebCore: Follows a JSC behavior change by r96893. * bindings/v8/custom/V8DOMStringMapCustom.cpp: (WebCore::V8DOMStringMap::namedPropertyGetter): Propagate to the JavaScript object if the DOMStringMap object doesn't have the requested item. (WebCore::V8DOMStringMap::namedPropertyDeleter): ditto. (WebCore::V8DOMStringMap::namedPropertySetter): Try to set a property to only a DOMStringMap object. LayoutTests: * platform/chromium/test_expectations.txt: Remove failure expectations of fast/dom/dataset.html and fast/dom/dataset-xhtml.xhtml. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100247 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
pfeldman@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=72276 Reviewed by Timothy Hatcher. Source/WebCore: Test: inspector/console/console-xpath.html * inspector/InjectedScriptSource.js: (.): LayoutTests: * inspector/console/console-xpath-expected.txt: Added. * inspector/console/console-xpath.html: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100246 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
pkasting@chromium.org authored
moving the text baselines. As a result all the Chromium Mac "not 10.6 CG" bots were still failing due to MISSING expectations. Unreviewed, gardening. * platform/chromium-cg-mac-snowleopard/css2.1/20110323/border-spacing-applies-to-015-expected.txt: Removed. * platform/chromium-cg-mac-snowleopard/css2.1/20110323/table-caption-001-expected.txt: Removed. * platform/chromium-cg-mac-snowleopard/css2.1/20110323/table-caption-002-expected.txt: Removed. * platform/chromium-cg-mac-snowleopard/css2.1/20110323/table-caption-horizontal-alignment-001-expected.txt: Removed. * platform/chromium-cg-mac-snowleopard/css2.1/20110323/table-caption-margins-001-expected.txt: Removed. * platform/chromium-cg-mac-snowleopard/css2.1/20110323/table-caption-optional-001-expected.txt: Removed. * platform/chromium-cg-mac-snowleopard/css2.1/20110323/table-caption-optional-002-expected.txt: Removed. * platform/chromium/css2.1/20110323/border-spacing-applies-to-015-expected.txt: Copied from platform/chromium-cg-mac-snowleopard/css2.1/20110323/border-spacing-applies-to-015-expected.txt. * platform/chromium/css2.1/20110323/table-caption-001-expected.txt: Copied from platform/chromium-cg-mac-snowleopard/css2.1/20110323/table-caption-001-expected.txt. * platform/chromium/css2.1/20110323/table-caption-002-expected.txt: Copied from platform/chromium-cg-mac-snowleopard/css2.1/20110323/table-caption-002-expected.txt. * platform/chromium/css2.1/20110323/table-caption-horizontal-alignment-001-expected.txt: Copied from platform/chromium-cg-mac-snowleopard/css2.1/20110323/table-caption-horizontal-alignment-001-expected.txt. * platform/chromium/css2.1/20110323/table-caption-margins-001-expected.txt: Copied from platform/chromium-cg-mac-snowleopard/css2.1/20110323/table-caption-margins-001-expected.txt. * platform/chromium/css2.1/20110323/table-caption-optional-001-expected.txt: Copied from platform/chromium-cg-mac-snowleopard/css2.1/20110323/table-caption-optional-001-expected.txt. * platform/chromium/css2.1/20110323/table-caption-optional-002-expected.txt: Copied from platform/chromium-cg-mac-snowleopard/css2.1/20110323/table-caption-optional-002-expected.txt. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100245 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
- 14 Nov, 2011 10 commits
-
-
pkasting@chromium.org authored
Unreviewed, gardening. * platform/chromium-linux/fast/repaint/scale-page-shrink-expected.txt: Removed. * platform/chromium-win/fast/repaint/scale-page-shrink-expected.png: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100240 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
dslomov@google.com authored
https://bugs.webkit.org/show_bug.cgi?id=72198 This patch ensures that: - Dense arrays are serialized densly, and not as name-value pairs - Sparse arrays are allocated as sparse on deserialization. The criteria to choose whether to serialize densly or sparsely is the size of a resulting serialized stream. Reviewed by David Levin. Test: fast/dom/Window/window-postmessage-arrays.html * bindings/v8/SerializedScriptValue.cpp: (WebCore::V8ObjectMap::Writer::writeDenseArray): (WebCore::V8ObjectMap::Writer::writeGenerateFreshSparseArray): (WebCore::V8ObjectMap::Writer::writeGenerateFreshDenseArray): (WebCore::V8ObjectMap::Serializer::writeDenseArray): (WebCore::V8ObjectMap::Serializer::AbstractObjectState::execDepth): (WebCore::V8ObjectMap::Serializer::AbstractObjectState::serializeProperties): (WebCore::V8ObjectMap::Serializer::ObjectState::advance): (WebCore::V8ObjectMap::Serializer::DenseArrayState::DenseArrayState): (WebCore::V8ObjectMap::Serializer::DenseArrayState::advance): (WebCore::V8ObjectMap::Serializer::DenseArrayState::objectDone): (WebCore::V8ObjectMap::Serializer::SparseArrayState::SparseArrayState): (WebCore::V8ObjectMap::Serializer::SparseArrayState::advance): (WebCore::V8ObjectMap::Serializer::serializeDensely): (WebCore::V8ObjectMap::Serializer::startArrayState): (WebCore::V8ObjectMap::Serializer::startObjectState): (WebCore::V8ObjectMap::Serializer::doSerialize): (WebCore::V8ObjectMap::Reader::read): (WebCore::V8ObjectMap::Deserializer::newSparseArray): (WebCore::V8ObjectMap::Deserializer::completeSparseArray): (WebCore::V8ObjectMap::Deserializer::completeDenseArray): LayoutTests: [V8][Chromium]Serialize dense arrays densly. https://bugs.webkit.org/show_bug.cgi?id=72198 Reviewed by David Levin. * fast/dom/Window/script-tests/postmessage-clone.js: * fast/dom/Window/window-postmessage-arrays-expected.txt: Added. * fast/dom/Window/window-postmessage-arrays.html: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100239 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
pkasting@chromium.org authored
green the Chromium Mac bots. Unreviewed, gardening. * platform/chromium-cg-mac-snowleopard/fast/table/prepend-in-anonymous-table-expected.txt: Removed. * platform/chromium/fast/table/prepend-in-anonymous-table-expected.txt: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100238 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
pkasting@chromium.org authored
green the Chromium Mac bots. Unreviewed, gardening. * platform/chromium-cg-mac-leopard/css2.1/20110323/border-spacing-applies-to-015-expected.png: Added. * platform/chromium-cg-mac-leopard/css2.1/20110323/table-caption-001-expected.png: Added. * platform/chromium-cg-mac-leopard/css2.1/20110323/table-caption-002-expected.png: Added. * platform/chromium-cg-mac-leopard/css2.1/20110323/table-caption-horizontal-alignment-001-expected.png: Added. * platform/chromium-cg-mac-leopard/css2.1/20110323/table-caption-margins-001-expected.png: Added. * platform/chromium-cg-mac-leopard/css2.1/20110323/table-caption-optional-001-expected.png: Added. * platform/chromium-cg-mac-leopard/css2.1/20110323/table-caption-optional-002-expected.png: Added. * platform/chromium-cg-mac-leopard/fast/table/dynamic-caption-add-before-child-expected.png: * platform/chromium-cg-mac-leopard/fast/table/multiple-captions-display-expected.png: * platform/chromium-cg-mac-leopard/tables/mozilla_expected_failures/other/test4-expected.png: * platform/chromium-cg-mac-snowleopard/css2.1/20110323/table-caption-001-expected.png: Removed. * platform/chromium-cg-mac-snowleopard/css2.1/20110323/table-caption-horizontal-alignment-001-expected.png: Removed. * platform/chromium-cg-mac-snowleopard/css2.1/20110323/table-caption-margins-001-expected.png: Removed. * platform/chromium-cg-mac-snowleopard/css2.1/20110323/table-caption-optional-001-expected.png: Removed. * platform/chromium-cg-mac-snowleopard/css2.1/20110323/table-caption-optional-002-expected.png: Removed. * platform/chromium-cg-mac-snowleopard/fast/table/dynamic-caption-add-before-child-expected.txt: Removed. * platform/chromium-cg-mac-snowleopard/fast/table/multiple-captions-display-expected.txt: Removed. * platform/chromium-cg-mac-snowleopard/tables/mozilla_expected_failures/other/test4-expected.txt: Removed. * platform/chromium-mac-leopard/css2.1/20110323/border-spacing-applies-to-015-expected.png: Added. * platform/chromium-mac-leopard/css2.1/20110323/table-caption-001-expected.png: Added. * platform/chromium-mac-leopard/css2.1/20110323/table-caption-002-expected.png: Added. * platform/chromium-mac-leopard/css2.1/20110323/table-caption-horizontal-alignment-001-expected.png: Added. * platform/chromium-mac-leopard/css2.1/20110323/table-caption-margins-001-expected.png: Added. * platform/chromium-mac-leopard/css2.1/20110323/table-caption-optional-001-expected.png: Added. * platform/chromium-mac-leopard/css2.1/20110323/table-caption-optional-002-expected.png: Added. * platform/chromium-mac-leopard/fast/table/dynamic-caption-add-before-child-expected.png: * platform/chromium-mac-leopard/fast/table/multiple-captions-display-expected.png: * platform/chromium-mac-leopard/tables/mozilla_expected_failures/other/test4-expected.png: * platform/chromium-mac-snowleopard/css2.1/20110323/border-spacing-applies-to-015-expected.png: Added. * platform/chromium-mac-snowleopard/css2.1/20110323/table-caption-002-expected.png: Added. * platform/chromium-mac-snowleopard/fast/table/dynamic-caption-add-before-child-expected.png: * platform/chromium-mac-snowleopard/fast/table/multiple-captions-display-expected.png: * platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/other/test4-expected.png: * platform/chromium/css2.1/20110323/table-caption-001-expected.png: Added. * platform/chromium/css2.1/20110323/table-caption-horizontal-alignment-001-expected.png: Added. * platform/chromium/css2.1/20110323/table-caption-margins-001-expected.png: Added. * platform/chromium/css2.1/20110323/table-caption-optional-001-expected.png: Added. * platform/chromium/css2.1/20110323/table-caption-optional-002-expected.png: Added. * platform/chromium/fast/table/dynamic-caption-add-before-child-expected.txt: Added. * platform/chromium/fast/table/multiple-captions-display-expected.txt: Added. * platform/chromium/tables/mozilla_expected_failures/other/test4-expected.txt: Added. * platform/chromium/test_expectations.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100237 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
pkasting@chromium.org authored
Leopard and earlier. Unreviewed, gardening. * platform/mac-snowleopard/svg/foreignObject: Added. * platform/mac-snowleopard/svg/foreignObject/multiple-foreign-objects-expected.txt: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100236 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
noel.gordon@gmail.com authored
https://bugs.webkit.org/show_bug.cgi?id=72234 Reviewed by Kent Tamura. JPEG image RGB pixels should render without color corruption and in strict order, regardless of the underlying machine pixel buffer endianess. * fast/images/resources/rgb-jpeg-blue.jpg: Added. * fast/images/resources/rgb-jpeg-green.jpg: Added. * fast/images/resources/rgb-jpeg-red.jpg: Added. * fast/images/rgb-jpeg-endian-pixels-expected.txt: Added. * fast/images/rgb-jpeg-endian-pixels.html: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100220 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
abarth@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=72308 Reviewed by Eric Seidel. Source/WebCore: This patch contains the bulk (all?) of the behavior differences in this patch series. Unique origins shouldn't remember their schemes. Doing so causes some privileges (e.g., local access) to leak into unique origins. * page/SecurityOrigin.cpp: (WebCore::SecurityOrigin::SecurityOrigin): - Explicitly clear out the protocol, host, and port for unique origins. A future patch will refactor all this code to be more elegant. * platform/SchemeRegistry.cpp: (WebCore::schemesWithUniqueOrigins): - Merge "about" and "javascript" in with the general case now that we don't have a separate notion of an empty origin. LayoutTests: * fast/filesystem/async-operations-expected.txt: * fast/filesystem/not-enough-arguments-expected.txt: * fast/filesystem/read-directory-expected.txt: * fast/filesystem/simple-persistent-expected.txt: * fast/filesystem/simple-readonly-expected.txt: * fast/filesystem/simple-temporary-expected.txt: - Update test results to show that we no longer leak the scheme in storage identifiers. * fast/frames/resources/sandboxed-iframe-storage-disallowed.html: - Inline script because the sandbox iframe isn't allowed to load local resources. * fast/frames/sandboxed-iframe-attribute-parsing.html: * fast/frames/sandboxed-iframe-forms-dynamic.html: * fast/frames/sandboxed-iframe-forms.html: * fast/frames/sandboxed-iframe-navigation-top-by-constant-name.html: * fast/frames/sandboxed-iframe-navigation-top-by-constant-name2.html: * fast/frames/sandboxed-iframe-navigation-top-by-name.html: * fast/frames/sandboxed-iframe-navigation-top.html: * media/video-controls-no-scripting.html: - Previously sandboxed local iframes still got universal access when we're running with universal access for file URLs! Now that they correctly get unique origins, we need to update these tests to allow-same-origin access in order for them to function properly. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100213 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
jchaffraix@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=72318 Reviewed by Tony Chang. Test that covers the change for bug 72296 and also increase our flexbox coverage. * css3/flexbox/display-flexbox-set-get-expected.txt: Added. * css3/flexbox/display-flexbox-set-get.html: Added. * css3/flexbox/resources/display-flexbox-set-get.js: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100211 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
abarth@webkit.org authored
https://bugs.webkit.org/show_bug.cgi?id=72322 Reviewed by Eric Seidel. See the bug for more details. Test: editing/pasteboard/drag-drop-to-data-url.html * page/SecurityOrigin.cpp: (WebCore::SecurityOrigin::canReceiveDragData): LayoutTests: Cross-origin drag-and-drop prevention ineffective https://bugs.webkit.org/show_bug.cgi?id=72322 Reviewed by Eric Seidel. Split drag-drop-dead-frame.html into two tests: one that tests for the previous crash and one that tests out data URL drag-and-drop behavior. * editing/pasteboard/drag-drop-dead-frame.html: * editing/pasteboard/drag-drop-to-data-url-expected.txt: Added. * editing/pasteboard/drag-drop-to-data-url.html: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100203 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-
tony@chromium.org authored
https://bugs.webkit.org/show_bug.cgi?id=72196 Reviewed by Ojan Vafai. Source/JavaScriptCore: * Configurations/FeatureDefines.xcconfig: Source/WebCore: * Configurations/FeatureDefines.xcconfig: * css/CSSComputedStyleDeclaration.cpp: (WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue): * css/CSSFlexValue.cpp: * css/CSSFlexValue.h: * css/CSSParser.cpp: (WebCore::CSSParser::parseValue): (WebCore::CSSParser::parseFlex): * css/CSSPrimitiveValueMappings.h: (WebCore::CSSPrimitiveValue::CSSPrimitiveValue): * css/CSSProperty.cpp: (WebCore::CSSProperty::isInheritedProperty): * css/CSSPropertyNames.in: * css/CSSStyleApplyProperty.cpp: (WebCore::ApplyPropertyLength::applyValue): (WebCore::CSSStyleApplyProperty::CSSStyleApplyProperty): * css/CSSStyleSelector.cpp: (WebCore::CSSStyleSelector::applyProperty): * css/CSSValue.cpp: (WebCore::CSSValue::cssText): (WebCore::CSSValue::destroy): * css/CSSValue.h: * css/CSSValueKeywords.in: * rendering/RenderFlexibleBox.cpp: * rendering/RenderFlexibleBox.h: * rendering/RenderObject.cpp: (WebCore::RenderObject::createObject): * rendering/RenderObject.h: (WebCore::RenderObject::isFlexibleBoxIncludingDeprecated): * rendering/style/RenderStyle.cpp: (WebCore::RenderStyle::RenderStyle): (WebCore::RenderStyle::diff): * rendering/style/RenderStyle.h: * rendering/style/RenderStyleConstants.h: * rendering/style/StyleFlexibleBoxData.cpp: * rendering/style/StyleFlexibleBoxData.h: * rendering/style/StyleRareNonInheritedData.cpp: (WebCore::StyleRareNonInheritedData::StyleRareNonInheritedData): (WebCore::StyleRareNonInheritedData::operator==): * rendering/style/StyleRareNonInheritedData.h: Source/WebKit/chromium: * features.gypi: Source/WebKit/mac: * Configurations/FeatureDefines.xcconfig: Source/WebKit2: * Configurations/FeatureDefines.xcconfig: Tools: * Scripts/build-webkit: WebKitLibraries: * win/tools/vsprops/FeatureDefines.vsprops: * win/tools/vsprops/FeatureDefinesCairo.vsprops: LayoutTests: * fast/css/getComputedStyle/computed-style-expected.txt: * fast/css/getComputedStyle/computed-style-without-renderer-expected.txt: * platform/chromium-win/fast/css/getComputedStyle/computed-style-expected.txt: * platform/chromium-win/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt: * platform/chromium-win/svg/css/getComputedStyle-basic-expected.txt: * svg/css/getComputedStyle-basic-expected.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@100198 268f45cc-cd09-0410-ab3c-d52691b4dbfc
-