1 2012-02-20 Adam Barth <abarth@webkit.org>
3 Invalid cast in WebCore::toElement / WebCore::HTMLElementStack::ElementRecord::element
4 https://bugs.webkit.org/show_bug.cgi?id=78975
6 Reviewed by Eric Seidel.
8 * html5lib/resourcesl/webkit-02.dat:
10 2012-02-20 Csaba Osztrogonác <ossy@webkit.org>
12 [Qt] Unreviewed gardening after r108259.
14 * platform/qt/fast/dom/prototype-inheritance-2-expected.txt: Updated.
16 2012-02-20 Gavin Barraclough <barraclough@apple.com>
18 [[Put]] should throw if prototype chain contains a readonly property.
19 https://bugs.webkit.org/show_bug.cgi?id=79069
21 Reviewed by Oliver Hunt.
23 Currently we only check the base of the put, not the prototype chain.
24 Fold this check in with the test for accessors.
26 * fast/js/Object-defineProperty-expected.txt:
27 * fast/js/script-tests/Object-defineProperty.js:
31 2012-02-20 Yanbin Zhang <yanbin.zhang@intel.com>
33 There is no complete test cases of optional arguments for MediaStream API and PeerConnection
34 https://bugs.webkit.org/show_bug.cgi?id=78578
36 Reviewed by Adam Barth.
38 * fast/mediastream/peerconnection-AttributesMethod-expected.txt: Added.
39 * fast/mediastream/peerconnection-AttributesMethod.html: Added.
40 * fast/mediastream/peerconnection-addstream-expected.txt:
41 * fast/mediastream/peerconnection-argument-types-expected.txt: Added.
42 * fast/mediastream/peerconnection-argument-types.html: Added.
43 * fast/mediastream/peerconnection-removestream-expected.txt: Added.
44 * fast/mediastream/peerconnection-removestream.html: Added.
45 * fast/mediastream/script-tests/AttributesMethod.js: Added.
46 * fast/mediastream/script-tests/argument-types.js: Added.
47 * fast/mediastream/script-tests/peerconnection-addstream.js:
48 * fast/mediastream/script-tests/peerconnection-removestream.js: Added.
50 2012-02-20 Yuta Kitamura <yutak@chromium.org>
52 [Chromium] Unreviewed, update test expectations.
54 * platform/chromium/fast/dom/Window/window-custom-prototype-expected.txt:
55 * platform/chromium/fast/js/string-capitalization-expected.txt:
56 * platform/chromium/test_expectations.txt:
58 2012-02-20 Gavin Barraclough <barraclough@apple.com>
60 DefineOwnProperty fails with numeric properties & Object.prototype
61 https://bugs.webkit.org/show_bug.cgi?id=79059
63 Reviewed by Oliver Hunt.
65 ObjectPrototype caches whether it contains any numeric properties (m_hasNoPropertiesWithUInt32Names),
66 calls to defineOwnProperty need to update this cache.
68 * fast/js/Object-defineProperty-expected.txt:
69 * fast/js/script-tests/Object-defineProperty.js:
70 (shouldBe.shouldBe.shouldBe.shouldBe.shouldBe.shouldBe.shouldBe.shouldThrow.Object.defineProperty):
72 2012-02-20 Martin Robinson <mrobinson@igalia.com>
74 [UNIX] Plugin information fields are not interpreted as UTF-8
75 https://bugs.webkit.org/show_bug.cgi?id=78635
77 Reviewed by Gustavo Noronha Silva.
79 Update expectations to match the fact that TestNetscapePlugin is now
80 returning a Unicode character in the description field.
82 * platform/chromium-linux/plugins/plugin-javascript-access-expected.txt:
83 * platform/gtk/plugins/plugin-javascript-access-expected.txt:
84 * platform/qt/plugins/plugin-javascript-access-expected.txt:
86 2012-02-20 Kihong Kwon <kihong.kwon@samsung.com>
88 Add a new test case for the Vibration API.
89 https://bugs.webkit.org/show_bug.cgi?id=72010
91 Reviewed by Hajime Morita.
93 * fast/dom/navigator-vibration-expected.txt: Added.
94 * fast/dom/navigator-vibration.html: Added.
95 * platform/chromium/test_expectations.txt:
96 * platform/gtk/Skipped:
97 * platform/mac/Skipped:
98 * platform/qt/Skipped:
99 * platform/win/Skipped:
100 * platform/wincairo/Skipped:
102 2012-02-20 David Barton <dbarton@mathscribe.com>
104 RenderMathMLRow::baselinePosition() only if linePositionMode == PositionOnContainingLine
105 https://bugs.webkit.org/show_bug.cgi?id=79039
107 Reviewed by Eric Seidel.
109 * platform/mac/mathml/presentation/fenced-expected.png:
110 * platform/mac/mathml/presentation/fenced-expected.txt:
111 * platform/mac/mathml/presentation/mo-expected.png:
112 * platform/mac/mathml/presentation/mo-expected.txt:
113 * platform/mac/mathml/presentation/mo-stretch-expected.png: Added property svn:mime-type.
114 * platform/mac/mathml/presentation/mo-stretch-expected.txt:
115 * platform/mac/mathml/presentation/row-expected.png:
116 * platform/mac/mathml/presentation/row-expected.txt:
118 2012-02-16 Gavin Barraclough <barraclough@apple.com>
120 Move special __proto__ property to Object.prototype
121 https://bugs.webkit.org/show_bug.cgi?id=78409
123 Reviewed by Oliver Hunt.
125 Re-implement this as a regular accessor property. This has three key benefits:
126 1) It makes it possible for objects to be given properties named __proto__.
127 2) Object.prototype.__proto__ can be deleted, preventing object prototypes from being changed.
128 3) This largely removes the magic used the implement __proto__, it can just be made a regular accessor property.
130 * fast/js/Object-getOwnPropertyNames-expected.txt:
131 * fast/js/cyclic-prototypes-expected.txt:
132 * fast/js/parser-syntax-check-expected.txt:
133 * fast/js/preventExtensions-expected.txt:
134 * fast/js/prototypes-expected.txt:
136 * fast/js/script-tests/Object-getOwnPropertyNames.js:
137 - __proto__ is now a property of Object Prototype.
138 * fast/js/script-tests/cyclic-prototypes.js:
139 - setting an object's prototype to null removes __proto__ setter, future usage won't set prototype.
140 * fast/js/script-tests/parser-syntax-check.js:
141 - Allow functions named __proto__
142 * fast/js/script-tests/preventExtensions.js:
143 - Setting __proto__ should not throw.
144 * fast/js/script-tests/prototypes.js:
145 - Objects may contained own properties named __proto__, add new test cases.
147 2012-02-20 Benjamin Poulain <benjamin@webkit.org>
149 Make JSCSSStyleDeclaration work directly with CSS Property ID
150 https://bugs.webkit.org/show_bug.cgi?id=79014
152 Reviewed by Geoffrey Garen.
154 * fast/dom/CSSStyleDeclaration/access-longest-css-property-expected.txt: Added.
155 * fast/dom/CSSStyleDeclaration/access-longest-css-property.html: Added.
157 2012-02-20 Csaba Osztrogonác <ossy@webkit.org>
159 Unreviewed gardening after r108226.
160 Skip tests because ENABLE(SHADOW_DOM) is disabled on these platforms.
162 * platform/efl/Skipped:
163 * platform/gtk/Skipped:
164 * platform/mac/Skipped:
165 * platform/qt/Skipped:
166 * platform/win/Skipped:
167 * platform/wincairo/Skipped:
168 * platform/wk2/Skipped:
170 2012-02-20 Michael Saboff <msaboff@apple.com>
172 Update toLower and toUpper tests for Unicode 6.1 changes
173 https://bugs.webkit.org/show_bug.cgi?id=78923
175 Reviewed by Oliver Hunt.
178 * fast/js/script-tests/string-capitalization.js: Updated the test
179 to handle a new set of characters that have different results depending
180 on what version of Unicode the platform supports. The tests work
181 for Unicode 5.0 through 6.1.
183 * fast/js/string-capitalization-expected.txt:
185 2012-02-20 David Barton <dbarton@mathscribe.com>
187 MathML internals - remove nonOperatorHeight(), hasBase()
188 https://bugs.webkit.org/show_bug.cgi?id=78977
190 Reviewed by Eric Seidel.
192 More tests with multiple embellished stretchy and non-stretchy operators will be added
193 later, when code is added to more precisely handle such cases.
195 * mathml/presentation/mo-stretch.html: Added.
196 * platform/mac/mathml/presentation/mo-stretch-expected.png: Added.
197 * platform/mac/mathml/presentation/mo-stretch-expected.txt: Added.
199 2012-02-20 Victor Carbune <victor@rosedu.org>
201 <track>-related events cuechange, enter, and exit should be sorted and filtered before dispatching
202 https://bugs.webkit.org/show_bug.cgi?id=72171
204 Reviewed by Eric Carlson.
206 * media/track/captions-webvtt/missed-cues.vtt: Added.
207 * media/track/captions-webvtt/sorted-dispatch.vtt: Added.
208 * media/track/track-cues-cuechange-expected.txt: This test had to be changed because
209 the synchronous dispatch of the events against the HTMLTrackElement doesn't mean that
210 the text track actually has any active cues at the dispatch moment.
211 * media/track/track-cues-cuechange.html: Changed tests structure to guide the entering and
212 exit events according to the asynchronous dispatch done by TextTrack.
213 * media/track/track-cues-missed-expected.txt: Added.
214 * media/track/track-cues-missed.html: Added.
215 * media/track/track-cues-sorted-before-dispatch-expected.txt: Added.
216 * media/track/track-cues-sorted-before-dispatch.html: Added.
218 2012-02-20 Vsevolod Vlasov <vsevik@chromium.org>
220 Unreviewed manual rollout of r107970 which breaks table column widths
221 updates from javascript (e.g. inspector's network panel).
223 * css2.1/20110323/fixed-table-layout-013-expected.html: Removed.
224 * css2.1/20110323/fixed-table-layout-013.htm: Removed.
225 * css2.1/20110323/fixed-table-layout-015-expected.html: Removed.
226 * css2.1/20110323/fixed-table-layout-015.htm: Removed.
228 2012-02-20 Alexander Pavlov <apavlov@chromium.org>
230 Web Inspector: DOMAttrModified should not be fired if the attribute value remains the same
231 https://bugs.webkit.org/show_bug.cgi?id=79025
233 Reviewed by Pavel Feldman.
235 * inspector/elements/set-attribute-expected.txt:
236 * inspector/elements/set-attribute.html:
238 2012-02-20 Yosifumi Inoue <yosin@chromium.org>
240 [Forms] Spin buttons of number input type should fire both input and change event
241 https://bugs.webkit.org/show_bug.cgi?id=75067
243 Reviewed by Kent Tamura.
245 * fast/forms/number/spin-button-events-expected.txt: Added.
246 * fast/forms/number/spin-button-events.html: Added.
248 2012-02-20 Shinya Kawanaka <shinyak@chromium.org>
250 Attached/Detached state must be testable
251 https://bugs.webkit.org/show_bug.cgi?id=79010
253 Reviewed by Hajime Morita.
255 * fast/dom/shadow/shadow-root-attached-expected.txt: Added.
256 * fast/dom/shadow/shadow-root-attached.html: Added.
258 2012-02-20 Philippe Normand <pnormand@igalia.com>
260 Unreviewed, GTK baselines for a new fast/css-generated-content
263 * platform/gtk/fast/css-generated-content/before-content-continuation-chain-expected.txt: Added.
265 2012-02-20 Philippe Normand <pnormand@igalia.com>
267 Unreviewed, GTK fast/repaint rebaseline.
269 * platform/gtk/fast/repaint/japanese-rl-selection-repaint-in-regions-expected.txt:
270 * platform/gtk/fast/repaint/line-flow-with-floats-in-regions-expected.txt:
271 * platform/gtk/fast/repaint/overflow-flipped-writing-mode-block-in-regions-expected.txt:
272 * platform/gtk/fast/repaint/region-painting-via-layout-expected.txt:
274 2012-02-19 Yuta Kitamura <yutak@chromium.org>
276 [Chromium] Unreviewed, update a few test expectations.
278 * platform/chromium/test_expectations.txt:
280 2012-02-19 Noel Gordon <noel.gordon@gmail.com>
282 [chromium] Unreviewed. Update remaining expectations for SVGImageElement-svgdom-requiredFeatures.html.
284 * platform/chromium-linux/svg/dynamic-updates/SVGUseElement-svgdom-requiredFeatures-expected.png:
285 * platform/chromium-mac-leopard/svg/dynamic-updates/SVGUseElement-svgdom-requiredFeatures-expected.png:
286 * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGUseElement-svgdom-requiredFeatures-expected.png: Added.
287 * platform/chromium-mac/svg/dynamic-updates/SVGUseElement-svgdom-requiredFeatures-expected.png: Removed.
288 * platform/chromium-win/svg/dynamic-updates/SVGUseElement-svgdom-requiredFeatures-expected.png:
289 * platform/chromium/test_expectations.txt:
291 2012-02-19 Yuta Kitamura <yutak@chromium.org>
293 [Chromium] Unreviewed gardening. Update Leopard expectation for
294 SVGImageElement-svgdom-requiredFeatures.html.
296 * platform/chromium-mac-leopard/svg/dynamic-updates/SVGImageElement-svgdom-requiredFeatures-expected.png:
298 2012-02-19 James Robinson <jamesr@chromium.org>
300 [chromium] Unreviewed - mark failing test as failing.
302 * platform/chromium/test_expectations.txt:
304 2012-02-19 James Robinson <jamesr@chromium.org>
306 [chromium] Unreviewed gardening. Add leopard baselines for fast/css/relative-positioned-block-* tests, fix up test_expectations.txt
308 * platform/chromium-mac-leopard/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.png: Added.
309 * platform/chromium-mac-leopard/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.png: Added.
310 * platform/chromium-mac-leopard/fast/css/relative-positioned-block-nested-with-inline-parent-expected.png: Added.
311 * platform/chromium-mac-leopard/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.png: Added.
312 * platform/chromium-mac-leopard/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.png: Added.
313 * platform/chromium-mac-leopard/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.png: Added.
314 * platform/chromium-mac-leopard/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.png: Added.
315 * platform/chromium-mac-leopard/fast/css/relative-positioned-block-with-inline-ancestor-expected.png: Added.
316 * platform/chromium-mac-leopard/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.png: Added.
317 * platform/chromium-mac-leopard/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.png: Added.
318 * platform/chromium-mac-leopard/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.png: Added.
319 * platform/chromium/test_expectations.txt:
321 2012-02-19 James Robinson <jamesr@chromium.org>
323 Unreviewed, rolling out r108195.
324 http://trac.webkit.org/changeset/108195
325 https://bugs.webkit.org/show_bug.cgi?id=77700
327 Lots of failing ASSERT()s on v8 bots, requested by kling on
330 * fast/css/css-value-wrapper-sameness-expected.txt: Removed.
331 * fast/css/css-value-wrapper-sameness.html: Removed.
332 * fast/dom/StyleSheet/gc-inline-style-cssvalues-expected.txt: Added.
333 * fast/dom/StyleSheet/gc-inline-style-cssvalues.html: Added.
334 * fast/dom/domListEnumeration-expected.txt:
335 * fast/dom/gc-9-expected.txt:
336 * fast/dom/gc-9.html:
337 * fast/dom/script-tests/domListEnumeration.js:
339 2012-02-19 Robert Hogan <robert@webkit.org>
341 Update expectations for test results changed by r108185
343 The bots only check text results.
347 * platform/gtk/test_expectations.txt:
348 * platform/mac/test_expectations.txt:
349 * platform/qt/test_expectations.txt:
351 2012-02-19 Andreas Kling <awesomekling@apple.com>
353 Make CSSValue wrapper getters return unique objects every time.
354 <http://webkit.org/b/77700>
356 Reviewed by Antti Koivisto.
358 * fast/css/css-value-wrapper-sameness-expected.txt: Added.
359 * fast/css/css-value-wrapper-sameness.html: Added.
360 * fast/dom/StyleSheet/gc-inline-style-cssvalues-expected.txt: Removed.
361 * fast/dom/StyleSheet/gc-inline-style-cssvalues.html: Removed.
362 * fast/dom/domListEnumeration-expected.txt:
363 * fast/dom/gc-9-expected.txt:
364 * fast/dom/gc-9.html:
365 * fast/dom/script-tests/domListEnumeration.js:
367 2012-02-19 Abhishek Arya <inferno@chromium.org>
369 Crash in RenderBlock::splitAnonymousBlocksAroundChild.
370 https://bugs.webkit.org/show_bug.cgi?id=78994
372 Reviewed by Eric Seidel.
374 * fast/table/table-split-inside-table-expected.txt: Added.
375 * fast/table/table-split-inside-table.html: Added.
377 2012-02-19 Robert Hogan <robert@webkit.org>
379 Chromium results for r108185
381 Unreviewed gardening.
383 * platform/chromium-linux/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.png: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.png.
384 * platform/chromium-linux/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.png: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.png.
385 * platform/chromium-linux/fast/css/relative-positioned-block-nested-with-inline-parent-expected.png: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-expected.png.
386 * platform/chromium-linux/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.png: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.png.
387 * platform/chromium-linux/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.png: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.png.
388 * platform/chromium-linux/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.png: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.png.
389 * platform/chromium-linux/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.png: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.png.
390 * platform/chromium-linux/fast/css/relative-positioned-block-with-inline-ancestor-expected.png: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-expected.png.
391 * platform/chromium-linux/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.png: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.png.
392 * platform/chromium-linux/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.png: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.png.
393 * platform/chromium-linux/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.png: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.png.
394 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.png: Added.
395 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.txt: Added.
396 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.png: Added.
397 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.txt: Added.
398 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-nested-with-inline-parent-expected.png: Added.
399 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-nested-with-inline-parent-expected.txt: Added.
400 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.png: Added.
401 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.txt: Added.
402 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.png: Added.
403 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.txt: Added.
404 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.png: Added.
405 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.txt: Added.
406 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.png: Added.
407 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.txt: Added.
408 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-ancestor-expected.png: Added.
409 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-ancestor-expected.txt: Added.
410 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.png: Added.
411 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.txt: Added.
412 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.png: Added.
413 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.txt: Added.
414 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.png: Added.
415 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.txt: Added.
416 * platform/chromium-mac-snowleopard/fast/encoding/utf-16-big-endian-expected.png: Renamed from LayoutTests/platform/chromium-mac-leopard/fast/encoding/utf-16-big-endian-expected.png.
417 * platform/chromium-mac-snowleopard/fast/encoding/utf-16-little-endian-expected.png: Renamed from LayoutTests/platform/chromium-mac-leopard/fast/encoding/utf-16-little-endian-expected.png.
418 * platform/chromium-mac-snowleopard/fast/inline/continuation-outlines-with-layers-expected.png: Renamed from LayoutTests/platform/chromium-mac/fast/inline/continuation-outlines-with-layers-expected.png.
419 * platform/chromium-mac-snowleopard/fast/repaint/transform-absolute-in-positioned-container-expected.png: Added.
420 * platform/chromium-mac-snowleopard/fast/repaint/transform-absolute-in-positioned-container-expected.txt: Added.
421 * platform/chromium-mac/fast/encoding/utf-16-big-endian-expected.png: Removed.
422 * platform/chromium-mac/fast/encoding/utf-16-little-endian-expected.png: Removed.
423 * platform/chromium-win/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.png: Added.
424 * platform/chromium-win/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.txt: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.txt.
425 * platform/chromium-win/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.png: Added.
426 * platform/chromium-win/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.txt: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.txt.
427 * platform/chromium-win/fast/css/relative-positioned-block-nested-with-inline-parent-expected.png: Added.
428 * platform/chromium-win/fast/css/relative-positioned-block-nested-with-inline-parent-expected.txt: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-expected.txt.
429 * platform/chromium-win/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.png: Added.
430 * platform/chromium-win/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.txt: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.txt.
431 * platform/chromium-win/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.png: Added.
432 * platform/chromium-win/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.txt: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.txt.
433 * platform/chromium-win/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.png: Added.
434 * platform/chromium-win/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.txt: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.txt.
435 * platform/chromium-win/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.png: Added.
436 * platform/chromium-win/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.txt: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.txt.
437 * platform/chromium-win/fast/css/relative-positioned-block-with-inline-ancestor-expected.png: Added.
438 * platform/chromium-win/fast/css/relative-positioned-block-with-inline-ancestor-expected.txt: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-expected.txt.
439 * platform/chromium-win/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.png: Added.
440 * platform/chromium-win/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.txt: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.txt.
441 * platform/chromium-win/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.png: Added.
442 * platform/chromium-win/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.txt: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.txt.
443 * platform/chromium-win/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.png: Added.
444 * platform/chromium-win/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.txt: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.txt.
445 * platform/chromium-win/fast/encoding/utf-16-big-endian-expected.png:
446 * platform/chromium-win/fast/encoding/utf-16-little-endian-expected.png:
447 * platform/chromium-win/fast/inline/continuation-outlines-with-layers-expected.png:
448 * platform/chromium-win/fast/repaint/transform-absolute-in-positioned-container-expected.png:
450 2012-02-18 Robert Hogan <robert@webkit.org>
452 CSS 2.1 failure: inline-box-002.htm fails
453 https://bugs.webkit.org/show_bug.cgi?id=69210
455 Reviewed by David Hyatt.
457 * css2.1/20110323/dynamic-top-change-005-expected.html: Added.
458 * css2.1/20110323/dynamic-top-change-005.htm: Added.
459 * css2.1/20110323/dynamic-top-change-005a-expected.html: Added.
460 * css2.1/20110323/dynamic-top-change-005a.htm: Added.
461 * css2.1/20110323/dynamic-top-change-005b-expected.html: Added.
462 * css2.1/20110323/dynamic-top-change-005b.htm: Added.
463 * css2.1/20110323/inline-box-002-expected.html: Added.
464 * css2.1/20110323/inline-box-002.htm: Added.
465 * fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed.html: Added.
466 * fast/css/relative-positioned-block-nested-with-inline-parent-dynamic.html: Added.
467 * fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic.html: Added.
468 * fast/css/relative-positioned-block-nested-with-inline-parent.html: Added.
469 * fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic.html: Added.
470 * fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed.html: Added.
471 * fast/css/relative-positioned-block-with-inline-ancestor-dynamic.html: Added.
472 * fast/css/relative-positioned-block-with-inline-ancestor.html: Added.
473 * fast/css/relative-positioned-block-with-inline-parent-dynamic-removed.html: Added.
474 * fast/css/relative-positioned-block-with-inline-parent-dynamic.html: Added.
475 * fast/css/relative-positioned-block-with-inline-parent-expected.html: Added.
476 * fast/css/relative-positioned-block-with-inline-parent-keeps-style.html: Added.
477 * fast/css/relative-positioned-block-with-inline-parent.html: Added.
478 * platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.png: Added.
479 * platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.txt: Added.
480 * platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.png: Added.
481 * platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.txt: Added.
482 * platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-expected.png: Added.
483 * platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-expected.txt: Added.
484 * platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.png: Added.
485 * platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.txt: Added.
486 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.png: Added.
487 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.txt: Added.
488 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.png: Added.
489 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.txt: Added.
490 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.png: Added.
491 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.txt: Added.
492 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-expected.png: Added.
493 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-expected.txt: Added.
494 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.png: Added.
495 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.txt: Added.
496 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.png: Added.
497 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.txt: Added.
498 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.png: Added.
499 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.txt: Added.
500 * platform/chromium-linux/fast/encoding/utf-16-big-endian-expected.png:
501 * platform/chromium-linux/fast/encoding/utf-16-little-endian-expected.png:
502 * platform/chromium-linux/fast/inline/continuation-outlines-with-layers-2-expected.txt:
503 * platform/chromium-linux/fast/inline/continuation-outlines-with-layers-expected.png:
504 * platform/chromium-linux/fast/repaint/transform-absolute-in-positioned-container-expected.png:
505 * platform/chromium-win/fast/encoding/utf-16-big-endian-expected.txt:
506 * platform/chromium-win/fast/encoding/utf-16-little-endian-expected.txt:
507 * platform/chromium-win/fast/inline/continuation-outlines-with-layers-expected.txt:
508 * platform/chromium-win/fast/repaint/transform-absolute-in-positioned-container-expected.txt:
509 * platform/chromium/test_expectations.txt: Suppress existing tests until results rebaselined.
510 * platform/gtk/test_expectations.txt: ditto
511 * platform/mac/test_expectations.txt: ditto
512 * platform/qt/test_expectations.txt: ditto
513 * platform/win/Skipped: ditto
515 2012-02-18 Abhishek Arya <inferno@chromium.org>
517 Unreviewed, rolling out r107965.
518 http://trac.webkit.org/changeset/107965
519 https://bugs.webkit.org/show_bug.cgi?id=78273
521 Crashes on ClusterFuzz.
523 * fast/multicol/span/clone-flexbox-expected.txt: Removed.
524 * fast/multicol/span/clone-flexbox.html: Removed.
526 2012-02-18 Andreas Kling <awesomekling@apple.com>
528 Unreviewed chromium rebaselines after r108157.
530 * platform/chromium-mac/fast/dom/setPrimitiveValue-exceptions-expected.txt:
531 * platform/chromium-win/fast/dom/setPrimitiveValue-exceptions-expected.txt:
533 2012-02-18 Csaba Osztrogonác <ossy@webkit.org>
535 [Qt] Unreviewed gardening after r107971.
537 * platform/qt/tables/mozilla/bugs/bug27038-1-expected.png:
538 * platform/qt/tables/mozilla/bugs/bug27038-1-expected.txt:
539 * platform/qt/tables/mozilla/bugs/bug27038-2-expected.png:
540 * platform/qt/tables/mozilla/bugs/bug27038-2-expected.txt:
541 * platform/qt/test_expectations.txt:
543 2012-02-18 Csaba Osztrogonác <ossy@webkit.org>
545 [Qt] Unreviewed weekend gardening, skip new failing tests.
547 * platform/qt/Skipped:
549 2012-02-18 Csaba Osztrogonác <ossy@webkit.org>
551 Unreviewed gardening r108133.
553 * fast/css/getComputedStyle/computed-style-expected.txt:
554 * fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
555 * svg/css/getComputedStyle-basic-expected.txt:
557 2012-02-18 Andreas Kling <awesomekling@apple.com>
559 FontFamilyValue: Utilize inheritance from CSSPrimitiveValue better.
560 <http://webkit.org/b/78806>
562 Reviewed by Antti Koivisto.
564 Rebaseline as CSSPrimitiveValue.getStringValue() is no longer broken for
567 * fast/dom/setPrimitiveValue-exceptions-expected.txt:
569 2012-02-17 Adam Klein <adamk@chromium.org>
571 Avoid inconsistency in Node::inDocument due to DOMSubtreeModified dispatch
572 https://bugs.webkit.org/show_bug.cgi?id=76087
574 Reviewed by Ryosuke Niwa.
576 * fast/dom/getElementById-consistency-expected.txt: Added.
577 * fast/dom/getElementById-consistency.html: Added.
578 * fast/dom/getElementById-consistency2-expected.txt: Added.
579 * fast/dom/getElementById-consistency2.html: Added.
581 2012-02-17 Joshua Bell <jsbell@chromium.org>
583 IndexedDB: Support overloaded methods that take IDBKey or IDBKeyRange
584 https://bugs.webkit.org/show_bug.cgi?id=78399
586 Tests IDBObjectStore.delete(IDBKeyRange). The spec has been updated such
587 that delete() always yields a result of undefined rather than a boolean,
588 so other test expectations are updated.
590 Reviewed by Tony Chang.
592 * storage/indexeddb/delete-range-expected.txt: Added.
593 * storage/indexeddb/delete-range.html: Added.
594 * storage/indexeddb/mozilla/delete-result-expected.txt:
595 * storage/indexeddb/mozilla/delete-result.html:
596 * storage/indexeddb/objectStore-required-arguments-expected.txt:
597 * storage/indexeddb/objectstore-basics-expected.txt:
598 * storage/indexeddb/objectstore-basics-workers-expected.txt:
599 * storage/indexeddb/resources/objectstore-basics.js:
602 (removeSuccessButNotThere):
604 2012-02-17 James Robinson <jamesr@chromium.org>
606 [chromium] Unreviewed gardening, update baselines for svg/dynamic-updates/.. and some more getComputedStyle
609 * platform/chromium-linux/svg/dynamic-updates/SVGImageElement-svgdom-requiredFeatures-expected.png:
610 * platform/chromium-mac-snowleopard/fast/css/getComputedStyle/computed-style-expected.txt:
611 * platform/chromium-mac-snowleopard/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
612 * platform/chromium-mac-snowleopard/svg/css/getComputedStyle-basic-expected.txt:
613 * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGImageElement-svgdom-requiredFeatures-expected.png: Added.
614 * platform/chromium-mac/svg/dynamic-updates/SVGImageElement-svgdom-requiredFeatures-expected.png: Removed.
615 * platform/chromium-win/svg/dynamic-updates/SVGImageElement-svgdom-requiredFeatures-expected.png:
617 2012-02-17 James Robinson <jamesr@chromium.org>
619 [chromium] Unreviewed - removing expectations for tests that consistently pass, update some baselines for
620 getComputedStyle due to new -webkit-line-align property.
622 * platform/chromium-win/fast/css/getComputedStyle/computed-style-expected.txt:
623 * platform/chromium-win/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
624 * platform/chromium-win/svg/css/getComputedStyle-basic-expected.txt:
625 * platform/chromium/test_expectations.txt:
627 2012-02-17 Stephen Chenney <schenney@chromium.org>
629 Crash in SVGAnimateElement due to changed target
630 https://bugs.webkit.org/show_bug.cgi?id=75096
632 Reviewed by Nikolas Zimmermann.
634 This test verifies that the target element information is correctly
635 updated when the target changes. Note that the clone is required, as
636 it causes the results of one animation to be pushed to a different
639 * svg/animations/svglength-animation-retarget-crash-expected.txt: Added.
640 * svg/animations/svglength-animation-retarget-crash.html: Added.
642 2012-02-17 David Hyatt <hyatt@apple.com>
644 https://bugs.webkit.org/show_bug.cgi?id=78934
646 Add the -webkit-line-align property to support the alignment of lines in the inline direction
649 Reviewed by Dan Bernstein.
651 * fast/line-grid/line-align-parsing-expected.txt: Added.
652 * fast/line-grid/line-align-parsing.html: Added.
653 * fast/line-grid/script-tests/line-align-parsing.js: Added.
655 2012-02-17 James Robinson <jamesr@chromium.org>
657 [chromium] Unreviewed. Land the last (hopefully) new baselines for fast/css/non-empty-span.html
659 * platform/chromium-mac-leopard/fast/css/non-empty-span-expected.png: Added.
660 * platform/chromium-win/fast/css/non-empty-span-expected.png: Added.
661 * platform/chromium-win/fast/css/non-empty-span-expected.txt: Renamed from LayoutTests/platform/chromium-linux/fast/css/non-empty-span-expected.txt.
663 2012-02-17 Abhishek Arya <inferno@chromium.org>
665 Incorrect placement of a new child when beforeChild and its
666 previous sibling are in the same table.
667 https://bugs.webkit.org/show_bug.cgi?id=78269
669 Reviewed by Julien Chaffraix.
671 Test passes if the div child splits the table parts and is not
672 part of table itself.
674 * fast/table/table-cell-split-expected.txt: Added.
675 * fast/table/table-cell-split.html: Added.
676 * fast/table/table-row-split-expected.txt: Added.
677 * fast/table/table-row-split.html: Added.
678 * fast/table/table-section-split-expected.txt: Added.
679 * fast/table/table-section-split-with-after-content-expected.txt: Added.
680 * fast/table/table-section-split-with-after-content.html: Added.
681 * fast/table/table-section-split.html: Added.
683 2012-02-17 James Robinson <jamesr@chromium.org>
685 [chromium] Unreviewed - add some more fast/css/non-empty-span expectations.
687 * platform/chromium-mac-snowleopard/fast/css/non-empty-span-expected.png: Added.
688 * platform/chromium-mac-snowleopard/fast/css/non-empty-span-expected.txt: Added.
690 2012-02-17 James Robinson <jamesr@chromium.org>
692 [chromium] Unreviewed baseline and expectation updates.
694 * platform/chromium-linux/fast/css/non-empty-span-expected.png: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/non-empty-span-expected.png.
695 * platform/chromium-linux/fast/css/non-empty-span-expected.txt: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/non-empty-span-expected.txt.
696 * platform/chromium/test_expectations.txt:
698 2012-02-16 Dana Jansens <danakj@chromium.org>
700 [chromium] Re-enable compositing/culling/scrolled-within-boxshadow.html
701 https://bugs.webkit.org/show_bug.cgi?id=78859
703 Reviewed by James Robinson.
705 * platform/chromium/test_expectations.txt:
707 2012-02-17 Dana Jansens <danakj@chromium.org>
709 [chromium] Rebaseline tests for composited filters
710 https://bugs.webkit.org/show_bug.cgi?id=78903
712 Reviewed by Stephen White.
714 * compositing/culling/filter-occlusion-alpha-large.html:
715 * compositing/culling/filter-occlusion-alpha.html:
716 * compositing/culling/filter-occlusion-blur-large.html:
717 * compositing/culling/filter-occlusion-blur.html:
718 * platform/chromium-linux/compositing/culling/filter-occlusion-blur-expected.png: Added.
719 * platform/chromium-linux/compositing/culling/filter-occlusion-blur-large-expected.png: Added.
720 * platform/chromium-win/compositing/culling/filter-occlusion-blur-expected.png: Added.
721 * platform/chromium-win/compositing/culling/filter-occlusion-blur-large-expected.png: Added.
723 2012-02-17 James Robinson <jamesr@chromium.org>
725 [chromium] Update baselines for border-radius-wide-border-01 due to skia change. Unreviewed.
727 * platform/chromium-linux/fast/borders/border-radius-wide-border-01-expected.png:
728 * platform/chromium-mac-snowleopard/fast/borders/border-radius-wide-border-01-expected.png:
729 * platform/chromium-win/fast/borders/border-radius-wide-border-01-expected.png:
731 2012-02-16 Oliver Hunt <oliver@apple.com>
733 Implement Error.stack
734 https://bugs.webkit.org/show_bug.cgi?id=66994
736 Reviewed by Gavin Barraclough.
738 Add testcases for producing a stack trace on exception objects.
740 * fast/js/exception-properties-expected.txt:
741 * fast/js/script-tests/exception-properties.js:
742 * fast/js/script-tests/stack-trace.js: Added.
757 (object.get getter1.o.valueOf):
758 (object.get getter1):
759 (object.get getter2):
760 (object.get getter3.o2.valueOf):
761 (object.get getter3):
762 (object.nonInlineable.callCount):
763 (object.nonInlineable):
765 (yetAnotherInlinedCall):
773 * fast/js/stack-trace-expected.txt: Added.
774 * fast/js/stack-trace.html: Added.
776 2012-01-23 Robert Hogan <robert@webkit.org>
778 REGRESSION: empty span creates renders with non-zero height
779 https://bugs.webkit.org/show_bug.cgi?id=76465
781 Reviewed by David Hyatt.
783 * fast/css/empty-span-expected.html: Added.
784 * fast/css/empty-span.html: Added.
785 * fast/css/non-empty-span.html: Added.
786 * platform/chromium/test_expectations.txt: Suppress result until rebaseline on MAC and WIN.
787 * platform/chromium-linux-x86/fast/css/non-empty-span-expected.png: Added.
788 * platform/chromium-linux-x86/fast/css/non-empty-span-expected.txt: Added.
790 2012-02-17 Abhishek Arya <inferno@chromium.org>
792 :before content incorrectly placed in continuation
793 when we don't have a first child.
794 https://bugs.webkit.org/show_bug.cgi?id=78380
796 Reviewed by David Hyatt.
798 * fast/css-generated-content/before-content-continuation-chain-expected.png: Added.
799 * fast/css-generated-content/before-content-continuation-chain-expected.txt: Added.
800 * fast/css-generated-content/before-content-continuation-chain.html: Added.
802 2012-02-17 Mihnea Ovidenie <mihnea@adobe.com>
804 CSS regions enabled by default
805 https://bugs.webkit.org/show_bug.cgi?id=78525
807 Reviewed by David Hyatt.
809 Add a runtime preference to enable/disable regions functionality at runtime(WebKitCSSRegionsEnabled).
810 CSSRegions are still enabled by default.
811 In DRT, use layoutTestController.overridePreference("WebKitCSSRegionsEnabled", "0") to disable the css regions functionality.
813 * fast/regions/css-regions-disabled-expected.txt: Added.
814 * fast/regions/css-regions-disabled.html: Added.
815 * fast/regions/script-tests/css-regions-disabled.js: Added.
816 (testWebKitFlowInto):
817 (testWebKitFlowFrom):
818 (testWebKitRegionOverflow):
819 (testComputedStyleWebKitFlowInto):
820 (testComputedStyleWebKitFlowFrom):
821 (testComputedStyleWebKitRegionOverflow):
823 2012-02-17 Seo Sanghyeon <sh4.seo@samsung.com>
825 Case typo in fast/js/script-tests/date-constructor.js
826 https://bugs.webkit.org/show_bug.cgi?id=78898
828 Reviewed by Adam Barth.
830 * fast/js/script-tests/date-constructor.js: toSTring to toString
832 2012-02-17 Mihnea Ovidenie <mihnea@adobe.com>
834 [CSSRegions]Implement NamedFlow::overflow
835 https://bugs.webkit.org/show_bug.cgi?id=78880
837 Reviewed by David Hyatt.
839 * fast/regions/resources/helper.js:
840 (testContentToRegionsMapping):
841 * fast/regions/resources/region-style.css:
842 * fast/regions/webkit-named-flow-overflow-expected.txt: Added.
843 * fast/regions/webkit-named-flow-overflow.html: Added.
845 2012-02-17 Joe Thomas <joethomas@motorola.com>
847 flex-wrap:nowrap should be flex-wrap:none
848 https://bugs.webkit.org/show_bug.cgi?id=78772
850 As per the spec http://dev.w3.org/csswg/css3-flexbox/#flex-wrap0, flex-wrap:nowrap should be changed to flex-wrap:none.
852 Reviewed by Ojan Vafai.
854 * css3/flexbox/css-properties-expected.txt:
855 * css3/flexbox/script-tests/css-properties.js:
856 * fast/css/getComputedStyle/computed-style-expected.txt:
857 * fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
858 * platform/chromium-mac-snowleopard/fast/css/getComputedStyle/computed-style-expected.txt:
859 * platform/chromium-mac-snowleopard/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
860 * platform/chromium-mac-snowleopard/svg/css/getComputedStyle-basic-expected.txt:
861 * platform/chromium-win/fast/css/getComputedStyle/computed-style-expected.txt:
862 * platform/chromium-win/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
863 * platform/chromium-win/svg/css/getComputedStyle-basic-expected.txt:
864 * platform/mac/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
865 * svg/css/getComputedStyle-basic-expected.txt:
867 2012-02-17 Julien Chaffraix <jchaffraix@webkit.org>
869 Table cell's anonymous wrappers are left in the tree, impacting our layout
870 https://bugs.webkit.org/show_bug.cgi?id=7180
872 Reviewed by David Hyatt.
874 * fast/table/table-switch-cell-position-bad-layout-expected.html: Added.
875 * fast/table/table-switch-cell-position-bad-layout.html: Added.
877 2012-02-17 Rob Buis <rbuis@rim.com>
879 ASSERT (and crash) with dynamically moved <font-face>
880 https://bugs.webkit.org/show_bug.cgi?id=64839
882 Reviewed by Antti Koivisto.
884 * svg/custom/font-face-move-expected.txt: Added.
885 * svg/custom/font-face-move.svg: Added.
887 2012-02-17 Julien Chaffraix <jchaffraix@webkit.org>
889 Unreviewed Chromium rebaseline after r107971.
891 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug27038-1-expected.png:
892 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug27038-2-expected.png:
893 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug27038-1-expected.png:
894 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug27038-1-expected.txt: Added.
895 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug27038-2-expected.png:
896 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug27038-2-expected.txt: Added.
897 * platform/chromium-win-vista/tables/mozilla/bugs: Removed.
898 * platform/chromium/test_expectations.txt:
900 2012-02-17 James Robinson <jamesr@chromium.org>
902 [chromium] Unreviewed, update chromium pixel baselines for r108079
904 * fast/borders/border-mixed-alpha-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/border-mixed-alpha-expected.txt.
905 * fast/borders/only-one-border-with-width-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/only-one-border-with-width-expected.txt.
906 * platform/chromium-mac-snowleopard/fast/borders/border-mixed-alpha-expected.png:
907 * platform/chromium-mac-snowleopard/fast/borders/mixed-border-styles-expected.png:
908 * platform/chromium-mac-snowleopard/fast/borders/only-one-border-with-width-expected.png: Added.
909 * platform/chromium-mac-snowleopard/fast/css/color-leakage-expected.png: Added.
910 * platform/chromium-win/fast/borders/border-mixed-alpha-expected.png:
911 * platform/chromium-win/fast/borders/mixed-border-styles-expected.png:
912 * platform/chromium-win/fast/borders/only-one-border-with-width-expected.png: Copied from LayoutTests/platform/chromium-win/fast/css/color-leakage-expected.png.
913 * platform/chromium-win/fast/css/color-leakage-expected.png:
914 * platform/mac/fast/borders/border-mixed-alpha-expected.txt: Removed.
915 * platform/mac/fast/borders/only-one-border-with-width-expected.txt: Removed.
916 * platform/qt/fast/borders/border-mixed-alpha-expected.txt: Removed.
917 * platform/qt/fast/borders/only-one-border-with-width-expected.txt: Removed.
919 2012-02-17 Stephen Chenney <schenney@chromium.org>
921 Crash at WebCore::SVGUseElement::expandSymbolElementsInShadowTree
922 https://bugs.webkit.org/show_bug.cgi?id=77639
924 Reviewed by Nikolas Zimmermann.
926 Fix a SVG crash in Release builds, although it still crashes in Debug builds.
927 This test is to verify no crash in Release builds, while expectations/Skipped
928 are added for Debug builds. Bug 77764 tracks the Debug fix.
930 * platform/chromium/test_expectations.txt:
931 * platform/gtk/Skipped:
932 * platform/mac/Skipped:
933 * platform/qt/Skipped:
934 * platform/win/Skipped:
935 * svg/custom/use-referencing-style-crash-expected.txt: Added.
936 * svg/custom/use-referencing-style-crash.svg: Added.
938 2012-02-17 Florin Malita <fmalita@google.com>
940 chrome.dll!WebCore::SVGTRefElement::updateReferencedText ReadAV@NULL (e85cb8e140071fa7790cad215b0109dc)
941 https://bugs.webkit.org/show_bug.cgi?id=74858
943 Reviewed by Nikolas Zimmermann.
945 * svg/custom/tref-remove-target-crash-expected.svg: Added.
946 * svg/custom/tref-remove-target-crash.svg: Added.
948 2012-02-17 Pavel Feldman <pfeldman@google.com>
950 Web Inspector: check undo-redo boundaries based on current action index, not history size.
951 https://bugs.webkit.org/show_bug.cgi?id=78895
953 Reviewed by Vsevolod Vlasov.
955 * inspector/elements/perform-undo-undo-expected.txt: Added.
956 * inspector/elements/perform-undo-undo.html: Added.
957 * inspector/styles/perform-undo-perform-of-mergable-action-expected.txt: Added.
958 * inspector/styles/perform-undo-perform-of-mergable-action.html: Added.
960 2012-02-17 Philippe Normand <pnormand@igalia.com>
962 Unreviewed, skipping 2 new test failures on GTK.
964 * platform/gtk/Skipped:
965 * platform/gtk/test_expectations.txt:
967 2012-02-17 Ilya Tikhonovsky <loislo@chromium.org>
969 Web Inspecter: Unreviewed. Adjust expectation for script-formatter-console.html
971 * platform/chromium/test_expectations.txt:
973 2012-02-17 Noel Gordon <noel.gordon@gmail.com>
975 [chromium] Rebaseline JPEG image results after r107389
976 https://bugs.webkit.org/show_bug.cgi?id=78454
978 Unreviewed. Rebaseline #34 of N. Restore/move following tests back in BUGCR9950
979 group with a WIN exception for an IMAGE failure.
981 WIN : svg/W3C-SVG-1.1/animate-elem-36-t.svg = IMAGE
982 WIN : svg/W3C-SVG-1.1/animate-elem-39-t.svg = IMAGE
983 WIN : svg/W3C-SVG-1.1/animate-elem-40-t.svg = IMAGE
985 * platform/chromium/test_expectations.txt:
987 2012-02-17 Pavel Feldman <pfeldman@google.com>
989 Web Inspector: split innerUpdate into rebuildUpdate and refreshUpdate, make computed styles load lazily.
990 https://bugs.webkit.org/show_bug.cgi?id=78827
992 Reviewed by Vsevolod Vlasov.
994 * http/tests/inspector/elements-test.js:
995 (initialize_ElementTest.InspectorTest.waitForStyles):
996 * inspector/styles/undo-add-property.html:
997 * inspector/styles/undo-change-property.html:
998 * inspector/styles/updates-during-dom-traversal.html:
999 * inspector/styles/updates-throttled.html:
1001 2012-02-17 Noel Gordon <noel.gordon@gmail.com>
1003 [chromium] Rebaseline JPEG image results after r107389
1004 https://bugs.webkit.org/show_bug.cgi?id=78454
1006 Unreviewed. Rebaseline #32 of N. Chrome MAC SnowLeopard differences under discussion
1007 in bug 54322, retain IMAGE expectation on SnowLeopard, update pixel results.
1009 * platform/chromium-linux/tables/mozilla/core/row_span-expected.png:
1010 * platform/chromium-linux/tables/mozilla/other/cell_widths-expected.png:
1011 * platform/chromium-mac-leopard/tables/mozilla/core/row_span-expected.png:
1012 * platform/chromium-mac-leopard/tables/mozilla/other/cell_widths-expected.png:
1013 * platform/chromium-mac-snowleopard/tables/mozilla/core/row_span-expected.png: Added.
1014 * platform/chromium-mac-snowleopard/tables/mozilla/other/cell_widths-expected.png: Added.
1015 * platform/chromium-win/tables/mozilla/core/row_span-expected.png:
1016 * platform/chromium-win/tables/mozilla/other/cell_widths-expected.png:
1017 * platform/chromium/test_expectations.txt:
1019 2012-02-17 Noel Gordon <noel.gordon@gmail.com>
1021 [chromium] Rebaseline JPEG image results after r107389
1022 https://bugs.webkit.org/show_bug.cgi?id=78454
1024 Unreviewed. Rebaseline #33 of N. See also bug 78219.
1026 * platform/chromium-linux/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png:
1027 * platform/chromium-linux/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png:
1028 * platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png:
1029 * platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png:
1030 * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png: Added.
1031 * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png: Added.
1032 * platform/chromium-mac/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png: Removed.
1033 * platform/chromium-mac/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png: Removed.
1034 * platform/chromium-win/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png:
1035 * platform/chromium-win/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png:
1036 * platform/chromium/test_expectations.txt:
1038 2012-02-17 Noel Gordon <noel.gordon@gmail.com>
1040 [chromium] Rebaseline JPEG image results after r107389
1041 https://bugs.webkit.org/show_bug.cgi?id=78454
1043 Unreviewed. Rebaseline #31 of N. Any reasons for the MAC exception have been lost
1044 in time, like tears in rain. Remove the MAC exception, update all pixel results.
1046 * platform/chromium-linux/tables/mozilla/bugs/bug82946-2-expected.png:
1047 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug82946-2-expected.png: Added.
1048 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug82946-2-expected.png: Added.
1049 * platform/chromium-win/tables/mozilla/bugs/bug82946-2-expected.png:
1050 * platform/chromium/test_expectations.txt:
1052 2012-02-17 Philippe Normand <pnormand@igalia.com>
1054 Unreviewed, GTK rebaseline after r108034.
1056 * platform/gtk/fast/dom/Window/window-properties-expected.txt:
1057 * platform/gtk/fast/dom/Window/window-property-descriptors-expected.txt:
1058 * platform/gtk/fast/js/global-constructors-expected.txt:
1060 2012-02-17 Noel Gordon <noel.gordon@gmail.com>
1062 [chromium] Rebaseline JPEG image results after r107389
1063 https://bugs.webkit.org/show_bug.cgi?id=78454
1065 Unreviewed. Rebaseline #30 of N. Chrome MAC SnowLeopard differences under discussion
1066 in bug 54322, retain IMAGE expectation on SnowLeopard, update pixel results.
1068 * platform/chromium-linux/tables/mozilla/core/bloomberg-expected.png:
1069 * platform/chromium-linux/tables/mozilla/core/misc-expected.png:
1070 * platform/chromium-mac-leopard/tables/mozilla/core/bloomberg-expected.png:
1071 * platform/chromium-mac-leopard/tables/mozilla/core/misc-expected.png:
1072 * platform/chromium-mac-snowleopard/tables/mozilla/core/bloomberg-expected.png: Added.
1073 * platform/chromium-mac-snowleopard/tables/mozilla/core/misc-expected.png: Added.
1074 * platform/chromium-win/tables/mozilla/core/bloomberg-expected.png:
1075 * platform/chromium-win/tables/mozilla/core/misc-expected.png:
1076 * platform/chromium/test_expectations.txt:
1078 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1080 Unreviewed. Rollout r107952 removed fast/events/related-target-focusevent.html so
1081 lint complains about it in test_expectations.txt, remove it's expectation line.
1083 * platform/chromium/test_expectations.txt:
1085 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1087 Unreviewed. r107980 rolled-out, fast/js/stack-trace.html was removed so lint
1088 complains about it in test_expectations.txt, remove it's expectation line.
1090 * platform/chromium/test_expectations.txt:
1092 2012-02-16 Csaba Osztrogonác <ossy@webkit.org>
1094 Unreviewed. Rolling out r107980, because it broke 32 bit platforms.
1096 * fast/js/exception-properties-expected.txt:
1097 * fast/js/script-tests/exception-properties.js:
1098 * fast/js/script-tests/stack-trace.js: Removed.
1099 * fast/js/stack-trace-expected.txt: Removed.
1100 * fast/js/stack-trace.html: Removed.
1102 2012-02-16 Shinya Kawanaka <shinyak@chromium.org>
1104 [v8] v8 doesn't assume to do 'new WebKitShadowRoot(host)'
1105 https://bugs.webkit.org/show_bug.cgi?id=78875
1107 Reviewed by Kentaro Hara.
1109 Skip non-chromium ports since SHADOW_DOM flag is not enabled in their ports.
1111 * fast/dom/shadow/shadow-root-new.html: Added.
1112 * fast/dom/shadow/shadow-root-new-expected.txt: Added.
1113 * platform/efl/Skipped:
1114 * platform/gtk/Skipped:
1115 * platform/mac/Skipped:
1116 * platform/qt/Skipped:
1117 * platform/win/Skipped:
1118 * platform/wincairo/Skipped:
1119 * platform/wk2/Skipped:
1121 2012-02-16 Ilya Tikhonovsky <loislo@chromium.org>
1123 Unreviewed rollout r107952 because it broke shadow-boundary-events.html and related-target-focusevent.html on mac.
1124 see http://webkit.org/b/78832
1126 * fast/dom/shadow/shadow-boundary-events-expected.txt:
1127 * fast/dom/shadow/shadow-boundary-events.html:
1128 * fast/events/event-creation-expected.txt:
1129 * fast/events/event-creation.html:
1130 * fast/events/related-target-focusevent-expected.txt: Removed.
1131 * fast/events/related-target-focusevent.html: Removed.
1133 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1134 [chromium] Rebaseline JPEG image results after r107389
1135 https://bugs.webkit.org/show_bug.cgi?id=78454
1137 Unreviewed. Rebaseline #29 of N. Chrome MAC differences under discussion in bug
1138 BUGCR23473, retain IMAGE expectation on MAC therefore, update the pixel results.
1140 * platform/chromium-linux/fast/repaint/backgroundSizeRepaint-expected.png:
1141 * platform/chromium-mac-leopard/fast/repaint/backgroundSizeRepaint-expected.png: Added.
1142 * platform/chromium-mac-snowleopard/fast/repaint/backgroundSizeRepaint-expected.png: Added.
1143 * platform/chromium-win/fast/repaint/backgroundSizeRepaint-expected.png:
1144 * platform/chromium/test_expectations.txt:
1146 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1148 Rebaseline JPEG image results after r107389
1149 https://bugs.webkit.org/show_bug.cgi?id=78454
1151 Unreviewed. Rebaseline #26 of N. Color profiles are not supported in chrome win/linux.
1152 Retain the FAIL MISSING expectation, update the failing win/linux pixel result.
1154 * platform/chromium-win/fast/images/color-jpeg-with-color-profile-expected.png: Added.
1155 * platform/chromium/test_expectations.txt:
1157 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1159 [chromium] Rebaseline JPEG image results after r107389
1160 https://bugs.webkit.org/show_bug.cgi?id=78454
1162 Unreviewed. Rebaseline #28 of N. Chrome MAC differences under discussion in bug
1163 BUGCR23473, retain IMAGE expectation on MAC therefore, update the pixel results.
1165 * platform/chromium-linux/fast/repaint/clipped-relative-expected.png:
1166 * platform/chromium-linux/fast/repaint/selected-replaced-expected.png:
1167 * platform/chromium-mac-leopard/fast/repaint/clipped-relative-expected.png: Added.
1168 * platform/chromium-mac-leopard/fast/repaint/selected-replaced-expected.png: Added.
1169 * platform/chromium-mac-snowleopard/fast/repaint/clipped-relative-expected.png: Added.
1170 * platform/chromium-mac-snowleopard/fast/repaint/selected-replaced-expected.png: Added.
1171 * platform/chromium-win/fast/repaint/clipped-relative-expected.png:
1172 * platform/chromium-win/fast/repaint/selected-replaced-expected.png:
1173 * platform/chromium/test_expectations.txt:
1175 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1177 [chromium] Rebaseline JPEG image results after r107389
1178 https://bugs.webkit.org/show_bug.cgi?id=78454
1180 Unreviewed. Rebaseline #25 of N. Chrome MAC rendering was previously incorrect, and
1181 still is incorrect/weird: update test_expectations.txt with IMAGE failure.
1183 * platform/chromium-linux/compositing/overflow/overflow-scaled-descendant-overlapping-expected.png: Removed.
1184 * platform/chromium-linux/compositing/overflow/overflow-scaled-descendant-overlapping-expected.txt: Removed.
1185 * platform/chromium-mac-leopard/compositing/overflow/overflow-scaled-descendant-overlapping-expected.png: Added.
1186 * platform/chromium-mac-snowleopard/compositing/overflow/overflow-scaled-descendant-overlapping-expected.png:
1187 * platform/chromium-mac-snowleopard/compositing/overflow/overflow-scaled-descendant-overlapping-expected.txt: Removed.
1188 * platform/chromium-win-vista/compositing/overflow/overflow-scaled-descendant-overlapping-expected.png: Removed.
1189 * platform/chromium-win-vista/compositing/overflow/overflow-scaled-descendant-overlapping-expected.txt: Removed.
1190 * platform/chromium-win-xp/compositing/overflow/overflow-scaled-descendant-overlapping-expected.png: Removed.
1191 * platform/chromium-win-xp/compositing/overflow/overflow-scaled-descendant-overlapping-expected.txt: Removed.
1192 * platform/chromium-win/compositing/overflow/overflow-scaled-descendant-overlapping-expected.txt: Removed.
1193 * platform/chromium/compositing/overflow/overflow-scaled-descendant-overlapping-expected.txt: Renamed from LayoutTests/platform/chromium-linux-x86/compositing/overflow/overflow-scaled-descendant-overlapping-expected.txt.
1194 * platform/chromium/test_expectations.txt:
1196 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1198 [chromium] Rebaseline JPEG image results after r107389
1199 https://bugs.webkit.org/show_bug.cgi?id=78454
1201 Unreviewed. Rebaseline #27 of N.
1203 * platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-39-t-expected.png:
1204 * platform/chromium-mac-leopard/svg/W3C-SVG-1.1/animate-elem-39-t-expected.png:
1205 * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/animate-elem-39-t-expected.png:
1206 * platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-39-t-expected.png:
1207 * platform/chromium/test_expectations.txt:
1209 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1211 [chromium] Rebaseline JPEG image results after r107389
1212 https://bugs.webkit.org/show_bug.cgi?id=78454
1214 Unreviewed. Rebaseline #24 of N. Differences in rendered image extents on chrome
1215 LINUX, WIN compared to chrome MAC. Retain that fact in test_expectations.txt.
1217 * platform/chromium-linux/tables/mozilla/bugs/bug101674-expected.png:
1218 * platform/chromium-win/tables/mozilla/bugs/bug101674-expected.png:
1219 * platform/chromium-win/tables/mozilla/bugs/bug101674-expected.txt:
1220 * platform/chromium/test_expectations.txt:
1222 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1224 [chromium] Rebaseline JPEG image results after r107389
1225 https://bugs.webkit.org/show_bug.cgi?id=78454
1227 Unreviewed. Rebaseline #23 of N.
1229 * platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png:
1230 * platform/chromium-mac-leopard/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png:
1231 * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png:
1232 * platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png:
1233 * platform/chromium/test_expectations.txt:
1235 2012-02-16 Dana Jansens <danakj@chromium.org>
1237 [Chromium] Occlusion tracking with CSS filters
1238 https://bugs.webkit.org/show_bug.cgi?id=77498
1240 Reviewed by James Robinson.
1242 * compositing/culling/filter-occlusion-alpha-expected.png: Added.
1243 * compositing/culling/filter-occlusion-alpha-expected.txt: Added.
1244 * compositing/culling/filter-occlusion-alpha-large-expected.png: Added.
1245 * compositing/culling/filter-occlusion-alpha-large-expected.txt: Added.
1246 * compositing/culling/filter-occlusion-alpha-large.html: Added.
1247 * compositing/culling/filter-occlusion-alpha.html: Added.
1248 * compositing/culling/filter-occlusion-blur-expected.txt: Added.
1249 * compositing/culling/filter-occlusion-blur-large-expected.txt: Added.
1250 * compositing/culling/filter-occlusion-blur-large.html: Added.
1251 * compositing/culling/filter-occlusion-blur.html: Added.
1252 * platform/chromium/compositing/culling/filter-occlusion-blur-expected.png: Added.
1253 * platform/chromium/compositing/culling/filter-occlusion-blur-large-expected.png: Added.
1254 * platform/chromium/test_expectations.txt:
1256 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1258 [chromium] Rebaseline JPEG image results after r107389
1259 https://bugs.webkit.org/show_bug.cgi?id=78454
1261 Unreviewed. Rebaseline #22 of N.
1263 * platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-40-t-expected.png:
1264 * platform/chromium-mac-leopard/svg/W3C-SVG-1.1/animate-elem-40-t-expected.png:
1265 * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/animate-elem-40-t-expected.png:
1266 * platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-40-t-expected.png:
1267 * platform/chromium/test_expectations.txt:
1269 2012-02-16 Ryosuke Niwa <rniwa@webkit.org>
1271 Crash in visiblePositionForIndex
1272 https://bugs.webkit.org/show_bug.cgi?id=77683
1274 Reviewed by Eric Seidel.
1276 Add a regression test. It crashes Webkit with very high frequency.
1278 * editing/execCommand/applyblockelement-visiblepositionforindex-crash-expected.txt: Added.
1279 * editing/execCommand/applyblockelement-visiblepositionforindex-crash.html: Added.
1281 2012-02-16 Dana Jansens <danakj@chromium.org>
1283 [chromium] Empty divs not transforming overflow correctly
1284 https://bugs.webkit.org/show_bug.cgi?id=78850
1286 Reviewed by James Robinson.
1288 * compositing/overflow/transform-in-empty-container-expected.png: Added.
1289 * compositing/overflow/transform-in-empty-container-expected.txt: Added.
1290 * compositing/overflow/transform-in-empty-container.html: Added.
1292 2012-02-16 James Robinson <jamesr@chromium.org>
1294 [chromium] Unreviewed baseline update for compositing/scrollbar-painting.html
1296 * platform/chromium-mac-snowleopard/compositing/scrollbar-painting-expected.png:
1298 2012-02-15 Shinya Kawanaka <shinyak@chromium.org>
1300 Needs an internal flag to accept multiple shadow roots for the purpose of tests
1301 https://bugs.webkit.org/show_bug.cgi?id=78453
1303 Reviewed by Hajime Morita.
1305 * fast/dom/shadow/shadow-root-js-api.html:
1307 2012-02-16 Mark Hahnenberg <mhahnenberg@apple.com>
1309 Fix the broken viewport tests
1310 https://bugs.webkit.org/show_bug.cgi?id=78774
1312 Reviewed by Kenneth Rohde Christiansen.
1314 * platform/gtk/Skipped: Undoing tests skipped due to earlier breakage.
1315 * platform/qt/Skipped: Ditto.
1317 2012-02-16 Alexei Svitkine <asvitkine@chromium.org>
1319 [chromium] Disable mock scrollbars for rubber-banding tests
1320 https://bugs.webkit.org/show_bug.cgi?id=78370
1322 Turning on mock scrollbars caused rubber-banding tests to fail
1323 because the overhang is painted by the ScrollbarTheme, which
1324 was replaced by the mock theme. Disable mock scrollbars for
1327 Reviewed by James Robinson.
1329 * platform/chromium/test_expectations.txt:
1331 2012-02-16 Michael Saboff <msaboff@apple.com>
1333 ENH: Add ability to run subset of JavaScript layout tests with JSC
1334 https://bugs.webkit.org/show_bug.cgi?id=78764
1336 Reviewed by Gavin Barraclough.
1338 * fast/js/jsc-test-list: Added. List of tests that can be run
1339 using jsc. Used by new Tools/Scripts/run-fast-jsc script.
1340 * fast/js/resources/standalone-post.js: ~pdated to match changes
1342 * fast/js/resources/standalone-pre.js: Updated to match changes
1345 2012-02-16 James Robinson <jamesr@chromium.org>
1347 [chromium] Unreviewed. Mark fast/js/stack.html as an expected failure, we aren't interesting in converging on
1350 * platform/chromium/test_expectations.txt:
1352 2012-02-16 Kentaro Hara <haraken@chromium.org>
1354 Remove [ConvertScriptString] from FileReaderSync.idl
1355 https://bugs.webkit.org/show_bug.cgi?id=78335
1357 Reviewed by Eric Seidel.
1359 The spec says that FileReadSync should throw NOT_FOUND_ERR
1360 if a given blob is invalid: http://www.w3.org/TR/FileAPI/#FileReaderSync
1361 This patch adds test cases for FileReaderSync with an invalid blob
1362 to check that NOT_FOUND_ERR is thrown.
1364 * fast/files/resources/read-common.js:
1365 (_readBlobAsArrayBufferSync):
1366 (_readBlobAsBinaryStringSync):
1367 (_readBlobAsTextSync):
1368 (_readBlobAsDataURLSync):
1369 * fast/files/workers/worker-read-blob-sync-expected.txt:
1370 * fast/files/workers/worker-read-file-sync-expected.txt:
1372 2012-02-16 Dana Jansens <danakj@chromium.org>
1374 [chromium] Clipping/Transforms applied in wrong order in opaque paint tracking
1375 https://bugs.webkit.org/show_bug.cgi?id=78775
1377 Reviewed by Stephen White.
1379 * compositing/culling/unscrolled-within-boxshadow-expected.png: Added.
1380 * compositing/culling/unscrolled-within-boxshadow-expected.txt: Added.
1381 * compositing/culling/unscrolled-within-boxshadow.html: Added.
1382 * compositing/overflow/clip-content-under-overflow-controls-expected.png:
1383 * compositing/scrollbar-painting-expected.png:
1385 2012-02-16 Abhishek Arya <inferno@chromium.org>
1387 Crash with tables in multi-column layout.
1388 https://bugs.webkit.org/show_bug.cgi?id=78415
1390 Reviewed by Julien Chaffraix.
1392 * fast/multicol/span/table-multi-column-crash-expected.txt: Added.
1393 * fast/multicol/span/table-multi-column-crash.html: Added.
1395 2012-02-16 James Robinson <jamesr@chromium.org>
1397 [chromium] Update table pixel expectations. Unreviewed.
1399 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug27038-1-expected.png: Renamed from LayoutTests/platform/chromium-mac/tables/mozilla/bugs/bug27038-1-expected.png.
1400 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug27038-2-expected.png: Renamed from LayoutTests/platform/chromium-mac/tables/mozilla/bugs/bug27038-2-expected.png.
1401 * platform/chromium-win/tables/mozilla/bugs/bug27038-1-expected.png:
1402 * platform/chromium-win/tables/mozilla/bugs/bug27038-2-expected.png:
1404 2012-02-16 Abhishek Arya <inferno@chromium.org>
1406 Add a missing image for my commit r107965.
1408 * fast/multicol/span/clone-flexbox-expected.png: Added.
1410 2012-02-16 Oliver Hunt <oliver@apple.com>
1412 Implement Error.stack
1413 https://bugs.webkit.org/show_bug.cgi?id=66994
1415 Reviewed by Gavin Barraclough.
1417 Add testcases for producing a stack trace on exception objects.
1419 * fast/js/exception-properties-expected.txt:
1420 * fast/js/script-tests/exception-properties.js:
1421 * fast/js/script-tests/stack-trace.js: Added.
1436 (object.get getter1.o.valueOf):
1437 (object.get getter1):
1438 (object.get getter2):
1439 (object.get getter3.o2.valueOf):
1440 (object.get getter3):
1441 (object.nonInlineable.callCount):
1442 (object.nonInlineable):
1443 (object.inlineable):
1444 (yetAnotherInlinedCall):
1445 (makeInlinableCall):
1452 * fast/js/stack-trace-expected.txt: Added.
1453 * fast/js/stack-trace.html: Added.
1455 2012-02-16 James Robinson <jamesr@chromium.org>
1457 [chromium] Unreviewed, update baselines for region repaint tests due to skia off-by-one.
1459 * platform/chromium-mac-snowleopard/fast/repaint/region-painting-invalidation-expected.png: Added.
1460 * platform/chromium-win/fast/repaint/region-painting-invalidation-expected.png: Added.
1461 * platform/chromium-win/fast/repaint/region-painting-invalidation-expected.txt: Added.
1462 * platform/chromium/test_expectations.txt:
1464 2012-02-16 Tony Chang <tony@chromium.org>
1466 [chromium] Unreviewed, these regions tests pass after r107961.
1468 * platform/chromium/test_expectations.txt:
1470 2012-02-16 James Robinson <jamesr@chromium.org>
1472 [chromium] Unreviewed rebaselines and expectation updates.
1474 * platform/chromium-linux/fast/html/details-add-summary-1-and-click-expected.png:
1475 * platform/chromium-linux/fast/html/details-add-summary-10-and-click-expected.png:
1476 * platform/chromium-linux/fast/html/details-add-summary-2-and-click-expected.png:
1477 * platform/chromium-linux/fast/html/details-add-summary-3-and-click-expected.png:
1478 * platform/chromium-linux/fast/html/details-add-summary-4-and-click-expected.png:
1479 * platform/chromium-linux/fast/html/details-add-summary-5-and-click-expected.png:
1480 * platform/chromium-linux/fast/html/details-add-summary-6-and-click-expected.png:
1481 * platform/chromium-linux/fast/html/details-add-summary-7-and-click-expected.png:
1482 * platform/chromium-linux/fast/html/details-add-summary-8-and-click-expected.png:
1483 * platform/chromium-linux/fast/html/details-add-summary-9-and-click-expected.png:
1484 * platform/chromium-linux/fast/html/details-remove-summary-1-and-click-expected.png:
1485 * platform/chromium-linux/fast/html/details-remove-summary-2-and-click-expected.png:
1486 * platform/chromium-linux/fast/html/details-remove-summary-3-and-click-expected.png:
1487 * platform/chromium-linux/fast/html/details-remove-summary-4-and-click-expected.png:
1488 * platform/chromium-linux/fast/html/details-remove-summary-5-and-click-expected.png:
1489 * platform/chromium-linux/fast/html/details-remove-summary-6-and-click-expected.png:
1490 * platform/chromium-mac-leopard/fast/html/details-add-summary-1-and-click-expected.png:
1491 * platform/chromium-mac-leopard/fast/html/details-add-summary-10-and-click-expected.png:
1492 * platform/chromium-mac-leopard/fast/html/details-add-summary-2-and-click-expected.png:
1493 * platform/chromium-mac-leopard/fast/html/details-add-summary-3-and-click-expected.png:
1494 * platform/chromium-mac-leopard/fast/html/details-add-summary-4-and-click-expected.png:
1495 * platform/chromium-mac-leopard/fast/html/details-add-summary-5-and-click-expected.png:
1496 * platform/chromium-mac-leopard/fast/html/details-add-summary-6-and-click-expected.png:
1497 * platform/chromium-mac-leopard/fast/html/details-add-summary-7-and-click-expected.png:
1498 * platform/chromium-mac-leopard/fast/html/details-add-summary-8-and-click-expected.png:
1499 * platform/chromium-mac-leopard/fast/html/details-add-summary-9-and-click-expected.png:
1500 * platform/chromium-mac-leopard/fast/html/details-remove-summary-1-and-click-expected.png:
1501 * platform/chromium-mac-leopard/fast/html/details-remove-summary-2-and-click-expected.png:
1502 * platform/chromium-mac-leopard/fast/html/details-remove-summary-3-and-click-expected.png:
1503 * platform/chromium-mac-leopard/fast/html/details-remove-summary-4-and-click-expected.png:
1504 * platform/chromium-mac-leopard/fast/html/details-remove-summary-5-and-click-expected.png:
1505 * platform/chromium-mac-leopard/fast/html/details-remove-summary-6-and-click-expected.png:
1506 * platform/chromium-mac-snowleopard/fast/html/details-add-summary-1-and-click-expected.png: Copied from LayoutTests/platform/chromium-mac-leopard/fast/html/details-add-summary-1-and-click-expected.png.
1507 * platform/chromium-mac-snowleopard/fast/html/details-add-summary-10-and-click-expected.png: Renamed from LayoutTests/platform/chromium-mac/fast/html/details-add-summary-10-and-click-expected.png.
1508 * platform/chromium-mac-snowleopard/fast/html/details-add-summary-2-and-click-expected.png: Renamed from LayoutTests/platform/chromium-mac/fast/html/details-add-summary-2-and-click-expected.png.
1509 * platform/chromium-mac-snowleopard/fast/html/details-add-summary-3-and-click-expected.png: Renamed from LayoutTests/platform/chromium-mac/fast/html/details-add-summary-8-and-click-expected.png.
1510 * platform/chromium-mac-snowleopard/fast/html/details-add-summary-4-and-click-expected.png: Added.
1511 * platform/chromium-mac-snowleopard/fast/html/details-add-summary-5-and-click-expected.png: Copied from LayoutTests/platform/chromium-mac-leopard/fast/html/details-add-summary-8-and-click-expected.png.
1512 * platform/chromium-mac-snowleopard/fast/html/details-add-summary-6-and-click-expected.png: Renamed from LayoutTests/platform/chromium-mac/fast/html/details-add-summary-6-and-click-expected.png.
1513 * platform/chromium-mac-snowleopard/fast/html/details-add-summary-7-and-click-expected.png: Renamed from LayoutTests/platform/chromium-mac/fast/html/details-add-summary-7-and-click-expected.png.
1514 * platform/chromium-mac-snowleopard/fast/html/details-add-summary-8-and-click-expected.png: Renamed from LayoutTests/platform/chromium-mac/fast/html/details-add-summary-9-and-click-expected.png.
1515 * platform/chromium-mac-snowleopard/fast/html/details-add-summary-9-and-click-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/html/details-remove-summary-1-and-click-expected.png.
1516 * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-1-and-click-expected.png: Renamed from LayoutTests/platform/chromium-mac/fast/html/details-remove-summary-1-and-click-expected.png.
1517 * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-2-and-click-expected.png: Renamed from LayoutTests/platform/chromium-mac/fast/html/details-remove-summary-2-and-click-expected.png.
1518 * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-3-and-click-expected.png: Copied from LayoutTests/platform/chromium-mac/fast/html/details-remove-summary-3-and-click-expected.png.
1519 * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-4-and-click-expected.png: Copied from LayoutTests/platform/chromium-mac-leopard/fast/html/details-add-summary-9-and-click-expected.png.
1520 * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-5-and-click-expected.png: Renamed from LayoutTests/platform/chromium-mac/fast/html/details-remove-summary-4-and-click-expected.png.
1521 * platform/chromium-mac-snowleopard/fast/html/details-remove-summary-6-and-click-expected.png: Renamed from LayoutTests/platform/chromium-mac/fast/html/details-remove-summary-3-and-click-expected.png.
1522 * platform/chromium-mac/fast/html/details-add-summary-1-and-click-expected.png: Removed.
1523 * platform/chromium-mac/fast/html/details-add-summary-3-and-click-expected.png: Removed.
1524 * platform/chromium-mac/fast/html/details-add-summary-4-and-click-expected.png: Removed.
1525 * platform/chromium-mac/fast/html/details-add-summary-5-and-click-expected.png: Removed.
1526 * platform/chromium-mac/fast/html/details-remove-summary-5-and-click-expected.png: Removed.
1527 * platform/chromium-mac/fast/html/details-remove-summary-6-and-click-expected.png: Removed.
1528 * platform/chromium-win/fast/html/details-add-summary-1-and-click-expected.png:
1529 * platform/chromium-win/fast/html/details-add-summary-10-and-click-expected.png:
1530 * platform/chromium-win/fast/html/details-add-summary-2-and-click-expected.png:
1531 * platform/chromium-win/fast/html/details-add-summary-3-and-click-expected.png:
1532 * platform/chromium-win/fast/html/details-add-summary-4-and-click-expected.png:
1533 * platform/chromium-win/fast/html/details-add-summary-5-and-click-expected.png:
1534 * platform/chromium-win/fast/html/details-add-summary-6-and-click-expected.png:
1535 * platform/chromium-win/fast/html/details-add-summary-7-and-click-expected.png:
1536 * platform/chromium-win/fast/html/details-add-summary-8-and-click-expected.png:
1537 * platform/chromium-win/fast/html/details-add-summary-9-and-click-expected.png:
1538 * platform/chromium-win/fast/html/details-remove-summary-1-and-click-expected.png:
1539 * platform/chromium-win/fast/html/details-remove-summary-2-and-click-expected.png:
1540 * platform/chromium-win/fast/html/details-remove-summary-3-and-click-expected.png:
1541 * platform/chromium-win/fast/html/details-remove-summary-4-and-click-expected.png:
1542 * platform/chromium-win/fast/html/details-remove-summary-5-and-click-expected.png:
1543 * platform/chromium-win/fast/html/details-remove-summary-6-and-click-expected.png:
1544 * platform/chromium/test_expectations.txt:
1546 2012-02-16 Philippe Normand <pnormand@igalia.com>
1548 Unreviewed, GTK rebaseline after r107952.
1550 * platform/gtk/fast/dom/Window/window-properties-expected.txt:
1551 * platform/gtk/fast/dom/Window/window-property-descriptors-expected.txt:
1552 * platform/gtk/fast/js/global-constructors-expected.txt:
1554 2012-02-16 Julien Chaffraix <jchaffraix@webkit.org>
1556 thead in table without tbody causes table height doubling
1557 https://bugs.webkit.org/show_bug.cgi?id=37244
1559 Reviewed by Ojan Vafai.
1561 * fast/table/double-height-table-no-tbody-expected.html: Added.
1562 * fast/table/double-height-table-no-tbody.html: Added.
1563 Test that we properly lay out tables with only a <thead> or <tfoot>
1564 exactly like a table with only a <tbody>.
1566 * platform/chromium-linux/tables/mozilla/bugs/bug27038-1-expected.png:
1567 * platform/chromium-linux/tables/mozilla/bugs/bug27038-2-expected.png:
1568 * platform/chromium-win/tables/mozilla/bugs/bug27038-1-expected.txt:
1569 * platform/chromium-win/tables/mozilla/bugs/bug27038-2-expected.txt:
1570 This is neither a progression nor a regression. We are not doing the right
1571 thing as we don't distribute the extra logical height evenly over our sections.
1572 Now we give the extra height to the <thead> (first section) instead of the <tbody>.
1574 * platform/chromium/test_expectations.txt:
1575 * platform/efl/test_expectations.txt:
1576 * platform/gtk/test_expectations.txt:
1577 * platform/mac/test_expectations.txt:
1578 * platform/qt/test_expectations.txt:
1579 * platform/win/test_expectations.txt:
1580 Marked the previous tests as needing a new baseline.
1582 2012-02-07 Robert Hogan <robert@webkit.org>
1584 CSS 2.1 failure: fixed-table-layout-013 and fixed-table-layout-015 fail
1585 https://bugs.webkit.org/show_bug.cgi?id=78027
1587 Reviewed by Julien Chaffraix.
1589 * css2.1/20110323/fixed-table-layout-013-expected.html: Added.
1590 * css2.1/20110323/fixed-table-layout-013.htm: Added.
1591 * css2.1/20110323/fixed-table-layout-015-expected.html: Added.
1592 * css2.1/20110323/fixed-table-layout-015.htm: Added.
1594 2012-02-16 Tony Chang <tony@chromium.org>
1596 [chromium] Unreviewed, tests passing after the fix in r107874.
1598 * platform/chromium/test_expectations.txt:
1600 2012-02-16 Tom Sepez <tsepez@chromium.org>
1602 XSS Auditor bypass with U+2028/2029
1603 https://bugs.webkit.org/show_bug.cgi?id=78732
1605 Reviewed by Adam Barth.
1607 * http/tests/security/xssAuditor/script-tag-with-trailing-comment-U2028-expected.txt: Added.
1608 * http/tests/security/xssAuditor/script-tag-with-trailing-comment-U2028.html: Added.
1610 2012-02-16 Abhishek Arya <inferno@chromium.org>
1612 Fix clone() function to handle descendant classes of RenderBlock.
1613 https://bugs.webkit.org/show_bug.cgi?id=78273
1615 Reviewed by Eric Seidel.
1617 You should see two RenderFlexibleBox in the rendertree, indicating that
1618 cloning was correct.
1620 * fast/multicol/span/clone-flexbox-expected.txt: Added.
1621 * fast/multicol/span/clone-flexbox.html: Added.
1623 2012-02-16 James Robinson <jamesr@chromium.org>
1625 [chromium] Unreviewed gardening
1627 * platform/chromium/fast/js/property-getters-and-setters-expected.txt:
1628 * platform/chromium/test_expectations.txt:
1630 2012-02-16 Raul Hudea <rhudea@adobe.com>
1632 [CSSRegions]overflowRegion tests are flaky
1633 https://bugs.webkit.org/show_bug.cgi?id=78761
1635 Reviewed by Tony Chang.
1637 * fast/regions/element-region-overflow-state-expected.txt:
1638 * fast/regions/element-region-overflow-state-vertical-rl-expected.txt:
1639 * fast/regions/element-region-overflow-state-vertical-rl.html:
1640 * fast/regions/element-region-overflow-state.html:
1642 2012-02-16 Raul Hudea <rhudea@adobe.com>
1644 [CSS Regions] Repaint issues when changing innerHTML of content
1645 https://bugs.webkit.org/show_bug.cgi?id=78787
1647 Reviewed by David Hyatt.
1649 * fast/repaint/region-painting-invalidation.html: Added.
1650 * platform/chromium/test_expectations.txt: Needs baseline
1651 * platform/mac/fast/repaint/region-painting-invalidation-expected.png: Added.
1652 * platform/mac/fast/repaint/region-painting-invalidation-expected.txt: Added.
1654 2012-02-16 James Robinson <jamesr@chromium.org>
1656 [chromium] Unreviewed chromium gardening
1658 * platform/chromium-linux/svg/text/tspan-dynamic-positioning-expected.png: Added.
1659 * platform/chromium-mac-leopard/compositing/plugins/composited-plugin-expected.png: Added.
1660 * platform/chromium-mac-leopard/compositing/plugins/composited-plugin-expected.txt: Added.
1661 * platform/chromium-mac-leopard/svg/text/tspan-dynamic-positioning-expected.png: Added.
1662 * platform/chromium-mac-snowleopard/svg/text/tspan-dynamic-positioning-expected.png: Added.
1663 * platform/chromium-win/svg/text/tspan-dynamic-positioning-expected.png: Added.
1664 * platform/chromium-win/svg/text/tspan-dynamic-positioning-expected.txt: Added.
1665 * platform/chromium/test_expectations.txt:
1667 2012-02-15 Gavin Barraclough <barraclough@apple.com>
1669 Numerous trivial bugs in Object.defineProperty
1670 https://bugs.webkit.org/show_bug.cgi?id=78777
1672 Reviewed by Sam Weinig.
1674 There are a handful of really trivial bugs, related to Object.defineProperty:
1675 * Redefining an accessor with different attributes changes the attributes, but not the get/set functions!
1676 * Calling an undefined setter should only throw in strict mode.
1677 * When redefining an accessor to a data decriptor, if writable is not specified we should default to false.
1678 * Any attempt to redefine a non-configurable property of an array as configurable should be rejected.
1679 * Object.defineProperties should call toObject on 'Properties' argument, rather than throwing if it is not an object.
1680 * If preventExtensions has been called on an array, subsequent assignment beyond array bounds should fail.
1681 * 'isFrozen' shouldn't be checking the ReadOnly bit for accessor descriptors (we presently always keep this bit as 'false').
1682 * Should be able to redefine an non-writable, non-configurable property, with the same value and attributes.
1683 * Should be able to define an non-configurable accessor.
1684 These are mostly all one-line changes, e.g. inverted boolean checks, masking against wrong attribute.
1686 * fast/js/Object-defineProperties-expected.txt:
1687 * fast/js/Object-defineProperty-expected.txt:
1688 * fast/js/preventExtensions-expected.txt:
1689 * fast/js/property-getters-and-setters-expected.txt:
1690 * fast/js/script-tests/Object-defineProperty.js:
1691 * fast/js/script-tests/preventExtensions.js:
1692 * fast/js/script-tests/property-getters-and-setters.js:
1693 - Update result & add new test cases for all bugs fixed.
1695 2012-02-16 Terry Anderson <tdanderson@chromium.org>
1697 WebKit does not support DOM 3 Events FocusEvent
1698 https://bugs.webkit.org/show_bug.cgi?id=76216
1700 Reviewed by Eric Seidel.
1702 * fast/dom/shadow/shadow-boundary-events-expected.txt:
1703 * fast/dom/shadow/shadow-boundary-events.html:
1704 - Changed the focusin/focusout parts of this layout test to include the
1705 relatedTarget attribute, which is now set on FocusEvent objects
1706 * fast/events/event-creation-expected.txt:
1707 * fast/events/event-creation.html:
1708 - Added the creation of FocusEvents to this layout test
1709 * fast/events/related-target-focusevent-expected.txt: Added.
1710 * fast/events/related-target-focusevent.html: Added.
1711 - This is a new layout test I created specifically for this patch
1713 2012-02-16 Philippe Normand <pnormand@igalia.com>
1715 Unreviewed, GTK baselines for new SVG and fast/ tests.
1717 * platform/gtk/fast/css/font-face-synthetic-bold-italic-expected.txt: Added.
1718 * platform/gtk/fast/css/font-face-weight-matching-expected.txt: Added.
1719 * platform/gtk/fast/js/constructor-length-expected.txt: Added.
1720 * platform/gtk/svg/custom/glyph-selection-arabic-forms-expected.txt: Added.
1721 * platform/gtk/svg/custom/glyph-selection-bidi-mirror-expected.txt: Added.
1722 * platform/gtk/svg/custom/glyph-selection-non-bmp-expected.txt: Added.
1723 * platform/gtk/svg/text/ems-display-none-expected.txt: Added.
1724 * platform/gtk/svg/text/exs-display-none-expected.txt: Added.
1725 * platform/gtk/svg/text/text-fill-opacity-expected.txt: Added.
1726 * platform/gtk/svg/text/tspan-dynamic-positioning-expected.txt: Added.
1728 2012-02-16 Philippe Normand <pnormand@igalia.com>
1730 Unreviewed, GTK rebaseline.
1732 * platform/gtk/fast/table/027-expected.txt:
1733 * platform/gtk/fast/table/027-vertical-expected.txt:
1734 * platform/gtk/tables/mozilla/bugs/bug14929-expected.txt:
1736 2012-02-16 Philippe Normand <pnormand@igalia.com>
1738 [GTK] fast/events/drag-dataTransfer-live-attributes.html fails
1739 https://bugs.webkit.org/show_bug.cgi?id=78818
1741 Unreviewed, rebaseline the test and unskip, as advised by Daniel Cheng.
1743 * platform/gtk/Skipped:
1744 * platform/gtk/fast/events/drag-dataTransfer-live-attributes-expected.txt: Added.
1746 2012-02-16 Philippe Normand <pnormand@igalia.com>
1748 Unreviewed, skipping 2 new test failures and unskipping some
1749 needing rebaselining.
1751 * platform/gtk/Skipped:
1752 * platform/gtk/test_expectations.txt:
1754 2012-02-16 Philippe Normand <pnormand@igalia.com>
1756 Unreviewed, GTK rebaseline after r107869 and skip a failing test.
1758 * platform/gtk/Skipped:
1759 * platform/gtk/fast/dom/Window/window-properties-expected.txt:
1760 * platform/gtk/fast/dom/Window/window-property-descriptors-expected.txt:
1761 * platform/gtk/fast/js/global-constructors-expected.txt:
1763 2012-02-16 Vsevolod Vlasov <vsevik@chromium.org>
1765 Unreviewed chromium expectations update.
1767 * platform/chromium/test_expectations.txt:
1769 2012-02-16 Ilya Tikhonovsky <loislo@chromium.org>
1771 Web Inspector: [heap snapshot] It could be useful to have access to the selected heap object from the console.
1772 https://bugs.webkit.org/show_bug.cgi?id=78496
1774 Reviewed by Yury Semikhatsky.
1776 * inspector/protocol/console-agent-expected.txt:
1777 * inspector/protocol/console-agent.html:
1779 2012-02-16 Ilya Tikhonovsky <loislo@chromium.org>
1781 [chromium] Rebaseline after r107881
1783 * platform/chromium-mac-snowleopard/fast/css/getComputedStyle/computed-style-expected.txt: Added.
1784 * platform/chromium-mac-snowleopard/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
1785 * platform/chromium-mac-snowleopard/svg/css/getComputedStyle-basic-expected.txt: Added.
1787 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1789 [chromium] Rebaseline JPEG image results after r107389
1790 https://bugs.webkit.org/show_bug.cgi?id=78454
1792 Unreviewed. Rebaseline #21 of N.
1794 * platform/chromium-linux-x86/fast/images/color-jpeg-with-color-profile-expected.txt: Removed.
1795 * platform/chromium-linux/fast/images/color-jpeg-with-color-profile-expected.txt: Removed.
1796 * platform/chromium-mac-leopard/fast/images/color-jpeg-with-color-profile-expected.png:
1797 * platform/chromium-mac-snowleopard/fast/images/color-jpeg-with-color-profile-expected.png:
1798 * platform/chromium-mac/fast/images/color-jpeg-with-color-profile-expected.txt: Removed.
1799 * platform/chromium-win-vista/fast/images/color-jpeg-with-color-profile-expected.txt: Removed.
1800 * platform/chromium-win-xp/fast/images/color-jpeg-with-color-profile-expected.txt: Removed.
1801 * platform/chromium-win/fast/images/color-jpeg-with-color-profile-expected.txt: Removed.
1802 * platform/chromium/test_expectations.txt:
1803 * platform/gtk/fast/images/color-jpeg-with-color-profile-expected.txt: Removed.
1804 * platform/mac/fast/images/color-jpeg-with-color-profile-expected.png: Renamed from LayoutTests/fast/images/color-jpeg-with-color-profile-expected.png.
1805 * platform/qt/fast/images/color-jpeg-with-color-profile-expected.txt: Removed.
1807 2012-02-16 Vsevolod Vlasov <vsevik@chromium.org>
1809 Web Inspector: [InspectorIndexedDB] Add IndexedDB TreeElement to resources panel.
1810 https://bugs.webkit.org/show_bug.cgi?id=78609
1812 Reviewed by Yury Semikhatsky.
1814 * http/tests/inspector/indexeddb/database-data-expected.txt:
1815 * http/tests/inspector/indexeddb/database-data.html:
1816 * http/tests/inspector/indexeddb/database-names-expected.txt:
1817 * http/tests/inspector/indexeddb/database-structure-expected.txt:
1818 * http/tests/inspector/indexeddb/database-structure.html:
1819 * http/tests/inspector/indexeddb/indexeddb-test.js:
1820 (initialize_IndexedDBTest.InspectorTest.dumpIndexedDBTree):
1821 (initialize_IndexedDBTest.InspectorTest.evaluateWithCallback):
1822 (initialize_IndexedDBTest.InspectorTest._installIndexedDBSniffer.consoleMessageOverride):
1823 (initialize_IndexedDBTest.InspectorTest._installIndexedDBSniffer):
1824 (createDatabase.closeDatabase):
1827 * http/tests/inspector/indexeddb/resources-panel-expected.txt: Added.
1828 * http/tests/inspector/indexeddb/resources-panel.html_disabled: Added.
1829 * http/tests/inspector/indexeddb/resources/without-indexed-db.html: Added.
1831 2012-02-16 Nikolas Zimmermann <nzimmermann@rim.com>
1833 Not reviewed. Add missing results for Lion, and regenerate one test result with Lion,
1834 so my baseline passes again with --tolerance 0 -p svg.
1836 * platform/mac/svg/text/text-fill-opacity-expected.png: Added.
1837 * platform/mac/svg/text/text-fill-opacity-expected.txt: Added.
1838 * platform/mac/svg/text/tspan-dynamic-positioning-expected.png:
1840 2012-02-15 Nikolas Zimmermann <nzimmermann@rim.com>
1842 REGRESSION (Safari 5.0.5 - 5.1): No animation on svg-wow.org/text-effects/text-effects.xhtml
1843 https://bugs.webkit.org/show_bug.cgi?id=65072
1845 Reviewed by Zoltan Herczeg.
1847 * platform/chromium/test_expectations.txt:
1848 * platform/mac/svg/text/ems-display-none-expected.png: Added.
1849 * platform/mac/svg/text/ems-display-none-expected.txt: Added.
1850 * platform/mac/svg/text/exs-display-none-expected.png: Added.
1851 * platform/mac/svg/text/exs-display-none-expected.txt: Added.
1852 * svg/text/ems-display-none.svg: Added.
1853 * svg/text/exs-display-none.svg: Added.
1855 2012-02-16 Csaba Osztrogonác <ossy@webkit.org>
1857 [Qt] Unreviewed gardening.
1859 * platform/qt/Skipped: Skip new failing tests.
1860 * platform/qt/fast/dom/Window/window-properties-expected.txt: Updated after r107869.
1861 * platform/qt/fast/dom/Window/window-property-descriptors-expected.txt: Updated after r107869.
1862 * platform/qt/fast/js/global-constructors-expected.txt: Updated after r107869.
1864 2012-02-16 Roland Steiner <rolandsteiner@chromium.org>
1866 <style scoped>: Implement scoped selector matching in the slow path
1867 https://bugs.webkit.org/show_bug.cgi?id=77528
1869 Extended existing <style scoped> tests to also verify that selector matching doesn't exceed the scoping element.
1871 Reviewed by Antti Koivisto.
1873 * fast/css/style-scoped/style-scoped-basic-expected.txt:
1874 * fast/css/style-scoped/style-scoped-basic.html:
1875 * fast/css/style-scoped/style-scoped-remove-scoped-expected.txt:
1876 * fast/css/style-scoped/style-scoped-remove-scoped.html:
1877 * fast/css/style-scoped/style-scoped-set-scoped-expected.txt:
1878 * fast/css/style-scoped/style-scoped-set-scoped.html:
1880 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1882 [chromium] Rebaseline JPEG image results after r107389
1883 https://bugs.webkit.org/show_bug.cgi?id=78454
1885 Unreviewed. Rebaseline #20 of N.
1887 * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug6933-expected.png:
1888 * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug85016-expected.png:
1889 * platform/chromium-mac-leopard/tables/mozilla_expected_failures/bugs/bug6933-expected.png:
1890 * platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug6933-expected.png: Added.
1891 * platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug85016-expected.png:
1892 * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug6933-expected.png: Removed.
1893 * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug6933-expected.png:
1894 * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug85016-expected.png:
1895 * platform/chromium/tables/mozilla_expected_failures/bugs/bug85016-expected.txt: Removed.
1896 * platform/chromium/test_expectations.txt:
1898 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1900 [chromium] Rebaseline JPEG image results after r107389
1901 https://bugs.webkit.org/show_bug.cgi?id=78454
1903 Unreviewed. Rebaseline #19 of N.
1905 * platform/chromium-linux/tables/mozilla/marvin/td_valign_baseline-expected.png:
1906 * platform/chromium-linux/tables/mozilla/marvin/td_valign_bottom-expected.png:
1907 * platform/chromium-linux/tables/mozilla/marvin/td_valign_middle-expected.png:
1908 * platform/chromium-linux/tables/mozilla/marvin/td_valign_top-expected.png:
1909 * platform/chromium-linux/tables/mozilla/marvin/tfoot_valign_baseline-expected.png:
1910 * platform/chromium-linux/tables/mozilla/marvin/tfoot_valign_bottom-expected.png:
1911 * platform/chromium-linux/tables/mozilla/marvin/tfoot_valign_middle-expected.png:
1912 * platform/chromium-linux/tables/mozilla/marvin/tfoot_valign_top-expected.png:
1913 * platform/chromium-linux/tables/mozilla/marvin/th_valign_baseline-expected.png:
1914 * platform/chromium-linux/tables/mozilla/marvin/th_valign_bottom-expected.png:
1915 * platform/chromium-linux/tables/mozilla/marvin/th_valign_middle-expected.png:
1916 * platform/chromium-linux/tables/mozilla/marvin/th_valign_top-expected.png:
1917 * platform/chromium-linux/tables/mozilla/marvin/thead_valign_baseline-expected.png:
1918 * platform/chromium-linux/tables/mozilla/marvin/thead_valign_bottom-expected.png:
1919 * platform/chromium-linux/tables/mozilla/marvin/thead_valign_middle-expected.png:
1920 * platform/chromium-linux/tables/mozilla/marvin/thead_valign_top-expected.png:
1921 * platform/chromium-linux/tables/mozilla/marvin/tr_valign_baseline-expected.png:
1922 * platform/chromium-linux/tables/mozilla/marvin/tr_valign_bottom-expected.png:
1923 * platform/chromium-linux/tables/mozilla/marvin/tr_valign_middle-expected.png:
1924 * platform/chromium-linux/tables/mozilla/marvin/tr_valign_top-expected.png:
1925 * platform/chromium-mac-leopard/tables/mozilla/marvin/td_valign_baseline-expected.png:
1926 * platform/chromium-mac-leopard/tables/mozilla/marvin/td_valign_bottom-expected.png:
1927 * platform/chromium-mac-leopard/tables/mozilla/marvin/td_valign_middle-expected.png:
1928 * platform/chromium-mac-leopard/tables/mozilla/marvin/td_valign_top-expected.png:
1929 * platform/chromium-mac-leopard/tables/mozilla/marvin/tfoot_valign_baseline-expected.png:
1930 * platform/chromium-mac-leopard/tables/mozilla/marvin/tfoot_valign_bottom-expected.png:
1931 * platform/chromium-mac-leopard/tables/mozilla/marvin/tfoot_valign_middle-expected.png:
1932 * platform/chromium-mac-leopard/tables/mozilla/marvin/tfoot_valign_top-expected.png:
1933 * platform/chromium-mac-leopard/tables/mozilla/marvin/th_valign_baseline-expected.png:
1934 * platform/chromium-mac-leopard/tables/mozilla/marvin/th_valign_bottom-expected.png:
1935 * platform/chromium-mac-leopard/tables/mozilla/marvin/th_valign_middle-expected.png:
1936 * platform/chromium-mac-leopard/tables/mozilla/marvin/th_valign_top-expected.png:
1937 * platform/chromium-mac-leopard/tables/mozilla/marvin/thead_valign_baseline-expected.png:
1938 * platform/chromium-mac-leopard/tables/mozilla/marvin/thead_valign_bottom-expected.png:
1939 * platform/chromium-mac-leopard/tables/mozilla/marvin/thead_valign_middle-expected.png:
1940 * platform/chromium-mac-leopard/tables/mozilla/marvin/thead_valign_top-expected.png:
1941 * platform/chromium-mac-leopard/tables/mozilla/marvin/tr_valign_baseline-expected.png:
1942 * platform/chromium-mac-leopard/tables/mozilla/marvin/tr_valign_bottom-expected.png:
1943 * platform/chromium-mac-leopard/tables/mozilla/marvin/tr_valign_middle-expected.png:
1944 * platform/chromium-mac-leopard/tables/mozilla/marvin/tr_valign_top-expected.png:
1945 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/td_valign_baseline-expected.png: Added.
1946 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/td_valign_bottom-expected.png: Added.
1947 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/td_valign_middle-expected.png: Added.
1948 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/td_valign_top-expected.png: Added.
1949 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tfoot_valign_baseline-expected.png: Added.
1950 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tfoot_valign_bottom-expected.png: Added.
1951 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tfoot_valign_middle-expected.png: Added.
1952 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tfoot_valign_top-expected.png: Added.
1953 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/th_valign_baseline-expected.png: Added.
1954 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/th_valign_bottom-expected.png: Added.
1955 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/th_valign_middle-expected.png: Added.
1956 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/th_valign_top-expected.png: Added.
1957 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/thead_valign_baseline-expected.png: Added.
1958 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/thead_valign_bottom-expected.png: Added.
1959 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/thead_valign_middle-expected.png: Added.
1960 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/thead_valign_top-expected.png: Added.
1961 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tr_valign_baseline-expected.png: Added.
1962 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tr_valign_bottom-expected.png: Added.
1963 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tr_valign_middle-expected.png: Added.
1964 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tr_valign_top-expected.png: Added.
1965 * platform/chromium-mac/tables/mozilla/marvin/td_valign_baseline-expected.png: Removed.
1966 * platform/chromium-mac/tables/mozilla/marvin/td_valign_bottom-expected.png: Removed.
1967 * platform/chromium-mac/tables/mozilla/marvin/td_valign_middle-expected.png: Removed.
1968 * platform/chromium-mac/tables/mozilla/marvin/td_valign_top-expected.png: Removed.
1969 * platform/chromium-mac/tables/mozilla/marvin/tfoot_valign_baseline-expected.png: Removed.
1970 * platform/chromium-mac/tables/mozilla/marvin/tfoot_valign_bottom-expected.png: Removed.
1971 * platform/chromium-mac/tables/mozilla/marvin/tfoot_valign_middle-expected.png: Removed.
1972 * platform/chromium-mac/tables/mozilla/marvin/tfoot_valign_top-expected.png: Removed.
1973 * platform/chromium-mac/tables/mozilla/marvin/th_valign_baseline-expected.png: Removed.
1974 * platform/chromium-mac/tables/mozilla/marvin/th_valign_bottom-expected.png: Removed.
1975 * platform/chromium-mac/tables/mozilla/marvin/th_valign_middle-expected.png: Removed.
1976 * platform/chromium-mac/tables/mozilla/marvin/th_valign_top-expected.png: Removed.
1977 * platform/chromium-mac/tables/mozilla/marvin/thead_valign_baseline-expected.png: Removed.
1978 * platform/chromium-mac/tables/mozilla/marvin/thead_valign_bottom-expected.png: Removed.
1979 * platform/chromium-mac/tables/mozilla/marvin/thead_valign_middle-expected.png: Removed.
1980 * platform/chromium-mac/tables/mozilla/marvin/thead_valign_top-expected.png: Removed.
1981 * platform/chromium-mac/tables/mozilla/marvin/tr_valign_baseline-expected.png: Removed.
1982 * platform/chromium-mac/tables/mozilla/marvin/tr_valign_bottom-expected.png: Removed.
1983 * platform/chromium-mac/tables/mozilla/marvin/tr_valign_middle-expected.png: Removed.
1984 * platform/chromium-mac/tables/mozilla/marvin/tr_valign_top-expected.png: Removed.
1985 * platform/chromium-win/tables/mozilla/marvin/td_valign_baseline-expected.png:
1986 * platform/chromium-win/tables/mozilla/marvin/td_valign_bottom-expected.png:
1987 * platform/chromium-win/tables/mozilla/marvin/td_valign_middle-expected.png:
1988 * platform/chromium-win/tables/mozilla/marvin/td_valign_top-expected.png:
1989 * platform/chromium-win/tables/mozilla/marvin/tfoot_valign_baseline-expected.png:
1990 * platform/chromium-win/tables/mozilla/marvin/tfoot_valign_bottom-expected.png:
1991 * platform/chromium-win/tables/mozilla/marvin/tfoot_valign_middle-expected.png:
1992 * platform/chromium-win/tables/mozilla/marvin/tfoot_valign_top-expected.png:
1993 * platform/chromium-win/tables/mozilla/marvin/th_valign_baseline-expected.png:
1994 * platform/chromium-win/tables/mozilla/marvin/th_valign_bottom-expected.png:
1995 * platform/chromium-win/tables/mozilla/marvin/th_valign_middle-expected.png:
1996 * platform/chromium-win/tables/mozilla/marvin/th_valign_top-expected.png:
1997 * platform/chromium-win/tables/mozilla/marvin/thead_valign_baseline-expected.png:
1998 * platform/chromium-win/tables/mozilla/marvin/thead_valign_bottom-expected.png:
1999 * platform/chromium-win/tables/mozilla/marvin/thead_valign_middle-expected.png:
2000 * platform/chromium-win/tables/mozilla/marvin/thead_valign_top-expected.png:
2001 * platform/chromium-win/tables/mozilla/marvin/tr_valign_baseline-expected.png:
2002 * platform/chromium-win/tables/mozilla/marvin/tr_valign_bottom-expected.png:
2003 * platform/chromium-win/tables/mozilla/marvin/tr_valign_middle-expected.png:
2004 * platform/chromium-win/tables/mozilla/marvin/tr_valign_top-expected.png:
2005 * platform/chromium/test_expectations.txt:
2007 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
2009 [chromium] Rebaseline JPEG image results after r107389
2010 https://bugs.webkit.org/show_bug.cgi?id=78454
2012 Unreviewed. Rebaseline #18 of N.
2014 * platform/chromium-linux/tables/mozilla/core/col_widths_auto_autoFix-expected.png:
2015 * platform/chromium-linux/tables/mozilla_expected_failures/other/test4-expected.png:
2016 * platform/chromium-mac-leopard/tables/mozilla/core/col_widths_auto_autoFix-expected.png:
2017 * platform/chromium-mac-leopard/tables/mozilla_expected_failures/other/test4-expected.png:
2018 * platform/chromium-mac-snowleopard/tables/mozilla/core/col_widths_auto_autoFix-expected.png: Added.
2019 * platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/other/test4-expected.png:
2020 * platform/chromium-mac/tables/mozilla/core/col_widths_auto_autoFix-expected.png: Removed.
2021 * platform/chromium-win/tables/mozilla/core/col_widths_auto_autoFix-expected.png:
2022 * platform/chromium-win/tables/mozilla_expected_failures/other/test4-expected.png:
2023 * platform/chromium/tables/mozilla_expected_failures/other/test4-expected.txt: Removed.
2024 * platform/chromium/test_expectations.txt:
2026 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
2028 [chromium] Rebaseline JPEG image results after r107389
2029 https://bugs.webkit.org/show_bug.cgi?id=78454
2031 Unreviewed. Rebaseline #17 of N.
2033 * platform/chromium-linux/tables/mozilla/marvin/tbody_valign_baseline-expected.png:
2034 * platform/chromium-linux/tables/mozilla/marvin/tbody_valign_bottom-expected.png:
2035 * platform/chromium-linux/tables/mozilla/marvin/tbody_valign_middle-expected.png:
2036 * platform/chromium-linux/tables/mozilla/marvin/tbody_valign_top-expected.png:
2037 * platform/chromium-mac-leopard/tables/mozilla/marvin/tbody_valign_baseline-expected.png:
2038 * platform/chromium-mac-leopard/tables/mozilla/marvin/tbody_valign_bottom-expected.png:
2039 * platform/chromium-mac-leopard/tables/mozilla/marvin/tbody_valign_middle-expected.png:
2040 * platform/chromium-mac-leopard/tables/mozilla/marvin/tbody_valign_top-expected.png:
2041 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tbody_valign_baseline-expected.png: Added.
2042 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tbody_valign_bottom-expected.png: Added.
2043 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tbody_valign_middle-expected.png: Added.
2044 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tbody_valign_top-expected.png: Added.
2045 * platform/chromium-mac/tables/mozilla/marvin/tbody_valign_baseline-expected.png: Removed.
2046 * platform/chromium-mac/tables/mozilla/marvin/tbody_valign_bottom-expected.png: Removed.
2047 * platform/chromium-mac/tables/mozilla/marvin/tbody_valign_middle-expected.png: Removed.
2048 * platform/chromium-mac/tables/mozilla/marvin/tbody_valign_top-expected.png: Removed.
2049 * platform/chromium-win/tables/mozilla/marvin/tbody_valign_baseline-expected.png:
2050 * platform/chromium-win/tables/mozilla/marvin/tbody_valign_bottom-expected.png:
2051 * platform/chromium-win/tables/mozilla/marvin/tbody_valign_middle-expected.png:
2052 * platform/chromium-win/tables/mozilla/marvin/tbody_valign_top-expected.png:
2053 * platform/chromium/test_expectations.txt:
2055 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
2057 [chromium] Rebaseline JPEG image results after r107389
2058 https://bugs.webkit.org/show_bug.cgi?id=78454
2060 Unreviewed. Rebaseline #16 of N.
2062 * platform/chromium-linux/tables/mozilla/bugs/bug29314-expected.png:
2063 * platform/chromium-linux/tables/mozilla/bugs/bug2981-2-expected.png:
2064 * platform/chromium-linux/tables/mozilla/bugs/bug4093-expected.png:
2065 * platform/chromium-linux/tables/mozilla/bugs/bug4284-expected.png:
2066 * platform/chromium-linux/tables/mozilla/bugs/bug4427-expected.png:
2067 * platform/chromium-linux/tables/mozilla/bugs/bug56563-expected.png:
2068 * platform/chromium-linux/tables/mozilla/bugs/bug5797-expected.png:
2069 * platform/chromium-linux/tables/mozilla/bugs/bug625-expected.png:
2070 * platform/chromium-linux/tables/mozilla/bugs/bug6404-expected.png:
2071 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug2981-2-expected.png:
2072 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug4093-expected.png:
2073 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug4284-expected.png:
2074 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug4427-expected.png:
2075 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug56563-expected.png:
2076 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug5797-expected.png:
2077 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug625-expected.png:
2078 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug6404-expected.png:
2079 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug29314-expected.png: Added.
2080 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2981-2-expected.png: Added.
2081 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4093-expected.png: Added.
2082 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4284-expected.png: Added.
2083 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4427-expected.png: Added.
2084 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug50695-2-expected.png: Added.
2085 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug56563-expected.png: Added.
2086 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug5797-expected.png: Added.
2087 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug625-expected.png: Added.
2088 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug6404-expected.png: Added.
2089 * platform/chromium-mac/tables/mozilla/bugs/bug29314-expected.png: Removed.
2090 * platform/chromium-mac/tables/mozilla/bugs/bug2981-2-expected.png: Removed.
2091 * platform/chromium-mac/tables/mozilla/bugs/bug4093-expected.png: Removed.
2092 * platform/chromium-mac/tables/mozilla/bugs/bug4284-expected.png: Removed.
2093 * platform/chromium-mac/tables/mozilla/bugs/bug4427-expected.png: Removed.
2094 * platform/chromium-mac/tables/mozilla/bugs/bug50695-2-expected.png: Removed.
2095 * platform/chromium-mac/tables/mozilla/bugs/bug56563-expected.png: Removed.
2096 * platform/chromium-mac/tables/mozilla/bugs/bug5797-expected.png: Removed.
2097 * platform/chromium-mac/tables/mozilla/bugs/bug625-expected.png: Removed.
2098 * platform/chromium-mac/tables/mozilla/bugs/bug6404-expected.png: Removed.
2099 * platform/chromium-win/tables/mozilla/bugs/bug29314-expected.png:
2100 * platform/chromium-win/tables/mozilla/bugs/bug2981-2-expected.png:
2101 * platform/chromium-win/tables/mozilla/bugs/bug4093-expected.png:
2102 * platform/chromium-win/tables/mozilla/bugs/bug4284-expected.png:
2103 * platform/chromium-win/tables/mozilla/bugs/bug4427-expected.png:
2104 * platform/chromium-win/tables/mozilla/bugs/bug50695-2-expected.png:
2105 * platform/chromium-win/tables/mozilla/bugs/bug56563-expected.png:
2106 * platform/chromium-win/tables/mozilla/bugs/bug5797-expected.png:
2107 * platform/chromium-win/tables/mozilla/bugs/bug625-expected.png:
2108 * platform/chromium-win/tables/mozilla/bugs/bug6404-expected.png:
2109 * platform/chromium/tables/mozilla/bugs/bug56563-expected.txt: Removed.
2110 * platform/chromium/test_expectations.txt:
2111 * platform/mac/tables/mozilla/bugs/bug50695-2-expected.txt: Removed.
2112 * platform/qt/tables/mozilla/bugs/bug29314-expected.txt: Removed.
2113 * platform/qt/tables/mozilla/bugs/bug50695-2-expected.txt: Removed.
2114 * tables/mozilla/bugs/bug29314-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug29314-expected.txt.
2115 * tables/mozilla/bugs/bug50695-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug50695-2-expected.txt.
2117 2012-02-15 Noel Gordon <noel.gordon@gmail.com>
2119 [chromium] Rebaseline JPEG image results after r107389
2120 https://bugs.webkit.org/show_bug.cgi?id=78454
2122 Unreviewed. Rebaseline #15 of N.
2124 * platform/chromium-linux/tables/mozilla/bugs/bug12908-1-expected.png:
2125 * platform/chromium-linux/tables/mozilla/bugs/bug1296-expected.png:
2126 * platform/chromium-linux/tables/mozilla/bugs/bug1430-expected.png:
2127 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug12908-1-expected.png:
2128 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug1296-expected.png:
2129 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug1430-expected.png:
2130 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1271-expected.png: Added.
2131 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug12908-1-expected.png: Added.
2132 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1296-expected.png: Added.
2133 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug13169-expected.png: Added.
2134 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1430-expected.png: Added.
2135 * platform/chromium-mac/tables/mozilla/bugs/bug1271-expected.png: Removed.
2136 * platform/chromium-mac/tables/mozilla/bugs/bug12908-1-expected.png: Removed.
2137 * platform/chromium-mac/tables/mozilla/bugs/bug1296-expected.png: Removed.
2138 * platform/chromium-mac/tables/mozilla/bugs/bug13169-expected.png: Removed.
2139 * platform/chromium-mac/tables/mozilla/bugs/bug1430-expected.png: Removed.
2140 * platform/chromium-win/tables/mozilla/bugs/bug1271-expected.png:
2141 * platform/chromium-win/tables/mozilla/bugs/bug12908-1-expected.png:
2142 * platform/chromium-win/tables/mozilla/bugs/bug1296-expected.png:
2143 * platform/chromium-win/tables/mozilla/bugs/bug13169-expected.png:
2144 * platform/chromium-win/tables/mozilla/bugs/bug1430-expected.png:
2145 * platform/chromium/test_expectations.txt:
2146 * platform/mac/tables/mozilla/bugs/bug1271-expected.txt: Removed.
2147 * platform/mac/tables/mozilla/bugs/bug13169-expected.txt: Removed.
2148 * platform/qt/tables/mozilla/bugs/bug1271-expected.txt: Removed.
2149 * platform/qt/tables/mozilla/bugs/bug13169-expected.txt: Removed.
2150 * tables/mozilla/bugs/bug1271-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug1271-expected.txt.
2151 * tables/mozilla/bugs/bug13169-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug13169-expected.txt.
2153 2012-02-15 Csaba Osztrogonác <ossy@webkit.org>
2155 [Qt] Unreviewed gardening after r107814.
2157 * platform/qt/css3/filters/effect-blur-hw-expected.png:
2158 * platform/qt/css3/filters/effect-blur-hw-expected.txt:
2159 * platform/qt/css3/filters/effect-combined-expected.png:
2160 * platform/qt/css3/filters/effect-combined-expected.txt:
2161 * platform/qt/css3/filters/effect-combined-hw-expected.png:
2162 * platform/qt/css3/filters/effect-combined-hw-expected.txt:
2163 * platform/qt/css3/filters/effect-drop-shadow-hw-expected.png:
2164 * platform/qt/css3/filters/effect-drop-shadow-hw-expected.txt:
2165 * platform/qt/css3/filters/effect-grayscale-hw-expected.png:
2166 * platform/qt/css3/filters/effect-grayscale-hw-expected.txt:
2167 * platform/qt/css3/filters/effect-hue-rotate-hw-expected.png:
2168 * platform/qt/css3/filters/effect-hue-rotate-hw-expected.txt:
2169 * platform/qt/css3/filters/effect-invert-hw-expected.png:
2170 * platform/qt/css3/filters/effect-invert-hw-expected.txt:
2171 * platform/qt/css3/filters/effect-opacity-hw-expected.png:
2172 * platform/qt/css3/filters/effect-opacity-hw-expected.txt:
2173 * platform/qt/css3/filters/effect-saturate-hw-expected.png:
2174 * platform/qt/css3/filters/effect-saturate-hw-expected.txt:
2175 * platform/qt/css3/filters/effect-sepia-hw-expected.png:
2176 * platform/qt/css3/filters/effect-sepia-hw-expected.txt:
2178 2012-02-15 Daniel Cheng <dcheng@chromium.org>
2180 dataTransfer.types (HTML5 drag & drop) should return DOMStringList
2181 https://bugs.webkit.org/show_bug.cgi?id=30416
2183 Reviewed by Eric Seidel.
2185 Add a test to document the fact that many dataTransfer attributes aren't live and return a
2186 different object each time they're accessed. Also update tests to use contains() instead of
2189 * editing/pasteboard/clipboard-customData.html:
2190 * editing/pasteboard/onpaste-text-html-types.html:
2191 * fast/events/drag-and-drop-dataTransfer-types-nocrash.html:
2192 * fast/events/drag-customData.html:
2193 * fast/events/drag-dataTransfer-live-attributes-expected.txt: Added.
2194 * fast/events/drag-dataTransfer-live-attributes.html: Copied from LayoutTests/fast/events/drag-customData.html.
2195 * http/tests/local/fileapi/resources/setup-file-input-element-for-drag.js:
2196 * http/tests/security/clipboard/script-tests/clipboard-file-access.js:
2197 (checkForEventTransferType):
2199 2012-02-15 Bear Travis <betravis@adobe.com>
2201 Repaint issues on changing 'viewBox' of inner SVG
2202 https://bugs.webkit.org/show_bug.cgi?id=77903
2204 Adding test for 77903. When setting the viewbox on an inner svg
2205 element causes the content to become smaller, make sure that the
2206 area behind the content is redrawn.
2208 Reviewed by Nikolas Zimmermann.
2210 * platform/chromium/test_expectations.txt:
2211 * svg/repaint/inner-svg-change-viewBox-contract-expected.png: Added.
2212 * svg/repaint/inner-svg-change-viewBox-contract-expected.txt: Added.
2213 * svg/repaint/inner-svg-change-viewBox-contract.svg: Added.
2215 2012-02-15 Bear Travis <betravis@adobe.com>
2217 Repaint issues on changing 'viewBox' of inner SVG
2218 https://bugs.webkit.org/show_bug.cgi?id=77903
2220 Adding test for 77903. When setting the viewbox on an inner svg
2221 element causes the content to become smaller, make sure that the
2222 area behind the content is redrawn.
2224 Reviewed by Nikolas Zimmermann.
2226 * platform/chromium/test_expectations.txt:
2227 * svg/repaint/inner-svg-change-viewBox-contract-expected.png: Added.
2228 * svg/repaint/inner-svg-change-viewBox-contract-expected.txt: Added.
2229 * svg/repaint/inner-svg-change-viewBox-contract.svg: Added.
2231 2012-02-15 Daniel Cheng <dcheng@chromium.org>
2233 dataTransfer.types (HTML5 drag & drop) should return DOMStringList
2234 https://bugs.webkit.org/show_bug.cgi?id=30416
2236 Reviewed by Eric Seidel.
2238 Add a test to document the fact that many dataTransfer attributes aren't live and return a
2239 different object each time they're accessed. Also update tests to use contains() instead of
2242 * editing/pasteboard/clipboard-customData.html:
2243 * editing/pasteboard/onpaste-text-html-types.html:
2244 * fast/events/drag-and-drop-dataTransfer-types-nocrash.html:
2245 * fast/events/drag-customData.html:
2246 * fast/events/drag-dataTransfer-live-attributes-expected.txt: Added.
2247 * fast/events/drag-dataTransfer-live-attributes.html: Copied from LayoutTests/fast/events/drag-customData.html.
2248 * http/tests/local/fileapi/resources/setup-file-input-element-for-drag.js:
2249 * http/tests/security/clipboard/script-tests/clipboard-file-access.js:
2250 (checkForEventTransferType):
2252 2012-02-15 Bear Travis <betravis@adobe.com>
2254 Repaint issues on changing 'viewBox' of inner SVG
2255 https://bugs.webkit.org/show_bug.cgi?id=77903
2257 Adding test for 77903. When setting the viewbox on an inner svg
2258 element causes the content to become smaller, make sure that the
2259 area behind the content is redrawn.
2261 Reviewed by Nikolas Zimmermann.
2263 * platform/chromium/test_expectations.txt:
2264 * svg/repaint/inner-svg-change-viewBox-contract-expected.png: Added.
2265 * svg/repaint/inner-svg-change-viewBox-contract-expected.txt: Added.
2266 * svg/repaint/inner-svg-change-viewBox-contract.svg: Added.
2268 2012-02-15 Csaba Osztrogonác <ossy@webkit.org>
2270 [Qt] Unreviewed gardening after r107811.
2272 * platform/qt/platform/qt/plugins/qt-qwidget-plugin-expected.txt:
2273 * platform/qt/plugins/application-plugin-plugins-disabled-expected.txt:
2274 * platform/qt/plugins/iframe-plugin-bgcolor-expected.txt:
2275 * platform/qt/plugins/netscape-dom-access-expected.txt:
2277 2012-02-15 Ilya Tikhonovsky <loislo@chromium.org>
2279 [chromium] Unreviewed rebaseline after r107864.
2281 * platform/chromium-mac-leopard/svg/batik/text/textDecoration-expected.png:
2282 * platform/chromium-mac-leopard/svg/css/text-shadow-multiple-expected.png:
2283 * platform/chromium-mac-leopard/svg/text/text-text-08-b-expected.png:
2284 * platform/chromium-mac-leopard/svg/wicd/test-scalable-background-image2-expected.png:
2285 * platform/chromium-mac-snowleopard/compositing/plugins/composited-plugin-expected.png: Added.
2286 * platform/chromium-mac-snowleopard/compositing/plugins/composited-plugin-expected.txt: Added.
2287 * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/text-text-08-b-expected.png: Added.
2288 * platform/chromium-mac-snowleopard/svg/batik/text/textDecoration-expected.png:
2289 * platform/chromium-mac-snowleopard/svg/css/text-shadow-multiple-expected.png:
2290 * platform/chromium-mac-snowleopard/svg/text/text-text-08-b-expected.png:
2291 * platform/chromium-mac-snowleopard/svg/wicd/test-scalable-background-image2-expected.png:
2292 * platform/chromium-mac/compositing/plugins/composited-plugin-expected.png: Removed.
2293 * platform/chromium-mac/svg/W3C-SVG-1.1/text-text-08-b-expected.png: Removed.
2295 2012-02-15 Kentaro Hara <haraken@chromium.org>
2297 [Mac] PasteboardMac.mm build fails
2298 https://bugs.webkit.org/show_bug.cgi?id=78655
2300 Reviewed by Enrica Casucci.
2302 The added test drops multiple files onto an editable element,
2303 and checks if the filenames are inserted into the editable element.
2305 * editing/pasteboard/drag-files-to-editable-element-expected.txt: Added.
2306 * editing/pasteboard/drag-files-to-editable-element.html: Added.
2307 * platform/chromium/test_expectations.txt:
2308 * platform/efl/Skipped:
2309 * platform/gtk/Skipped:
2310 * platform/qt/Skipped:
2311 * platform/win/Skipped:
2312 * platform/wk2/Skipped:
2314 2012-02-15 Ilya Tikhonovsky <loislo@chromium.org>
2316 [chromium] Unreviewed rebaseline after r107864.
2318 * platform/chromium-mac-snowleopard/svg/text/text-fill-opacity-expected.png: Added.
2319 * platform/chromium-mac-snowleopard/svg/text/text-fill-opacity-expected.txt: Added.
2320 * platform/chromium-mac/fast/canvas/text-globalAlpha-expected.txt: Removed.
2321 * platform/chromium-win/svg/text/text-fill-opacity-expected.png: Added.
2322 * platform/chromium-win/svg/text/text-fill-opacity-expected.txt: Renamed from LayoutTests/platform/chromium-linux/svg/text/text-fill-opacity-expected.txt.
2324 2012-02-15 Pablo Flouret <pablof@motorola.com>
2326 Add support for the translate attribute in html elements.
2327 https://bugs.webkit.org/show_bug.cgi?id=78751
2329 Reviewed by Adam Barth.
2331 The translate attribute is used to specify whether an element's
2332 attribute values and the values of its Text node children are to be
2333 translated when the page is localized, or whether to leave them
2336 Details at http://www.whatwg.org/specs/web-apps/current-work/multipage/elements.html#attr-translate
2338 * fast/dom/HTMLElement/translate-expected.txt: Added.
2339 * fast/dom/HTMLElement/translate.html: Added.
2341 2012-02-15 Noel Gordon <noel.gordon@gmail.com>
2343 Unreviewed. compositing/culling/scrolled-within-boxshadow.html IMAGE failure.
2345 * platform/chromium/test_expectations.txt:
2347 2012-02-15 Sami Kyostila <skyostil@google.com>
2349 Add stacking context test for -webkit-overflow-scrolling CSS property
2350 https://bugs.webkit.org/show_bug.cgi?id=78664
2352 Reviewed by Eric Seidel.
2354 Make sure a stacking context is created for elements with touch overflow scrolling.
2356 * platform/chromium-win/fast/css/getComputedStyle/computed-style-expected.txt: Added new property.
2357 * platform/chromium-win/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt: Ditto.
2358 * platform/chromium-win/svg/css/getComputedStyle-basic-expected.txt: Ditto.
2359 * platform/chromium/compositing/overflow/overflow-scrolling-touch-stacking-context-expected.png: Added.
2360 * platform/chromium/compositing/overflow/overflow-scrolling-touch-stacking-context-expected.txt: Added.
2361 * platform/chromium/compositing/overflow/overflow-scrolling-touch-stacking-context.html: Added.
2363 2012-02-15 Alexey Proskuryakov <ap@apple.com>
2365 Crash after trying to use FileReader in a document with null origin string
2366 https://bugs.webkit.org/show_bug.cgi?id=78649
2368 Reviewed by Enrica Casucci.
2370 * fast/files/null-origin-string-expected.txt: Added.
2371 * fast/files/null-origin-string.html: Added.
2373 Dragging files is only implemented on a few platforms. Brought some order to skipped files
2376 * platform/mac/Skipped: Bug 45576 has been fixed long ago; unskip the test.
2378 * platform/efl/Skipped:
2379 * platform/qt/Skipped:
2380 Skipped the new tests.
2382 * platform/gtk-wk2/Skipped:
2383 * platform/mac-wk2/Skipped:
2384 * platform/win-wk2/Skipped:
2385 * platform/wk2/Skipped:
2386 Skipped the new tests, and moved other tests using eventSender.beginDragWithFiles to a
2387 central location. No WK2 port implements these yet, so we needn't maintain the lists
2390 2012-02-15 Noel Gordon <noel.gordon@gmail.com>
2392 [chromium] Rebaseline JPEG image results after r107389
2393 https://bugs.webkit.org/show_bug.cgi?id=78454
2395 Unreviewed. Rebaseline #14 of N.
2397 * platform/chromium-linux/tables/mozilla/bugs/bug15544-expected.png:
2398 * platform/chromium-linux/tables/mozilla/bugs/bug17138-expected.png:
2399 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug15544-expected.png:
2400 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug17138-expected.png:
2401 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug120107-expected.png: Added.
2402 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug12908-2-expected.png: Added.
2403 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug15544-expected.png: Added.
2404 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug17138-expected.png: Added.
2405 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug196870-expected.png: Added.
2406 * platform/chromium-mac/tables/mozilla/bugs/bug120107-expected.png: Removed.
2407 * platform/chromium-mac/tables/mozilla/bugs/bug12908-2-expected.png: Removed.
2408 * platform/chromium-mac/tables/mozilla/bugs/bug15544-expected.png: Removed.
2409 * platform/chromium-mac/tables/mozilla/bugs/bug17138-expected.png: Removed.
2410 * platform/chromium-mac/tables/mozilla/bugs/bug196870-expected.png: Removed.
2411 * platform/chromium-win/tables/mozilla/bugs/bug120107-expected.png:
2412 * platform/chromium-win/tables/mozilla/bugs/bug12908-2-expected.png:
2413 * platform/chromium-win/tables/mozilla/bugs/bug15544-expected.png:
2414 * platform/chromium-win/tables/mozilla/bugs/bug17138-expected.png:
2415 * platform/chromium-win/tables/mozilla/bugs/bug196870-expected.png:
2416 * platform/chromium/test_expectations.txt:
2417 * platform/mac/tables/mozilla/bugs/bug120107-expected.txt: Removed.
2418 * platform/mac/tables/mozilla/bugs/bug12908-2-expected.txt: Removed.
2419 * platform/mac/tables/mozilla/bugs/bug196870-expected.txt: Removed.
2420 * platform/qt/tables/mozilla/bugs/bug120107-expected.txt: Removed.
2421 * platform/qt/tables/mozilla/bugs/bug12908-2-expected.txt: Removed.
2422 * platform/qt/tables/mozilla/bugs/bug196870-expected.txt: Removed.
2423 * tables/mozilla/bugs/bug120107-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug120107-expected.txt.
2424 * tables/mozilla/bugs/bug12908-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug12908-2-expected.txt.
2425 * tables/mozilla/bugs/bug196870-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug196870-expected.txt.
2427 2012-02-15 Erik Arvidsson <arv@chromium.org>
2429 Expose Window constructor
2430 https://bugs.webkit.org/show_bug.cgi?id=78722
2432 Reviewed by Adam Barth.
2434 * fast/dom/Window/window-constructor-presence-expected.txt: Added.
2435 * fast/dom/Window/window-constructor-presence.html: Added.
2437 2012-02-15 Kelly Norton <knorton@google.com>
2439 fill-opacity does not render properly only on Chromium Mac.
2440 https://bugs.webkit.org/show_bug.cgi?id=78624
2442 Reviewed by Stephen White.
2444 * platform/chromium-linux/svg/text/text-fill-opacity-expected.png: Added.
2445 * platform/chromium-linux/svg/text/text-fill-opacity-expected.txt: Added.
2446 * platform/chromium/test_expectations.txt:
2447 * svg/text/text-fill-opacity.svg: Added.
2449 2012-02-15 Tim Horton <timothy_horton@apple.com>
2451 REGRESSION(r105057): Dynamically changing <tspan> offsets is broken
2452 https://bugs.webkit.org/show_bug.cgi?id=78385
2453 <rdar://problem/10832932>
2455 Reviewed by Simon Fraser.
2457 Add a test ensuring that changing the offset of a <tspan> post-load results in correct layout.
2459 * platform/chromium/test_expectations.txt:
2460 * platform/mac/svg/text/tspan-dynamic-positioning-expected.png: Added.
2461 * platform/mac/svg/text/tspan-dynamic-positioning-expected.txt: Added.
2462 * svg/text/tspan-dynamic-positioning.svg: Added.
2464 2012-02-15 Nate Chapin <japhet@chromium.org>
2466 Remove Skipped tests that were broken by r107672.
2467 https://bugs.webkit.org/show_bug.cgi?id=76564
2469 Reviewed by Adam Barth.
2471 * platform/gtk/Skipped:
2472 * platform/qt/Skipped:
2474 2012-02-15 Tony Chang <tony@chromium.org>
2476 [chromium] Unreviewed. regionOverflow tests are flaky in debug.
2478 * platform/chromium/test_expectations.txt:
2480 2012-02-15 Tony Chang <tony@chromium.org>
2482 [chromium] Unreviewed, rebasing tests after r107836.
2484 * platform/chromium-linux-x86/fast/css/box-shadow-and-border-radius-expected.png:
2485 * platform/chromium-linux/fast/css/box-shadow-and-border-radius-expected.png:
2486 * platform/chromium-linux/fast/transforms/shadows-expected.png:
2487 * platform/chromium-mac-leopard/fast/css/box-shadow-and-border-radius-expected.png:
2488 * platform/chromium-mac-leopard/fast/transforms/shadows-expected.png:
2489 * platform/chromium-mac-snowleopard/fast/css/box-shadow-and-border-radius-expected.png:
2490 * platform/chromium-mac-snowleopard/fast/transforms/shadows-expected.png:
2491 * platform/chromium-win-vista/fast/css/box-shadow-and-border-radius-expected.png:
2492 * platform/chromium-win-xp/fast/css/box-shadow-and-border-radius-expected.png:
2493 * platform/chromium-win/fast/box-shadow/border-radius-big-expected.png:
2494 * platform/chromium-win/fast/css/box-shadow-and-border-radius-expected.png:
2495 * platform/chromium-win/fast/transforms/shadows-expected.png:
2496 * platform/chromium/test_expectations.txt:
2498 2012-02-15 Stephen White <senorblanco@chromium.org>
2500 Unreviewed gardening: mark a test as no longer MISSING.
2502 * platform/chromium/test_expectations.txt:
2504 2012-02-15 Tony Chang <tony@chromium.org>
2506 Unreviewed gardening: Fix more results after r107833.
2508 * fast/css/getComputedStyle/computed-style-expected.txt:
2509 * fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
2510 * platform/chromium-mac-snowleopard/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
2511 * platform/mac/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
2512 * svg/css/getComputedStyle-basic-expected.txt:
2514 2012-02-15 Tony Chang <tony@chromium.org>
2516 [chromium] Unreviewed, adding the chromium-mac result for this test (test added in r107822).
2518 * platform/chromium-mac-snowleopard/css3/filters/multiple-filters-invalidation-expected.png: Added.
2520 2012-02-15 Adam Klein <adamk@chromium.org>
2522 Add a test asserting that the second argument to MutationCallback is the observer
2523 https://bugs.webkit.org/show_bug.cgi?id=78653
2525 Reviewed by Ryosuke Niwa.
2527 This is specified in the spec text, so I wanted to make sure it was
2528 properly exercised in a layout test.
2530 * fast/mutation/callback-second-argument-expected.txt: Added.
2531 * fast/mutation/callback-second-argument.html: Added.
2533 2012-02-15 Ojan Vafai <ojan@chromium.org>
2535 getComputedStyle of flex-item-align:auto should resolve to it's parent's flex-align value
2536 https://bugs.webkit.org/show_bug.cgi?id=76326
2538 Reviewed by Tony Chang.
2540 * css3/flexbox/css-properties-expected.txt:
2541 * platform/chromium-win/fast/css/getComputedStyle/computed-style-expected.txt:
2542 * platform/chromium-win/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
2543 * platform/chromium-win/svg/css/getComputedStyle-basic-expected.txt:
2545 2012-02-15 Eric Carlson <eric.carlson@apple.com>
2547 Unset the active flag when TextTrackCues go away
2548 https://bugs.webkit.org/show_bug.cgi?id=72552
2550 Reviewed by Maciej Stachowiak.
2552 * media/track/track-active-cues-expected.txt: Added.
2553 * media/track/track-active-cues.html: Added.
2554 * track-cue-mutable-text.html: Update to not run test until track and video have
2556 * media/video-test.js:
2557 (waitForEventsAndCall): New, call the specified function after the list of events
2560 2012-02-15 Stephen White <senorblanco@chromium.org>
2562 Unreviewed gardening.
2564 Added baseline for new test multiple-filters-invalidation.html.
2566 * platform/chromium-win/css3/filters/multiple-filters-invalidation-expected.png: Added.
2568 2012-02-15 Adam Klein <adamk@chromium.org>
2570 Stop skipping fast/filesystem/file-writer-gc-blob.html, as FileWriter is well-supported in DRT.
2572 Unreviewed test expectations update.
2574 * platform/chromium/test_expectations.txt:
2576 2012-02-15 Tony Chang <tony@chromium.org>
2578 [chromium] Unreviewed, land chromium pixel results after r107797.
2580 * platform/chromium-linux/svg/dynamic-updates/SVGClipPath-influences-hitTesting-expected.png:
2581 * platform/chromium-linux/svg/dynamic-updates/SVGClipPathElement-css-transform-influences-hitTesting-expected.png:
2582 * platform/chromium-linux/svg/dynamic-updates/SVGClipPathElement-transform-influences-hitTesting-expected.png:
2583 * platform/chromium-linux/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.png:
2584 * platform/chromium-mac-leopard/svg/dynamic-updates/SVGClipPath-influences-hitTesting-expected.png:
2585 * platform/chromium-mac-leopard/svg/dynamic-updates/SVGClipPathElement-css-transform-influences-hitTesting-expected.png:
2586 * platform/chromium-mac-leopard/svg/dynamic-updates/SVGClipPathElement-transform-influences-hitTesting-expected.png:
2587 * platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.png: Added.
2588 * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGClipPath-influences-hitTesting-expected.png: Added.
2589 * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGClipPathElement-css-transform-influences-hitTesting-expected.png:
2590 * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGClipPathElement-transform-influences-hitTesting-expected.png: Added.
2591 * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.png: Added.
2592 * platform/chromium-mac/svg/dynamic-updates/SVGClipPath-influences-hitTesting-expected.png: Removed.
2593 * platform/chromium-mac/svg/dynamic-updates/SVGClipPathElement-transform-influences-hitTesting-expected.png: Removed.
2594 * platform/chromium-mac/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.png: Removed.
2595 * platform/chromium-mac/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.txt: Removed.
2596 * platform/chromium-win/svg/dynamic-updates/SVGClipPath-influences-hitTesting-expected.png:
2597 * platform/chromium-win/svg/dynamic-updates/SVGClipPathElement-css-transform-influences-hitTesting-expected.png:
2598 * platform/chromium-win/svg/dynamic-updates/SVGClipPathElement-transform-influences-hitTesting-expected.png:
2599 * platform/chromium-win/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.png:
2600 * platform/chromium-win/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.txt: Removed.
2602 2012-02-15 Tony Chang <tony@chromium.org>
2604 fast/regions/element-region-overflow-state.html is flaky
2605 https://bugs.webkit.org/show_bug.cgi?id=78654
2607 Reviewed by Ojan Vafai.
2609 Sometimes layout happens before test() is called (e.g., if one of the
2610 script or other resources take a long time to load). In that case, we
2611 get different results. Not waiting for the load event should always
2614 * fast/regions/element-region-overflow-state-expected.txt:
2615 * fast/regions/element-region-overflow-state.html:
2616 * fast/regions/element-region-overflow-state-vertical-rl-expected.txt
2617 * fast/regions/element-region-overflow-state-vertical-rl.html
2619 2012-02-15 Adam Klein <adamk@chromium.org>
2621 Re-specify flakiness of http/tests/filesystem/workers as PASS TIMEOUT, since they never crash.
2623 Unreviewed test expectations update.
2625 * platform/chromium/test_expectations.txt:
2627 2012-02-14 Stephen White <senorblanco@chromium.org>
2629 New test to exercise invalidation of multiple CSS filters.
2630 https://bugs.webkit.org/show_bug.cgi?id=78626
2632 Reviewed by Darin Adler.
2634 * css3/filters/multiple-filters-invalidation-expected.txt: Added.
2635 * css3/filters/multiple-filters-invalidation.html: Added.
2636 * platform/mac-snowleopard/css3/filters/multiple-filters-invalidation-expected.png: Added.
2638 2012-02-15 No'am Rosenthal <noam.rosenthal@nokia.com>
2640 [Texmap] Support filters in TextureMapperImageBuffer
2641 https://bugs.webkit.org/show_bug.cgi?id=76026
2643 Unskipping hardware filter tests. They're still skipped in WebKit2.
2645 Reviewed by Kenneth Rohde Christiansen.
2647 * platform/qt-5.0-wk2/Skipped:
2648 * platform/qt/Skipped:
2649 * platform/qt/css3/filters/crash-hw-sw-switch-expected.png:
2650 * platform/qt/css3/filters/effect-blur-hw-expected.png: Added.
2651 * platform/qt/css3/filters/effect-blur-hw-expected.txt: Added.
2652 * platform/qt/css3/filters/effect-combined-expected.png: Added.
2653 * platform/qt/css3/filters/effect-combined-expected.txt: Added.
2654 * platform/qt/css3/filters/effect-combined-hw-expected.png: Added.
2655 * platform/qt/css3/filters/effect-combined-hw-expected.txt: Added.
2656 * platform/qt/css3/filters/effect-drop-shadow-hw-expected.png: Added.
2657 * platform/qt/css3/filters/effect-drop-shadow-hw-expected.txt: Added.
2658 * platform/qt/css3/filters/effect-grayscale-hw-expected.png: Added.
2659 * platform/qt/css3/filters/effect-grayscale-hw-expected.txt: Added.
2660 * platform/qt/css3/filters/effect-hue-rotate-hw-expected.png: Added.
2661 * platform/qt/css3/filters/effect-hue-rotate-hw-expected.txt: Added.
2662 * platform/qt/css3/filters/effect-invert-hw-expected.png: Added.
2663 * platform/qt/css3/filters/effect-invert-hw-expected.txt: Added.
2664 * platform/qt/css3/filters/effect-opacity-hw-expected.png: Added.
2665 * platform/qt/css3/filters/effect-opacity-hw-expected.txt: Added.
2666 * platform/qt/css3/filters/effect-saturate-hw-expected.png: Added.
2667 * platform/qt/css3/filters/effect-saturate-hw-expected.txt: Added.
2668 * platform/qt/css3/filters/effect-sepia-hw-expected.png: Added.
2669 * platform/qt/css3/filters/effect-sepia-hw-expected.txt: Added.
2671 2012-02-15 Noel Gordon <noel.gordon@gmail.com>
2673 [chromium] Rebaseline JPEG image results after r107389
2674 https://bugs.webkit.org/show_bug.cgi?id=78454
2676 Unreviewed. Rebaseline #13 of N.
2678 * platform/chromium-linux/tables/mozilla/bugs/bug10565-expected.png:
2679 * platform/chromium-linux/tables/mozilla/bugs/bug11026-expected.png:
2680 * platform/chromium-linux/tables/mozilla/bugs/bug1188-expected.png:
2681 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug10565-expected.png:
2682 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug11026-expected.png:
2683 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug1188-expected.png:
2684 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug10565-expected.png: Added.
2685 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug11026-expected.png: Added.
2686 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1188-expected.png:
2687 * platform/chromium-mac/tables/mozilla/bugs/bug10565-expected.png: Removed.
2688 * platform/chromium-mac/tables/mozilla/bugs/bug11026-expected.png: Removed.
2689 * platform/chromium-win/tables/mozilla/bugs/bug10565-expected.png:
2690 * platform/chromium-win/tables/mozilla/bugs/bug11026-expected.png:
2691 * platform/chromium-win/tables/mozilla/bugs/bug1188-expected.png:
2692 * platform/chromium/test_expectations.txt:
2694 2012-02-15 Yury Semikhatsky <yurys@chromium.org>
2696 Web Inspector: crash when inspecting an element on a page with eval disabled by CSP
2697 https://bugs.webkit.org/show_bug.cgi?id=78705
2699 Reviewed by Pavel Feldman.
2701 * inspector/elements/resolve-node-blocked-expected.txt: Added.
2702 * inspector/elements/resolve-node-blocked.html: Added.
2704 2012-02-15 Kent Tamura <tkent@chromium.org>
2706 Clean up radio button tests
2707 https://bugs.webkit.org/show_bug.cgi?id=78679
2709 Reviewed by Kentaro Hara.
2711 - Split checkbox-radio-onchange.html into checkbox-onchange.html and radio/radio-onchange.html.
2712 - Convert the following rendering tests to text tests.
2713 radio-attr-order.html
2714 radio-nested-labels.html
2716 radio_checked_dynamic.html
2718 This change is a preparation of moving radio button tests to fast/forms/radio/.
2720 * fast/forms/checkbox-onchange-expected.txt: Added.
2721 * fast/forms/checkbox-onchange.html: Added.
2722 * fast/forms/checkbox-radio-onchange.html: Removed.
2723 * fast/forms/radio-attr-order-expected.txt: Added.
2724 * fast/forms/radio-attr-order.html:
2725 * fast/forms/radio-nested-labels-expected.txt: Added.
2726 * fast/forms/radio-nested-labels.html:
2727 * fast/forms/radio/radio-onchange-expected.txt: Added.
2728 * fast/forms/radio/radio-onchange.html: Added.
2729 * fast/forms/radio_checked-expected.txt: Added.
2730 * fast/forms/radio_checked.html:
2731 * fast/forms/radio_checked_dynamic-expected.txt: Added.
2732 * fast/forms/radio_checked_dynamic.html:
2733 * platform/chromium-linux/fast/forms/checkbox-radio-onchange-expected.png: Removed.
2734 * platform/chromium-linux/fast/forms/radio-attr-order-expected.png: Removed.
2735 * platform/chromium-linux/fast/forms/radio-nested-labels-expected.png: Removed.
2736 * platform/chromium-linux/fast/forms/radio_checked-expected.png: Removed.
2737 * platform/chromium-linux/fast/forms/radio_checked_dynamic-expected.png: Removed.
2738 * platform/chromium-win/fast/forms/checkbox-radio-onchange-expected.png: Removed.
2739 * platform/chromium-win/fast/forms/checkbox-radio-onchange-expected.txt: Removed.
2740 * platform/chromium-win/fast/forms/radio-attr-order-expected.png: Removed.
2741 * platform/chromium-win/fast/forms/radio-attr-order-expected.txt: Removed.
2742 * platform/chromium-win/fast/forms/radio-nested-labels-expected.png: Removed.
2743 * platform/chromium-win/fast/forms/radio-nested-labels-expected.txt: Removed.
2744 * platform/chromium-win/fast/forms/radio_checked-expected.png: Removed.
2745 * platform/chromium-win/fast/forms/radio_checked-expected.txt: Removed.
2746 * platform/chromium-win/fast/forms/radio_checked_dynamic-expected.png: Removed.
2747 * platform/chromium-win/fast/forms/radio_checked_dynamic-expected.txt: Removed.
2748 * platform/chromium/test_expectations.txt:
2749 * platform/efl/fast/forms/checkbox-radio-onchange-expected.png: Removed.
2750 * platform/efl/fast/forms/checkbox-radio-onchange-expected.txt: Removed.
2751 * platform/efl/fast/forms/radio-attr-order-expected.png: Removed.
2752 * platform/efl/fast/forms/radio-attr-order-expected.txt: Removed.
2753 * platform/efl/fast/forms/radio-nested-labels-expected.png: Removed.
2754 * platform/efl/fast/forms/radio-nested-labels-expected.txt: Removed.
2755 * platform/efl/fast/forms/radio_checked-expected.png: Removed.
2756 * platform/efl/fast/forms/radio_checked-expected.txt: Removed.
2757 * platform/efl/fast/forms/radio_checked_dynamic-expected.png: Removed.
2758 * platform/efl/fast/forms/radio_checked_dynamic-expected.txt: Removed.
2759 * platform/gtk/fast/forms/checkbox-radio-onchange-expected.png: Removed.
2760 * platform/gtk/fast/forms/checkbox-radio-onchange-expected.txt: Removed.
2761 * platform/gtk/fast/forms/radio-attr-order-expected.png: Removed.
2762 * platform/gtk/fast/forms/radio-attr-order-expected.txt: Removed.
2763 * platform/gtk/fast/forms/radio-nested-labels-expected.png: Removed.
2764 * platform/gtk/fast/forms/radio-nested-labels-expected.txt: Removed.
2765 * platform/gtk/fast/forms/radio_checked-expected.png: Removed.
2766 * platform/gtk/fast/forms/radio_checked-expected.txt: Removed.
2767 * platform/gtk/fast/forms/radio_checked_dynamic-expected.png: Removed.
2768 * platform/gtk/fast/forms/radio_checked_dynamic-expected.txt: Removed.
2769 * platform/mac-leopard/fast/forms/checkbox-radio-onchange-expected.png: Removed.
2770 * platform/mac-leopard/fast/forms/radio-attr-order-expected.png: Removed.
2771 * platform/mac-leopard/fast/forms/radio-nested-labels-expected.png: Removed.
2772 * platform/mac-leopard/fast/forms/radio_checked-expected.png: Removed.
2773 * platform/mac-leopard/fast/forms/radio_checked_dynamic-expected.png: Removed.
2774 * platform/mac-snowleopard/fast/forms/radio_checked-expected.png: Removed.
2775 * platform/mac-snowleopard/fast/forms/radio_checked-expected.txt: Removed.
2776 * platform/mac-snowleopard/fast/forms/radio_checked_dynamic-expected.png: Removed.
2777 * platform/mac-snowleopard/fast/forms/radio_checked_dynamic-expected.txt: Removed.
2778 * platform/mac/fast/forms/checkbox-radio-onchange-expected.png: Removed.
2779 * platform/mac/fast/forms/checkbox-radio-onchange-expected.txt: Removed.
2780 * platform/mac/fast/forms/radio-attr-order-expected.png: Removed.
2781 * platform/mac/fast/forms/radio-attr-order-expected.txt: Removed.
2782 * platform/mac/fast/forms/radio-nested-labels-expected.png: Removed.
2783 * platform/mac/fast/forms/radio-nested-labels-expected.txt: Removed.
2784 * platform/mac/fast/forms/radio_checked-expected.png: Removed.
2785 * platform/mac/fast/forms/radio_checked-expected.txt: Removed.
2786 * platform/mac/fast/forms/radio_checked_dynamic-expected.png: Removed.
2787 * platform/mac/fast/forms/radio_checked_dynamic-expected.txt: Removed.
2788 * platform/qt-mac/Skipped:
2789 * platform/qt/fast/forms/checkbox-radio-onchange-expected.txt: Removed.
2790 * platform/qt/fast/forms/radio-attr-order-expected.txt: Removed.
2791 * platform/qt/fast/forms/radio-nested-labels-expected.txt: Removed.
2792 * platform/qt/fast/forms/radio_checked-expected.txt: Removed.
2793 * platform/qt/fast/forms/radio_checked_dynamic-expected.txt: Removed.
2795 2012-02-15 Nikolas Zimmermann <nzimmermann@rim.com>
2797 Not reviewed. Update SnowLeopard SVG pixel test baseline - chunk 1.
2799 * platform/mac-snowleopard/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.png:
2800 * platform/mac-snowleopard/svg/W3C-SVG-1.1-SE/filters-image-05-f-expected.png:
2801 * platform/mac-snowleopard/svg/W3C-SVG-1.1-SE/painting-control-04-f-expected.png:
2802 * platform/mac-snowleopard/svg/W3C-SVG-1.1-SE/types-dom-01-b-expected.png: Added.
2803 * platform/mac-snowleopard/svg/W3C-SVG-1.1/animate-elem-30-t-expected.png:
2804 * platform/mac-snowleopard/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png:
2805 * platform/mac-snowleopard/svg/W3C-SVG-1.1/animate-elem-80-t-expected.png:
2806 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-blend-01-b-expected.png: Added.
2807 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-color-01-b-expected.png:
2808 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-composite-02-b-expected.png:
2809 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-comptran-01-b-expected.png:
2810 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-conv-01-f-expected.png:
2811 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-diffuse-01-f-expected.png:
2812 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-displace-01-f-expected.png:
2813 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-example-01-b-expected.png: Added.
2814 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-gauss-01-b-expected.png:
2815 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-image-01-b-expected.png:
2816 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-light-01-f-expected.png:
2817 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-light-04-f-expected.png:
2818 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-morph-01-f-expected.png:
2819 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-offset-01-b-expected.png:
2820 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-specular-01-f-expected.png:
2821 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-tile-01-b-expected.png:
2822 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-turb-01-f-expected.png:
2823 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-turb-02-f-expected.png:
2824 * platform/mac-snowleopard/svg/W3C-SVG-1.1/render-groups-01-b-expected.png: Added.
2825 * platform/mac-snowleopard/svg/W3C-SVG-1.1/render-groups-03-t-expected.png: Added.
2826 * platform/mac-snowleopard/svg/W3C-SVG-1.1/struct-image-04-t-expected.png: Added.
2827 * platform/mac-snowleopard/svg/W3C-SVG-1.1/struct-image-06-t-expected.png:
2828 * platform/mac-snowleopard/svg/W3C-SVG-1.1/struct-image-07-t-expected.png: Added.
2829 * platform/mac-snowleopard/svg/W3C-SVG-1.1/struct-image-08-t-expected.png: Added.
2830 * platform/mac-snowleopard/svg/W3C-SVG-1.1/struct-use-01-t-expected.png: Added.
2831 * platform/mac-snowleopard/svg/as-background-image/svg-as-background-6-expected.png:
2832 * platform/mac-snowleopard/svg/as-border-image/svg-as-border-image-2-expected.png:
2833 * platform/mac-snowleopard/svg/as-border-image/svg-as-border-image-expected.png: Added.
2834 * platform/mac-snowleopard/svg/as-image/animated-svg-as-image-expected.png:
2835 * platform/mac-snowleopard/svg/as-image/animated-svg-as-image-no-fixed-intrinsic-size-expected.png:
2836 * platform/mac-snowleopard/svg/as-image/animated-svg-as-image-same-image-expected.png:
2837 * platform/mac-snowleopard/svg/as-image/svg-image-change-content-size-expected.png:
2838 * platform/mac-snowleopard/svg/as-object/embedded-svg-immediate-offsetWidth-query-expected.png:
2839 * platform/mac-snowleopard/svg/as-object/embedded-svg-size-changes-expected.png:
2840 * platform/mac-snowleopard/svg/as-object/nested-embedded-svg-size-changes-expected.png:
2841 * platform/mac-snowleopard/svg/batik/filters/feTile-expected.png:
2842 * platform/mac-snowleopard/svg/batik/filters/filterRegions-expected.png:
2843 * platform/mac-snowleopard/svg/batik/masking/maskRegions-expected.png:
2844 * platform/mac-snowleopard/svg/batik/text/smallFonts-expected.png:
2845 * platform/mac-snowleopard/svg/batik/text/textEffect-expected.png:
2846 * platform/mac-snowleopard/svg/batik/text/textEffect3-expected.png:
2847 * platform/mac-snowleopard/svg/carto.net/selectionlist-expected.png:
2848 * platform/mac-snowleopard/svg/carto.net/window-expected.png:
2849 * platform/mac-snowleopard/svg/css/path-gradient-stroke-shadow-expected.png: Added.
2850 * platform/mac-snowleopard/svg/css/rect-gradient-stroke-shadow-expected.png: Added.
2851 * platform/mac-snowleopard/svg/css/shadow-changes-expected.png:
2852 * platform/mac-snowleopard/svg/custom/absolute-sized-content-with-resources-expected.png:
2853 * platform/mac-snowleopard/svg/custom/circle-move-invalidation-expected.png:
2854 * platform/mac-snowleopard/svg/custom/convolution-crash-expected.png: Added.
2855 * platform/mac-snowleopard/svg/custom/createImageElement-expected.png: Added.
2856 * platform/mac-snowleopard/svg/custom/createImageElement2-expected.png:
2857 * platform/mac-snowleopard/svg/custom/empty-merge-expected.png: Added.
2858 * platform/mac-snowleopard/svg/custom/feComponentTransfer-Discrete-expected.png:
2859 * platform/mac-snowleopard/svg/custom/feComponentTransfer-Gamma-expected.png:
2860 * platform/mac-snowleopard/svg/custom/feComponentTransfer-Linear-expected.png:
2861 * platform/mac-snowleopard/svg/custom/feComponentTransfer-Table-expected.png:
2862 * platform/mac-snowleopard/svg/custom/feDisplacementMap-01-expected.png: Added.
2863 * platform/mac-snowleopard/svg/custom/focus-ring-expected.png:
2864 * platform/mac-snowleopard/svg/custom/foreignObject-crash-on-hover-expected.png:
2865 * platform/mac-snowleopard/svg/custom/getTransformToElement-expected.png:
2866 * platform/mac-snowleopard/svg/custom/grayscale-gradient-mask-2-expected.png: Added.
2867 * platform/mac-snowleopard/svg/custom/group-opacity-expected.png:
2868 * platform/mac-snowleopard/svg/custom/hit-test-unclosed-subpaths-expected.png:
2869 * platform/mac-snowleopard/svg/custom/hit-test-with-br-expected.png:
2870 * platform/mac-snowleopard/svg/custom/image-parent-translation-expected.png:
2871 * platform/mac-snowleopard/svg/custom/image-small-width-height-expected.png:
2872 * platform/mac-snowleopard/svg/custom/image-with-prefix-in-webarchive-expected.png: Added.
2873 * platform/mac-snowleopard/svg/custom/image-with-transform-clip-filter-expected.png:
2874 * platform/mac-snowleopard/svg/custom/inline-svg-in-xhtml-expected.png:
2875 * platform/mac-snowleopard/svg/custom/js-late-clipPath-and-object-creation-expected.png: Added.
2876 * platform/mac-snowleopard/svg/custom/js-update-image-and-display-expected.png: Added.
2877 * platform/mac-snowleopard/svg/custom/js-update-image-and-display2-expected.png: Added.
2878 * platform/mac-snowleopard/svg/custom/js-update-image-and-display3-expected.png: Added.
2879 * platform/mac-snowleopard/svg/custom/js-update-image-expected.png: Added.
2880 * platform/mac-snowleopard/svg/custom/js-update-stop-linked-gradient-expected.png:
2881 * platform/mac-snowleopard/svg/custom/mask-invalidation-expected.png:
2882 * platform/mac-snowleopard/svg/custom/mouse-move-on-svg-container-expected.png:
2883 * platform/mac-snowleopard/svg/custom/mouse-move-on-svg-container-standalone-expected.png:
2884 * platform/mac-snowleopard/svg/custom/mouse-move-on-svg-root-expected.png:
2885 * platform/mac-snowleopard/svg/custom/mouse-move-on-svg-root-standalone-expected.png:
2886 * platform/mac-snowleopard/svg/custom/non-opaque-filters-expected.png:
2887 * platform/mac-snowleopard/svg/custom/pattern-userSpaceOnUse-userToBaseTransform-expected.png: Added.
2888 * platform/mac-snowleopard/svg/custom/pointer-events-image-css-transform-expected.png:
2889 * platform/mac-snowleopard/svg/custom/pointer-events-image-expected.png:
2890 * platform/mac-snowleopard/svg/custom/recursive-filter-expected.png:
2891 * platform/mac-snowleopard/svg/custom/relative-sized-content-expected.png:
2892 * platform/mac-snowleopard/svg/custom/relative-sized-content-with-resources-expected.png:
2893 * platform/mac-snowleopard/svg/custom/relative-sized-deep-shadow-tree-content-expected.png:
2894 * platform/mac-snowleopard/svg/custom/relative-sized-image-expected.png: Added.
2895 * platform/mac-snowleopard/svg/custom/relative-sized-inner-svg-expected.png:
2896 * platform/mac-snowleopard/svg/custom/relative-sized-shadow-tree-content-expected.png:
2897 * platform/mac-snowleopard/svg/custom/relative-sized-shadow-tree-content-with-symbol-expected.png:
2898 * platform/mac-snowleopard/svg/custom/relative-sized-use-on-symbol-expected.png:
2899 * platform/mac-snowleopard/svg/custom/relative-sized-use-without-attributes-on-symbol-expected.png:
2900 * platform/mac-snowleopard/svg/custom/resource-invalidate-on-target-update-expected.png: Added.
2901 * platform/mac-snowleopard/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.png:
2902 * platform/mac-snowleopard/svg/custom/text-filter-expected.png: Added.
2903 * platform/mac-snowleopard/svg/custom/text-image-opacity-expected.png:
2904 * platform/mac-snowleopard/svg/custom/text-xy-updates-SVGList-expected.png:
2905 * platform/mac-snowleopard/svg/custom/transform-with-shadow-and-gradient-expected.png: Added.
2906 * platform/mac-snowleopard/svg/custom/use-clipped-hit-expected.png:
2907 * platform/mac-snowleopard/svg/custom/use-disappears-after-style-update-expected.png:
2908 * platform/mac-snowleopard/svg/custom/use-elementInstance-event-target-expected.png:
2909 * platform/mac-snowleopard/svg/custom/use-elementInstance-methods-expected.png:
2910 * platform/mac-snowleopard/svg/custom/use-event-handler-on-referenced-element-expected.png:
2911 * platform/mac-snowleopard/svg/custom/use-event-handler-on-use-element-expected.png:
2912 * platform/mac-snowleopard/svg/custom/use-instanceRoot-event-bubbling-expected.png: Added.
2913 * platform/mac-snowleopard/svg/custom/use-instanceRoot-event-listeners-expected.png: Added.
2914 * platform/mac-snowleopard/svg/custom/use-on-g-containing-foreignObject-and-image-expected.png: Added.
2915 * platform/mac-snowleopard/svg/custom/visibility-override-filter-expected.png: Added.
2916 * platform/mac-snowleopard/svg/dom/SVGPathSegList-segment-modification-expected.png:
2917 * platform/mac-snowleopard/svg/dom/SVGPathSegList-xml-dom-synchronization-expected.png:
2918 * platform/mac-snowleopard/svg/dom/SVGPathSegList-xml-dom-synchronization2-expected.png:
2920 2012-02-13 Vsevolod Vlasov <vsevik@chromium.org>
2922 Web Inspector: [InspectorIndexedDB] Pass data entries from object stores and indexes to front-end.
2923 https://bugs.webkit.org/show_bug.cgi?id=78503
2925 Reviewed by Yury Semikhatsky.
2927 * http/tests/inspector/indexeddb/database-data-expected.txt: Added.
2928 * http/tests/inspector/indexeddb/database-data.html: Added.
2929 * http/tests/inspector/indexeddb/database-names-expected.txt:
2930 * http/tests/inspector/indexeddb/database-structure-expected.txt:
2931 * http/tests/inspector/indexeddb/indexeddb-test.js:
2932 (initialize_IndexedDBTest.InspectorTest.evaluateWithCallback):
2933 (initialize_IndexedDBTest.InspectorTest.addIDBValue):
2934 (initialize_IndexedDBTest):
2935 (doWithReadWriteTransaction.step2.innerCommitCallback):
2936 (doWithReadWriteTransaction.step2):
2937 (doWithReadWriteTransaction):
2938 (addIDBValue.doWithReadWriteTransaction.withTransactionCallback):
2941 2012-02-15 Kent Tamura <tkent@chromium.org>
2943 Unreviewed, change the encoding of a test HTML.
2945 * fast/forms/radio-nested-labels.html: Convert from UTF-16 to UTF-8.
2947 2012-02-15 Nikolas Zimmermann <nzimmermann@rim.com>
2949 Switch svg/dynamic-updates tests to repaint harness
2950 https://bugs.webkit.org/show_bug.cgi?id=78219
2952 Make all tests that exercise repainting use the fast/repaint/resources/repaint.js harness.
2953 This is the last step, all svg tests have been converted.
2955 The only relevant change to look at is svg/dynamic-updates/resources/SVGTestCase.js, the rest is mechanic, done by a script.
2956 Ran following magic in svg/dynamic-updates: (inject repaint.js in all *.html files in that folder, and register onload handler)
2957 find . -type f -name "*.html" | xargs perl -pi -e "s/js-test-pre\.js\"><\/script\>/js-test-pre\.js\"><\/script\>\n\<script src=\"..\/..\/fast\/repaint\/resources\/repaint\.js\"\>\<\/script\>/"
2958 find . -type f -name "*.html" | xargs perl -pi -e "s/<body>/<body onload=\"runRepaintTest()\">/"
2960 And in svg/dynamic-updates/script-tests: (remove manual startTest function calls, and rename executeTest to repaintTest).
2961 find . -type f -name "*.js" | xargs perl -pi -e "s/startTest\(.*\);\n//"
2962 find . -type f -name "*.js" | xargs perl -pi -e "s/function\ executeTest/function\ repaintTest/"
2964 Only a few tests needed other adjustments.
2966 * platform/chromium/test_expectations.txt:
2967 * svg/animations/resources/SVGAnimationTestCase.js:
2970 * platform/mac/svg/dynamic-updates/SVGCircleElement-dom-cx-attr-expected.png:
2971 * platform/mac/svg/dynamic-updates/SVGCircleElement-dom-cy-attr-expected.png:
2973 * svg/dynamic-updates/SVG-dynamic-css-transform.html:
2974 * svg/dynamic-updates/SVGAElement-dom-href-attr.html:
2976 * svg/dynamic-updates/resources/SVGTestCase.js: Changed to utilize the repaint.js harness.
2977 (createSVGTestCase):
2979 * svg/dynamic-updates/resources/linkTarget.svg:
2980 * svg/dynamic-updates/script-tests/SVGAElement-dom-href-attr.js:
2982 * svg/dynamic-updates/script-tests/SVGAElement-dom-target-attr.js:
2985 * svg/dynamic-updates/script-tests/TEMPLATE.html: Removed.
2987 2012-02-15 Kent Tamura <tkent@chromium.org>
2989 Unreviewed, correct svn:mime-type of a test.
2991 * fast/forms/radio-nested-labels.html:
2992 Modified property svn:mime-type from application/octet-stream to text/html.
2994 2012-02-15 Roland Steiner <rolandsteiner@chromium.org>
2996 <style scoped>: Allow <style scoped> as a direct child of a ShadowRoot
2997 https://bugs.webkit.org/show_bug.cgi?id=77853
2999 Test registration of <style scoped> as a direct child of a ShadowRoot.
3001 Reviewed by Dimitri Glazkov.
3003 * fast/css/style-scoped/registering-shadowroot-expected.txt: Added.
3004 * fast/css/style-scoped/registering-shadowroot.html: Added.
3006 2012-02-14 Pavel Feldman <pfeldman@chromium.org>
3008 Web Inspector: implement redo for DOM actions.
3009 https://bugs.webkit.org/show_bug.cgi?id=78601
3011 Reviewed by Yury Semikhatsky.
3013 * http/tests/inspector/elements-test.js:
3014 (initialize_ElementTest.InspectorTest.generateUndoTest):
3015 * inspector/elements/undo-dom-edits-2-expected.txt:
3016 * inspector/elements/undo-dom-edits-expected.txt:
3017 * inspector/styles/undo-add-new-rule-expected.txt:
3018 * inspector/styles/undo-add-new-rule.html:
3019 * inspector/styles/undo-add-property-expected.txt:
3020 * inspector/styles/undo-add-property.html:
3021 * inspector/styles/undo-change-property-expected.txt:
3022 * inspector/styles/undo-change-property.html:
3023 * inspector/styles/undo-property-toggle-expected.txt:
3024 * inspector/styles/undo-property-toggle.html:
3025 * inspector/styles/undo-set-selector-text-expected.txt:
3026 * inspector/styles/undo-set-selector-text.html:
3028 2012-02-14 Nikolas Zimmermann <nzimmermann@rim.com>
3030 Convert svg/animations to use SMIL methods for driving the timeline
3031 https://bugs.webkit.org/show_bug.cgi?id=78422
3033 Rubber-stamped by Simon Hausmann.
3035 Further cleanup of the svg/animation tests. Always use "0.001" as sampling time
3036 for "just-after-anim-begin" instead of 0.1/0.01 variations. Use "3.999" as
3037 "just-before-anim-end" time instead of 3.9/3.99 variations.
3039 Use a default tolerance of 0.1, instead of the strict 0.01, to avoid having
3040 to expect values like "199.98". Use "200" instead. That doesn't reduce the
3041 value of any of the tests, but its likely to be more stable.
3043 Changed some real-quick running animamtions to have a higher duration.
3044 This minimizes the sampling time error when sampling the animation right after
3045 it started (svg/animation/*nested-transforms*). This doesn't affect the runtime
3046 of the tests at all, as we manually drive the timeline anyways.
3048 Always use shouldBe() instead of shouldBeCloseEnough() if the sampling time
3049 is an integer, like 2.0 for animations that eg. animate x from 0 to 200.
3050 Sampling exactly at 2.0, yields 100, so there's no need to check for equal
3053 * platform/chromium/test_expectations.txt:
3054 * svg/animations/animate-calcMode-spline-by-expected.txt:
3055 * svg/animations/animate-calcMode-spline-from-by-expected.txt:
3056 * svg/animations/animate-calcMode-spline-from-to-expected.txt:
3057 * svg/animations/animate-calcMode-spline-to-expected.txt:
3058 * svg/animations/animate-calcMode-spline-values-expected.txt:
3059 * svg/animations/animate-path-animation-Cc-Ss-expected.txt:
3060 * svg/animations/animate-path-animation-Ll-Vv-Hh-expected.txt:
3061 * svg/animations/animate-path-animation-cC-sS-inverse-expected.txt:
3062 * svg/animations/animate-path-animation-lL-vV-hH-inverse-expected.txt:
3063 * svg/animations/animate-path-nested-transforms-expected.txt:
3064 * svg/animations/animate-path-to-animation-expected.txt:
3065 * svg/animations/animate-text-nested-transforms-expected.txt:
3066 * svg/animations/resources/SVGAnimationTestCase.js:
3067 (shouldBeCloseEnough):
3068 * svg/animations/script-tests/animVal-basics.js:
3070 * svg/animations/script-tests/animate-calcMode-spline-by.js:
3073 * svg/animations/script-tests/animate-calcMode-spline-from-by.js:
3076 * svg/animations/script-tests/animate-calcMode-spline-from-to.js:
3079 * svg/animations/script-tests/animate-calcMode-spline-to.js:
3082 * svg/animations/script-tests/animate-calcMode-spline-values.js:
3085 * svg/animations/script-tests/animate-color-rgba-calcMode-discrete.js:
3087 * svg/animations/script-tests/animate-dynamic-update-attributeName.js:
3089 * svg/animations/script-tests/animate-end-attribute.js:
3091 * svg/animations/script-tests/animate-mpath-insert.js:
3094 * svg/animations/script-tests/animate-path-animation-Cc-Ss.js:
3098 * svg/animations/script-tests/animate-path-animation-Ll-Vv-Hh.js:
3102 * svg/animations/script-tests/animate-path-animation-Qq-Tt.js:
3106 * svg/animations/script-tests/animate-path-animation-cC-sS-inverse.js:
3110 * svg/animations/script-tests/animate-path-animation-lL-vV-hH-inverse.js:
3114 * svg/animations/script-tests/animate-path-animation-qQ-tT-inverse.js:
3118 * svg/animations/script-tests/animate-path-nested-transforms.js:
3121 * svg/animations/script-tests/animate-path-to-animation.js:
3124 * svg/animations/script-tests/animate-text-nested-transforms.js:
3127 * svg/animations/script-tests/animateTransform-pattern-transform.js:
3129 * svg/animations/script-tests/svgangle-animation-deg-to-grad.js:
3132 * svg/animations/script-tests/svgangle-animation-deg-to-rad.js:
3135 * svg/animations/script-tests/svgangle-animation-grad-to-deg.js:
3138 * svg/animations/script-tests/svgangle-animation-grad-to-rad.js:
3141 * svg/animations/script-tests/svgangle-animation-rad-to-deg.js:
3144 * svg/animations/script-tests/svgangle-animation-rad-to-grad.js:
3147 * svg/animations/script-tests/svginteger-animation-1.js:
3149 * svg/animations/script-tests/svglength-animation-LengthModeHeight.js:
3152 * svg/animations/script-tests/svglength-animation-LengthModeOther.js:
3155 * svg/animations/script-tests/svglength-animation-LengthModeWidth.js:
3158 * svg/animations/script-tests/svglength-animation-number-to-number.js:
3161 * svg/animations/script-tests/svglength-animation-px-to-cm.js:
3164 * svg/animations/script-tests/svglength-animation-px-to-ems.js:
3167 * svg/animations/script-tests/svglength-animation-px-to-exs.js:
3170 * svg/animations/script-tests/svglength-animation-px-to-in.js:
3173 * svg/animations/script-tests/svglength-animation-px-to-number.js:
3176 * svg/animations/script-tests/svglength-animation-px-to-pc.js:
3179 * svg/animations/script-tests/svglength-animation-px-to-percentage.js:
3182 * svg/animations/script-tests/svglength-animation-px-to-pt.js:
3185 * svg/animations/script-tests/svglength-animation-px-to-px.js:
3188 * svg/animations/script-tests/svglength-animation-values.js:
3193 * svg/animations/script-tests/svglengthlist-animation-1.js:
3195 * svg/animations/script-tests/svglengthlist-animation-2.js:
3198 * svg/animations/script-tests/svglengthlist-animation-3.js:
3201 * svg/animations/script-tests/svglengthlist-animation-4.js:
3203 * svg/animations/script-tests/svglengthlist-animation-5.js:
3205 * svg/animations/script-tests/svgnumber-animation-1.js:
3207 * svg/animations/script-tests/svgnumber-animation-2.js:
3209 * svg/animations/script-tests/svgnumberlist-animation-1.js:
3212 * svg/animations/script-tests/svgnumberlist-animation-2.js:
3215 * svg/animations/script-tests/svgnumberoptionalnumber-animation-1.js:
3218 * svg/animations/script-tests/svgnumberoptionalnumber-animation-2.js:
3221 * svg/animations/script-tests/svgnumberoptionalnumber-animation-3.js:
3224 * svg/animations/script-tests/svgnumberoptionalnumber-animation-4.js:
3227 * svg/animations/script-tests/svgpath-animation-1.js:
3230 * svg/animations/script-tests/svgpointlist-animation-1.js:
3232 * svg/animations/script-tests/svgpointlist-animation-2.js:
3234 * svg/animations/script-tests/svgrect-animation-1.js:
3236 * svg/animations/script-tests/svgrect-animation-2.js:
3238 * svg/animations/script-tests/svgtransform-animation-1.js:
3242 * svg/animations/script-tests/svgtransform-animation-discrete.js:
3246 * svg/animations/svgangle-animation-deg-to-grad-expected.txt:
3247 * svg/animations/svgangle-animation-deg-to-rad-expected.txt:
3248 * svg/animations/svgangle-animation-grad-to-deg-expected.txt:
3249 * svg/animations/svgangle-animation-grad-to-rad-expected.txt:
3250 * svg/animations/svgangle-animation-rad-to-deg-expected.txt:
3251 * svg/animations/svgangle-animation-rad-to-grad-expected.txt:
3252 * svg/animations/svglength-animation-LengthModeHeight-expected.txt:
3253 * svg/animations/svglength-animation-LengthModeOther-expected.txt:
3254 * svg/animations/svglength-animation-LengthModeWidth-expected.txt:
3255 * svg/animations/svglength-animation-number-to-number-expected.txt:
3256 * svg/animations/svglength-animation-px-to-cm-expected.txt:
3257 * svg/animations/svglength-animation-px-to-ems-expected.txt:
3258 * svg/animations/svglength-animation-px-to-exs-expected.txt:
3259 * svg/animations/svglength-animation-px-to-in-expected.txt:
3260 * svg/animations/svglength-animation-px-to-number-expected.txt:
3261 * svg/animations/svglength-animation-px-to-pc-expected.txt:
3262 * svg/animations/svglength-animation-px-to-percentage-expected.txt:
3263 * svg/animations/svglength-animation-px-to-pt-expected.txt:
3264 * svg/animations/svglength-animation-px-to-px-expected.txt:
3265 * svg/animations/svglength-animation-values-expected.txt:
3266 * svg/animations/svglengthlist-animation-2-expected.txt:
3267 * svg/animations/svgnumberlist-animation-1-expected.txt:
3268 * svg/animations/svgnumberlist-animation-2-expected.txt:
3269 * svg/animations/svgpath-animation-1-expected.txt:
3270 * svg/animations/svgpointlist-animation-1-expected.txt:
3271 * svg/animations/svgpointlist-animation-2-expected.txt:
3272 * svg/animations/svgrect-animation-1-expected.txt:
3273 * svg/animations/svgrect-animation-2-expected.txt:
3274 * svg/animations/svgtransform-animation-1-expected.txt:
3276 2012-02-15 Philippe Normand <pnormand@igalia.com>
3278 Unreviewed, GTK rebaseline after r107785 and r107762. Also
3279 skipping a new SVG failure.
3281 * platform/gtk/Skipped:
3282 * platform/gtk/fast/dom/Window/window-properties-expected.txt:
3283 * platform/gtk/media/video-controls-rendering-expected.txt:
3284 * platform/gtk/media/video-zoom-expected.txt:
3286 2012-02-15 Csaba Osztrogonác <ossy@webkit.org>
3288 [Qt] Unreviewed morning gardening.
3290 * platform/qt/fast/dom/Range/surround-contents-font-face-crash-expected.txt: Added after r107749.
3291 * platform/qt/fast/dom/Window/window-properties-expected.txt: Updated after r107785.
3293 2012-02-15 Yuta Kitamura <yutak@chromium.org>
3295 WebSocket: MessageEvent fired during send() on workers
3296 https://bugs.webkit.org/show_bug.cgi?id=76521
3298 Reviewed by David Levin.
3300 * http/tests/websocket/tests/hybi/workers/no-onmessage-in-sync-op-expected.txt: Added.
3301 * http/tests/websocket/tests/hybi/workers/no-onmessage-in-sync-op.html: Added.
3302 * http/tests/websocket/tests/hybi/workers/resources/no-onmessage-in-sync-op.js:
3303 Added. The server sends messages immediately after the connection is established, but
3304 these messages should not be delivered until the script exits the current cycle of
3305 the event loop. The script calls a few synchronous operations to make sure we don't
3306 fire MessageEvents while we are waiting for these operations to finish.
3307 * http/tests/websocket/tests/hybi/workers/resources/no-onmessage-in-sync-op_wsh.py: Added.
3309 2012-02-15 Noel Gordon <noel.gordon@gmail.com>
3311 [chromium] Rebaseline JPEG image results after r107389
3312 https://bugs.webkit.org/show_bug.cgi?id=78454
3314 Unreviewed. Rebaseline #11 of N.
3316 * platform/chromium-linux/svg/custom/image-rescale-clip-expected.png:
3317 * platform/chromium-linux/svg/custom/image-rescale-clip-expected.txt: Removed.
3318 * platform/chromium-linux/svg/custom/image-rescale-scroll-expected.png:
3319 * platform/chromium-linux/svg/custom/image-rescale-scroll-expected.txt: Removed.
3320 * platform/chromium-mac-leopard/svg/custom/image-rescale-clip-expected.png:
3321 * platform/chromium-mac-leopard/svg/custom/image-rescale-scroll-expected.png:
3322 * platform/chromium-mac-snowleopard/svg/custom/image-rescale-clip-expected.png: Added.
3323 * platform/chromium-mac-snowleopard/svg/custom/image-rescale-expected.png: Added.
3324 * platform/chromium-mac-snowleopard/svg/custom/image-rescale-scroll-expected.png: Renamed from LayoutTests/platform/chromium-mac/svg/custom/image-rescale-scroll-expected.png.
3325 * platform/chromium-mac/svg/custom/image-rescale-clip-expected.png: Removed.
3326 * platform/chromium-mac/svg/custom/image-rescale-expected.png: Removed.
3327 * platform/chromium-win/svg/custom/image-rescale-clip-expected.png:
3328 * platform/chromium-win/svg/custom/image-rescale-expected.png:
3329 * platform/chromium-win/svg/custom/image-rescale-scroll-expected.png:
3330 * platform/chromium/test_expectations.txt:
3331 * platform/mac/svg/custom/image-rescale-expected.txt: Removed.
3332 * platform/qt/svg/custom/image-rescale-expected.txt: Removed.
3333 * svg/custom/image-rescale-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/image-rescale-expected.txt.
3335 2012-02-14 Hao Zheng <zhenghao@chromium.org>
3337 Cleanup pending transaction queue in Database.
3338 https://bugs.webkit.org/show_bug.cgi?id=75048
3340 Reviewed by David Levin.
3342 As crash is fixed, trun BUGWK75048 into BUGWK75111, so that we can
3343 close 75048 and fix the timeout in 75111 for both DEBUG and RELEASE.
3345 REGRESSION(r103429) fast/workers/storage/use-same-database-in-page-and-workers.html asserts
3347 * platform/chromium/test_expectations.txt:
3349 2012-02-14 Kent Tamura <tkent@chromium.org>
3351 Stop using script-tests in LayoutTests/fast/forms
3352 https://bugs.webkit.org/show_bug.cgi?id=78667
3354 Reviewed by Kentaro Hara.
3356 * fast/forms/ValidityState-patternMismatch-unsupported.html:
3357 * fast/forms/ValidityState-rangeOverflow.html:
3358 * fast/forms/ValidityState-rangeUnderflow.html:
3359 * fast/forms/ValidityState-stepMismatch.html:
3360 * fast/forms/ValidityState-tooLong-input.html:
3361 * fast/forms/ValidityState-tooLong-textarea.html:
3362 * fast/forms/ValidityState-typeMismatch-date-expected.txt: Removed.
3363 * fast/forms/ValidityState-typeMismatch-url.html:
3364 * fast/forms/ValidityState-valueMissing-radio.html:
3365 * fast/forms/checkValidity-cancel.html:
3366 * fast/forms/checkValidity-handler-updates-dom.html:
3367 * fast/forms/form-attribute-elements-order.html:
3368 * fast/forms/form-attribute-elements-order2.html:
3369 * fast/forms/form-attribute-elements.html:
3370 * fast/forms/form-attribute.html:
3371 * fast/forms/form-collection-elements-order.html:
3372 * fast/forms/form-collection-elements.html:
3373 * fast/forms/formnovalidate-attribute.html:
3374 * fast/forms/incremental-dom-property.html:
3375 * fast/forms/input-maxlength-ime-completed.html:
3376 * fast/forms/input-maxlength-ime-preedit.html:
3377 * fast/forms/input-maxlength-unsupported.html:
3378 * fast/forms/input-minmax.html:
3379 * fast/forms/input-pattern.html:
3380 * fast/forms/input-step.html:
3381 * fast/forms/input-stepup-stepdown.html:
3382 * fast/forms/input-type-change3.html:
3383 * fast/forms/input-valueasnumber-unsupported.html:
3384 * fast/forms/labels-add-htmlFor-label.html:
3385 * fast/forms/labels-add-parent-label.html:
3386 * fast/forms/labels-change-htmlFor-attribute.html:
3387 * fast/forms/labels-item-index.html:
3388 * fast/forms/labels-remove-htmlFor-attribute.html:
3389 * fast/forms/labels-remove-htmlFor-label.html:
3390 * fast/forms/labels-remove-