1 2012-02-20 Csaba Osztrogonác <ossy@webkit.org>
3 [Qt] Unreviewed gardening after r108259.
5 * platform/qt/fast/dom/prototype-inheritance-2-expected.txt: Updated.
7 2012-02-20 Gavin Barraclough <barraclough@apple.com>
9 [[Put]] should throw if prototype chain contains a readonly property.
10 https://bugs.webkit.org/show_bug.cgi?id=79069
12 Reviewed by Oliver Hunt.
14 Currently we only check the base of the put, not the prototype chain.
15 Fold this check in with the test for accessors.
17 * fast/js/Object-defineProperty-expected.txt:
18 * fast/js/script-tests/Object-defineProperty.js:
22 2012-02-20 Yanbin Zhang <yanbin.zhang@intel.com>
24 There is no complete test cases of optional arguments for MediaStream API and PeerConnection
25 https://bugs.webkit.org/show_bug.cgi?id=78578
27 Reviewed by Adam Barth.
29 * fast/mediastream/peerconnection-AttributesMethod-expected.txt: Added.
30 * fast/mediastream/peerconnection-AttributesMethod.html: Added.
31 * fast/mediastream/peerconnection-addstream-expected.txt:
32 * fast/mediastream/peerconnection-argument-types-expected.txt: Added.
33 * fast/mediastream/peerconnection-argument-types.html: Added.
34 * fast/mediastream/peerconnection-removestream-expected.txt: Added.
35 * fast/mediastream/peerconnection-removestream.html: Added.
36 * fast/mediastream/script-tests/AttributesMethod.js: Added.
37 * fast/mediastream/script-tests/argument-types.js: Added.
38 * fast/mediastream/script-tests/peerconnection-addstream.js:
39 * fast/mediastream/script-tests/peerconnection-removestream.js: Added.
41 2012-02-20 Yuta Kitamura <yutak@chromium.org>
43 [Chromium] Unreviewed, update test expectations.
45 * platform/chromium/fast/dom/Window/window-custom-prototype-expected.txt:
46 * platform/chromium/fast/js/string-capitalization-expected.txt:
47 * platform/chromium/test_expectations.txt:
49 2012-02-20 Gavin Barraclough <barraclough@apple.com>
51 DefineOwnProperty fails with numeric properties & Object.prototype
52 https://bugs.webkit.org/show_bug.cgi?id=79059
54 Reviewed by Oliver Hunt.
56 ObjectPrototype caches whether it contains any numeric properties (m_hasNoPropertiesWithUInt32Names),
57 calls to defineOwnProperty need to update this cache.
59 * fast/js/Object-defineProperty-expected.txt:
60 * fast/js/script-tests/Object-defineProperty.js:
61 (shouldBe.shouldBe.shouldBe.shouldBe.shouldBe.shouldBe.shouldBe.shouldThrow.Object.defineProperty):
63 2012-02-20 Martin Robinson <mrobinson@igalia.com>
65 [UNIX] Plugin information fields are not interpreted as UTF-8
66 https://bugs.webkit.org/show_bug.cgi?id=78635
68 Reviewed by Gustavo Noronha Silva.
70 Update expectations to match the fact that TestNetscapePlugin is now
71 returning a Unicode character in the description field.
73 * platform/chromium-linux/plugins/plugin-javascript-access-expected.txt:
74 * platform/gtk/plugins/plugin-javascript-access-expected.txt:
75 * platform/qt/plugins/plugin-javascript-access-expected.txt:
77 2012-02-20 Kihong Kwon <kihong.kwon@samsung.com>
79 Add a new test case for the Vibration API.
80 https://bugs.webkit.org/show_bug.cgi?id=72010
82 Reviewed by Hajime Morita.
84 * fast/dom/navigator-vibration-expected.txt: Added.
85 * fast/dom/navigator-vibration.html: Added.
86 * platform/chromium/test_expectations.txt:
87 * platform/gtk/Skipped:
88 * platform/mac/Skipped:
89 * platform/qt/Skipped:
90 * platform/win/Skipped:
91 * platform/wincairo/Skipped:
93 2012-02-20 David Barton <dbarton@mathscribe.com>
95 RenderMathMLRow::baselinePosition() only if linePositionMode == PositionOnContainingLine
96 https://bugs.webkit.org/show_bug.cgi?id=79039
98 Reviewed by Eric Seidel.
100 * platform/mac/mathml/presentation/fenced-expected.png:
101 * platform/mac/mathml/presentation/fenced-expected.txt:
102 * platform/mac/mathml/presentation/mo-expected.png:
103 * platform/mac/mathml/presentation/mo-expected.txt:
104 * platform/mac/mathml/presentation/mo-stretch-expected.png: Added property svn:mime-type.
105 * platform/mac/mathml/presentation/mo-stretch-expected.txt:
106 * platform/mac/mathml/presentation/row-expected.png:
107 * platform/mac/mathml/presentation/row-expected.txt:
109 2012-02-16 Gavin Barraclough <barraclough@apple.com>
111 Move special __proto__ property to Object.prototype
112 https://bugs.webkit.org/show_bug.cgi?id=78409
114 Reviewed by Oliver Hunt.
116 Re-implement this as a regular accessor property. This has three key benefits:
117 1) It makes it possible for objects to be given properties named __proto__.
118 2) Object.prototype.__proto__ can be deleted, preventing object prototypes from being changed.
119 3) This largely removes the magic used the implement __proto__, it can just be made a regular accessor property.
121 * fast/js/Object-getOwnPropertyNames-expected.txt:
122 * fast/js/cyclic-prototypes-expected.txt:
123 * fast/js/parser-syntax-check-expected.txt:
124 * fast/js/preventExtensions-expected.txt:
125 * fast/js/prototypes-expected.txt:
127 * fast/js/script-tests/Object-getOwnPropertyNames.js:
128 - __proto__ is now a property of Object Prototype.
129 * fast/js/script-tests/cyclic-prototypes.js:
130 - setting an object's prototype to null removes __proto__ setter, future usage won't set prototype.
131 * fast/js/script-tests/parser-syntax-check.js:
132 - Allow functions named __proto__
133 * fast/js/script-tests/preventExtensions.js:
134 - Setting __proto__ should not throw.
135 * fast/js/script-tests/prototypes.js:
136 - Objects may contained own properties named __proto__, add new test cases.
138 2012-02-20 Benjamin Poulain <benjamin@webkit.org>
140 Make JSCSSStyleDeclaration work directly with CSS Property ID
141 https://bugs.webkit.org/show_bug.cgi?id=79014
143 Reviewed by Geoffrey Garen.
145 * fast/dom/CSSStyleDeclaration/access-longest-css-property-expected.txt: Added.
146 * fast/dom/CSSStyleDeclaration/access-longest-css-property.html: Added.
148 2012-02-20 Csaba Osztrogonác <ossy@webkit.org>
150 Unreviewed gardening after r108226.
151 Skip tests because ENABLE(SHADOW_DOM) is disabled on these platforms.
153 * platform/efl/Skipped:
154 * platform/gtk/Skipped:
155 * platform/mac/Skipped:
156 * platform/qt/Skipped:
157 * platform/win/Skipped:
158 * platform/wincairo/Skipped:
159 * platform/wk2/Skipped:
161 2012-02-20 Michael Saboff <msaboff@apple.com>
163 Update toLower and toUpper tests for Unicode 6.1 changes
164 https://bugs.webkit.org/show_bug.cgi?id=78923
166 Reviewed by Oliver Hunt.
169 * fast/js/script-tests/string-capitalization.js: Updated the test
170 to handle a new set of characters that have different results depending
171 on what version of Unicode the platform supports. The tests work
172 for Unicode 5.0 through 6.1.
174 * fast/js/string-capitalization-expected.txt:
176 2012-02-20 David Barton <dbarton@mathscribe.com>
178 MathML internals - remove nonOperatorHeight(), hasBase()
179 https://bugs.webkit.org/show_bug.cgi?id=78977
181 Reviewed by Eric Seidel.
183 More tests with multiple embellished stretchy and non-stretchy operators will be added
184 later, when code is added to more precisely handle such cases.
186 * mathml/presentation/mo-stretch.html: Added.
187 * platform/mac/mathml/presentation/mo-stretch-expected.png: Added.
188 * platform/mac/mathml/presentation/mo-stretch-expected.txt: Added.
190 2012-02-20 Victor Carbune <victor@rosedu.org>
192 <track>-related events cuechange, enter, and exit should be sorted and filtered before dispatching
193 https://bugs.webkit.org/show_bug.cgi?id=72171
195 Reviewed by Eric Carlson.
197 * media/track/captions-webvtt/missed-cues.vtt: Added.
198 * media/track/captions-webvtt/sorted-dispatch.vtt: Added.
199 * media/track/track-cues-cuechange-expected.txt: This test had to be changed because
200 the synchronous dispatch of the events against the HTMLTrackElement doesn't mean that
201 the text track actually has any active cues at the dispatch moment.
202 * media/track/track-cues-cuechange.html: Changed tests structure to guide the entering and
203 exit events according to the asynchronous dispatch done by TextTrack.
204 * media/track/track-cues-missed-expected.txt: Added.
205 * media/track/track-cues-missed.html: Added.
206 * media/track/track-cues-sorted-before-dispatch-expected.txt: Added.
207 * media/track/track-cues-sorted-before-dispatch.html: Added.
209 2012-02-20 Vsevolod Vlasov <vsevik@chromium.org>
211 Unreviewed manual rollout of r107970 which breaks table column widths
212 updates from javascript (e.g. inspector's network panel).
214 * css2.1/20110323/fixed-table-layout-013-expected.html: Removed.
215 * css2.1/20110323/fixed-table-layout-013.htm: Removed.
216 * css2.1/20110323/fixed-table-layout-015-expected.html: Removed.
217 * css2.1/20110323/fixed-table-layout-015.htm: Removed.
219 2012-02-20 Alexander Pavlov <apavlov@chromium.org>
221 Web Inspector: DOMAttrModified should not be fired if the attribute value remains the same
222 https://bugs.webkit.org/show_bug.cgi?id=79025
224 Reviewed by Pavel Feldman.
226 * inspector/elements/set-attribute-expected.txt:
227 * inspector/elements/set-attribute.html:
229 2012-02-20 Yosifumi Inoue <yosin@chromium.org>
231 [Forms] Spin buttons of number input type should fire both input and change event
232 https://bugs.webkit.org/show_bug.cgi?id=75067
234 Reviewed by Kent Tamura.
236 * fast/forms/number/spin-button-events-expected.txt: Added.
237 * fast/forms/number/spin-button-events.html: Added.
239 2012-02-20 Shinya Kawanaka <shinyak@chromium.org>
241 Attached/Detached state must be testable
242 https://bugs.webkit.org/show_bug.cgi?id=79010
244 Reviewed by Hajime Morita.
246 * fast/dom/shadow/shadow-root-attached-expected.txt: Added.
247 * fast/dom/shadow/shadow-root-attached.html: Added.
249 2012-02-20 Philippe Normand <pnormand@igalia.com>
251 Unreviewed, GTK baselines for a new fast/css-generated-content
254 * platform/gtk/fast/css-generated-content/before-content-continuation-chain-expected.txt: Added.
256 2012-02-20 Philippe Normand <pnormand@igalia.com>
258 Unreviewed, GTK fast/repaint rebaseline.
260 * platform/gtk/fast/repaint/japanese-rl-selection-repaint-in-regions-expected.txt:
261 * platform/gtk/fast/repaint/line-flow-with-floats-in-regions-expected.txt:
262 * platform/gtk/fast/repaint/overflow-flipped-writing-mode-block-in-regions-expected.txt:
263 * platform/gtk/fast/repaint/region-painting-via-layout-expected.txt:
265 2012-02-19 Yuta Kitamura <yutak@chromium.org>
267 [Chromium] Unreviewed, update a few test expectations.
269 * platform/chromium/test_expectations.txt:
271 2012-02-19 Noel Gordon <noel.gordon@gmail.com>
273 [chromium] Unreviewed. Update remaining expectations for SVGImageElement-svgdom-requiredFeatures.html.
275 * platform/chromium-linux/svg/dynamic-updates/SVGUseElement-svgdom-requiredFeatures-expected.png:
276 * platform/chromium-mac-leopard/svg/dynamic-updates/SVGUseElement-svgdom-requiredFeatures-expected.png:
277 * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGUseElement-svgdom-requiredFeatures-expected.png: Added.
278 * platform/chromium-mac/svg/dynamic-updates/SVGUseElement-svgdom-requiredFeatures-expected.png: Removed.
279 * platform/chromium-win/svg/dynamic-updates/SVGUseElement-svgdom-requiredFeatures-expected.png:
280 * platform/chromium/test_expectations.txt:
282 2012-02-19 Yuta Kitamura <yutak@chromium.org>
284 [Chromium] Unreviewed gardening. Update Leopard expectation for
285 SVGImageElement-svgdom-requiredFeatures.html.
287 * platform/chromium-mac-leopard/svg/dynamic-updates/SVGImageElement-svgdom-requiredFeatures-expected.png:
289 2012-02-19 James Robinson <jamesr@chromium.org>
291 [chromium] Unreviewed - mark failing test as failing.
293 * platform/chromium/test_expectations.txt:
295 2012-02-19 James Robinson <jamesr@chromium.org>
297 [chromium] Unreviewed gardening. Add leopard baselines for fast/css/relative-positioned-block-* tests, fix up test_expectations.txt
299 * platform/chromium-mac-leopard/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.png: Added.
300 * platform/chromium-mac-leopard/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.png: Added.
301 * platform/chromium-mac-leopard/fast/css/relative-positioned-block-nested-with-inline-parent-expected.png: Added.
302 * platform/chromium-mac-leopard/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.png: Added.
303 * platform/chromium-mac-leopard/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.png: Added.
304 * platform/chromium-mac-leopard/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.png: Added.
305 * platform/chromium-mac-leopard/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.png: Added.
306 * platform/chromium-mac-leopard/fast/css/relative-positioned-block-with-inline-ancestor-expected.png: Added.
307 * platform/chromium-mac-leopard/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.png: Added.
308 * platform/chromium-mac-leopard/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.png: Added.
309 * platform/chromium-mac-leopard/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.png: Added.
310 * platform/chromium/test_expectations.txt:
312 2012-02-19 James Robinson <jamesr@chromium.org>
314 Unreviewed, rolling out r108195.
315 http://trac.webkit.org/changeset/108195
316 https://bugs.webkit.org/show_bug.cgi?id=77700
318 Lots of failing ASSERT()s on v8 bots, requested by kling on
321 * fast/css/css-value-wrapper-sameness-expected.txt: Removed.
322 * fast/css/css-value-wrapper-sameness.html: Removed.
323 * fast/dom/StyleSheet/gc-inline-style-cssvalues-expected.txt: Added.
324 * fast/dom/StyleSheet/gc-inline-style-cssvalues.html: Added.
325 * fast/dom/domListEnumeration-expected.txt:
326 * fast/dom/gc-9-expected.txt:
327 * fast/dom/gc-9.html:
328 * fast/dom/script-tests/domListEnumeration.js:
330 2012-02-19 Robert Hogan <robert@webkit.org>
332 Update expectations for test results changed by r108185
334 The bots only check text results.
338 * platform/gtk/test_expectations.txt:
339 * platform/mac/test_expectations.txt:
340 * platform/qt/test_expectations.txt:
342 2012-02-19 Andreas Kling <awesomekling@apple.com>
344 Make CSSValue wrapper getters return unique objects every time.
345 <http://webkit.org/b/77700>
347 Reviewed by Antti Koivisto.
349 * fast/css/css-value-wrapper-sameness-expected.txt: Added.
350 * fast/css/css-value-wrapper-sameness.html: Added.
351 * fast/dom/StyleSheet/gc-inline-style-cssvalues-expected.txt: Removed.
352 * fast/dom/StyleSheet/gc-inline-style-cssvalues.html: Removed.
353 * fast/dom/domListEnumeration-expected.txt:
354 * fast/dom/gc-9-expected.txt:
355 * fast/dom/gc-9.html:
356 * fast/dom/script-tests/domListEnumeration.js:
358 2012-02-19 Abhishek Arya <inferno@chromium.org>
360 Crash in RenderBlock::splitAnonymousBlocksAroundChild.
361 https://bugs.webkit.org/show_bug.cgi?id=78994
363 Reviewed by Eric Seidel.
365 * fast/table/table-split-inside-table-expected.txt: Added.
366 * fast/table/table-split-inside-table.html: Added.
368 2012-02-19 Robert Hogan <robert@webkit.org>
370 Chromium results for r108185
372 Unreviewed gardening.
374 * 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.
375 * 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.
376 * 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.
377 * 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.
378 * 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.
379 * 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.
380 * 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.
381 * 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.
382 * 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.
383 * 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.
384 * 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.
385 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.png: Added.
386 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.txt: Added.
387 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.png: Added.
388 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.txt: Added.
389 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-nested-with-inline-parent-expected.png: Added.
390 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-nested-with-inline-parent-expected.txt: Added.
391 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.png: Added.
392 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.txt: Added.
393 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.png: Added.
394 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.txt: Added.
395 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.png: Added.
396 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.txt: Added.
397 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.png: Added.
398 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.txt: Added.
399 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-ancestor-expected.png: Added.
400 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-ancestor-expected.txt: Added.
401 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.png: Added.
402 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.txt: Added.
403 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.png: Added.
404 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.txt: Added.
405 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.png: Added.
406 * platform/chromium-mac-snowleopard/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.txt: Added.
407 * 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.
408 * 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.
409 * 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.
410 * platform/chromium-mac-snowleopard/fast/repaint/transform-absolute-in-positioned-container-expected.png: Added.
411 * platform/chromium-mac-snowleopard/fast/repaint/transform-absolute-in-positioned-container-expected.txt: Added.
412 * platform/chromium-mac/fast/encoding/utf-16-big-endian-expected.png: Removed.
413 * platform/chromium-mac/fast/encoding/utf-16-little-endian-expected.png: Removed.
414 * platform/chromium-win/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.png: Added.
415 * 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.
416 * platform/chromium-win/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.png: Added.
417 * 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.
418 * platform/chromium-win/fast/css/relative-positioned-block-nested-with-inline-parent-expected.png: Added.
419 * 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.
420 * platform/chromium-win/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.png: Added.
421 * 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.
422 * platform/chromium-win/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.png: Added.
423 * 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.
424 * platform/chromium-win/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.png: Added.
425 * 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.
426 * platform/chromium-win/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.png: Added.
427 * 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.
428 * platform/chromium-win/fast/css/relative-positioned-block-with-inline-ancestor-expected.png: Added.
429 * 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.
430 * platform/chromium-win/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.png: Added.
431 * 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.
432 * platform/chromium-win/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.png: Added.
433 * 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.
434 * platform/chromium-win/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.png: Added.
435 * 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.
436 * platform/chromium-win/fast/encoding/utf-16-big-endian-expected.png:
437 * platform/chromium-win/fast/encoding/utf-16-little-endian-expected.png:
438 * platform/chromium-win/fast/inline/continuation-outlines-with-layers-expected.png:
439 * platform/chromium-win/fast/repaint/transform-absolute-in-positioned-container-expected.png:
441 2012-02-18 Robert Hogan <robert@webkit.org>
443 CSS 2.1 failure: inline-box-002.htm fails
444 https://bugs.webkit.org/show_bug.cgi?id=69210
446 Reviewed by David Hyatt.
448 * css2.1/20110323/dynamic-top-change-005-expected.html: Added.
449 * css2.1/20110323/dynamic-top-change-005.htm: Added.
450 * css2.1/20110323/dynamic-top-change-005a-expected.html: Added.
451 * css2.1/20110323/dynamic-top-change-005a.htm: Added.
452 * css2.1/20110323/dynamic-top-change-005b-expected.html: Added.
453 * css2.1/20110323/dynamic-top-change-005b.htm: Added.
454 * css2.1/20110323/inline-box-002-expected.html: Added.
455 * css2.1/20110323/inline-box-002.htm: Added.
456 * fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed.html: Added.
457 * fast/css/relative-positioned-block-nested-with-inline-parent-dynamic.html: Added.
458 * fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic.html: Added.
459 * fast/css/relative-positioned-block-nested-with-inline-parent.html: Added.
460 * fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic.html: Added.
461 * fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed.html: Added.
462 * fast/css/relative-positioned-block-with-inline-ancestor-dynamic.html: Added.
463 * fast/css/relative-positioned-block-with-inline-ancestor.html: Added.
464 * fast/css/relative-positioned-block-with-inline-parent-dynamic-removed.html: Added.
465 * fast/css/relative-positioned-block-with-inline-parent-dynamic.html: Added.
466 * fast/css/relative-positioned-block-with-inline-parent-expected.html: Added.
467 * fast/css/relative-positioned-block-with-inline-parent-keeps-style.html: Added.
468 * fast/css/relative-positioned-block-with-inline-parent.html: Added.
469 * platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.png: Added.
470 * platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-expected.txt: Added.
471 * platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.png: Added.
472 * platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-dynamic-removed-expected.txt: Added.
473 * platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-expected.png: Added.
474 * platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-expected.txt: Added.
475 * platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.png: Added.
476 * platform/chromium-linux-x86/fast/css/relative-positioned-block-nested-with-inline-parent-multiple-descendant-blocks-dynamic-expected.txt: Added.
477 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.png: Added.
478 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-and-parent-dynamic-expected.txt: Added.
479 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.png: Added.
480 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-expected.txt: Added.
481 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.png: Added.
482 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-dynamic-removed-expected.txt: Added.
483 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-expected.png: Added.
484 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-ancestor-expected.txt: Added.
485 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.png: Added.
486 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-dynamic-expected.txt: Added.
487 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.png: Added.
488 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-dynamic-removed-expected.txt: Added.
489 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.png: Added.
490 * platform/chromium-linux-x86/fast/css/relative-positioned-block-with-inline-parent-keeps-style-expected.txt: Added.
491 * platform/chromium-linux/fast/encoding/utf-16-big-endian-expected.png:
492 * platform/chromium-linux/fast/encoding/utf-16-little-endian-expected.png:
493 * platform/chromium-linux/fast/inline/continuation-outlines-with-layers-2-expected.txt:
494 * platform/chromium-linux/fast/inline/continuation-outlines-with-layers-expected.png:
495 * platform/chromium-linux/fast/repaint/transform-absolute-in-positioned-container-expected.png:
496 * platform/chromium-win/fast/encoding/utf-16-big-endian-expected.txt:
497 * platform/chromium-win/fast/encoding/utf-16-little-endian-expected.txt:
498 * platform/chromium-win/fast/inline/continuation-outlines-with-layers-expected.txt:
499 * platform/chromium-win/fast/repaint/transform-absolute-in-positioned-container-expected.txt:
500 * platform/chromium/test_expectations.txt: Suppress existing tests until results rebaselined.
501 * platform/gtk/test_expectations.txt: ditto
502 * platform/mac/test_expectations.txt: ditto
503 * platform/qt/test_expectations.txt: ditto
504 * platform/win/Skipped: ditto
506 2012-02-18 Abhishek Arya <inferno@chromium.org>
508 Unreviewed, rolling out r107965.
509 http://trac.webkit.org/changeset/107965
510 https://bugs.webkit.org/show_bug.cgi?id=78273
512 Crashes on ClusterFuzz.
514 * fast/multicol/span/clone-flexbox-expected.txt: Removed.
515 * fast/multicol/span/clone-flexbox.html: Removed.
517 2012-02-18 Andreas Kling <awesomekling@apple.com>
519 Unreviewed chromium rebaselines after r108157.
521 * platform/chromium-mac/fast/dom/setPrimitiveValue-exceptions-expected.txt:
522 * platform/chromium-win/fast/dom/setPrimitiveValue-exceptions-expected.txt:
524 2012-02-18 Csaba Osztrogonác <ossy@webkit.org>
526 [Qt] Unreviewed gardening after r107971.
528 * platform/qt/tables/mozilla/bugs/bug27038-1-expected.png:
529 * platform/qt/tables/mozilla/bugs/bug27038-1-expected.txt:
530 * platform/qt/tables/mozilla/bugs/bug27038-2-expected.png:
531 * platform/qt/tables/mozilla/bugs/bug27038-2-expected.txt:
532 * platform/qt/test_expectations.txt:
534 2012-02-18 Csaba Osztrogonác <ossy@webkit.org>
536 [Qt] Unreviewed weekend gardening, skip new failing tests.
538 * platform/qt/Skipped:
540 2012-02-18 Csaba Osztrogonác <ossy@webkit.org>
542 Unreviewed gardening r108133.
544 * fast/css/getComputedStyle/computed-style-expected.txt:
545 * fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
546 * svg/css/getComputedStyle-basic-expected.txt:
548 2012-02-18 Andreas Kling <awesomekling@apple.com>
550 FontFamilyValue: Utilize inheritance from CSSPrimitiveValue better.
551 <http://webkit.org/b/78806>
553 Reviewed by Antti Koivisto.
555 Rebaseline as CSSPrimitiveValue.getStringValue() is no longer broken for
558 * fast/dom/setPrimitiveValue-exceptions-expected.txt:
560 2012-02-17 Adam Klein <adamk@chromium.org>
562 Avoid inconsistency in Node::inDocument due to DOMSubtreeModified dispatch
563 https://bugs.webkit.org/show_bug.cgi?id=76087
565 Reviewed by Ryosuke Niwa.
567 * fast/dom/getElementById-consistency-expected.txt: Added.
568 * fast/dom/getElementById-consistency.html: Added.
569 * fast/dom/getElementById-consistency2-expected.txt: Added.
570 * fast/dom/getElementById-consistency2.html: Added.
572 2012-02-17 Joshua Bell <jsbell@chromium.org>
574 IndexedDB: Support overloaded methods that take IDBKey or IDBKeyRange
575 https://bugs.webkit.org/show_bug.cgi?id=78399
577 Tests IDBObjectStore.delete(IDBKeyRange). The spec has been updated such
578 that delete() always yields a result of undefined rather than a boolean,
579 so other test expectations are updated.
581 Reviewed by Tony Chang.
583 * storage/indexeddb/delete-range-expected.txt: Added.
584 * storage/indexeddb/delete-range.html: Added.
585 * storage/indexeddb/mozilla/delete-result-expected.txt:
586 * storage/indexeddb/mozilla/delete-result.html:
587 * storage/indexeddb/objectStore-required-arguments-expected.txt:
588 * storage/indexeddb/objectstore-basics-expected.txt:
589 * storage/indexeddb/objectstore-basics-workers-expected.txt:
590 * storage/indexeddb/resources/objectstore-basics.js:
593 (removeSuccessButNotThere):
595 2012-02-17 James Robinson <jamesr@chromium.org>
597 [chromium] Unreviewed gardening, update baselines for svg/dynamic-updates/.. and some more getComputedStyle
600 * platform/chromium-linux/svg/dynamic-updates/SVGImageElement-svgdom-requiredFeatures-expected.png:
601 * platform/chromium-mac-snowleopard/fast/css/getComputedStyle/computed-style-expected.txt:
602 * platform/chromium-mac-snowleopard/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
603 * platform/chromium-mac-snowleopard/svg/css/getComputedStyle-basic-expected.txt:
604 * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGImageElement-svgdom-requiredFeatures-expected.png: Added.
605 * platform/chromium-mac/svg/dynamic-updates/SVGImageElement-svgdom-requiredFeatures-expected.png: Removed.
606 * platform/chromium-win/svg/dynamic-updates/SVGImageElement-svgdom-requiredFeatures-expected.png:
608 2012-02-17 James Robinson <jamesr@chromium.org>
610 [chromium] Unreviewed - removing expectations for tests that consistently pass, update some baselines for
611 getComputedStyle due to new -webkit-line-align property.
613 * platform/chromium-win/fast/css/getComputedStyle/computed-style-expected.txt:
614 * platform/chromium-win/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
615 * platform/chromium-win/svg/css/getComputedStyle-basic-expected.txt:
616 * platform/chromium/test_expectations.txt:
618 2012-02-17 Stephen Chenney <schenney@chromium.org>
620 Crash in SVGAnimateElement due to changed target
621 https://bugs.webkit.org/show_bug.cgi?id=75096
623 Reviewed by Nikolas Zimmermann.
625 This test verifies that the target element information is correctly
626 updated when the target changes. Note that the clone is required, as
627 it causes the results of one animation to be pushed to a different
630 * svg/animations/svglength-animation-retarget-crash-expected.txt: Added.
631 * svg/animations/svglength-animation-retarget-crash.html: Added.
633 2012-02-17 David Hyatt <hyatt@apple.com>
635 https://bugs.webkit.org/show_bug.cgi?id=78934
637 Add the -webkit-line-align property to support the alignment of lines in the inline direction
640 Reviewed by Dan Bernstein.
642 * fast/line-grid/line-align-parsing-expected.txt: Added.
643 * fast/line-grid/line-align-parsing.html: Added.
644 * fast/line-grid/script-tests/line-align-parsing.js: Added.
646 2012-02-17 James Robinson <jamesr@chromium.org>
648 [chromium] Unreviewed. Land the last (hopefully) new baselines for fast/css/non-empty-span.html
650 * platform/chromium-mac-leopard/fast/css/non-empty-span-expected.png: Added.
651 * platform/chromium-win/fast/css/non-empty-span-expected.png: Added.
652 * platform/chromium-win/fast/css/non-empty-span-expected.txt: Renamed from LayoutTests/platform/chromium-linux/fast/css/non-empty-span-expected.txt.
654 2012-02-17 Abhishek Arya <inferno@chromium.org>
656 Incorrect placement of a new child when beforeChild and its
657 previous sibling are in the same table.
658 https://bugs.webkit.org/show_bug.cgi?id=78269
660 Reviewed by Julien Chaffraix.
662 Test passes if the div child splits the table parts and is not
663 part of table itself.
665 * fast/table/table-cell-split-expected.txt: Added.
666 * fast/table/table-cell-split.html: Added.
667 * fast/table/table-row-split-expected.txt: Added.
668 * fast/table/table-row-split.html: Added.
669 * fast/table/table-section-split-expected.txt: Added.
670 * fast/table/table-section-split-with-after-content-expected.txt: Added.
671 * fast/table/table-section-split-with-after-content.html: Added.
672 * fast/table/table-section-split.html: Added.
674 2012-02-17 James Robinson <jamesr@chromium.org>
676 [chromium] Unreviewed - add some more fast/css/non-empty-span expectations.
678 * platform/chromium-mac-snowleopard/fast/css/non-empty-span-expected.png: Added.
679 * platform/chromium-mac-snowleopard/fast/css/non-empty-span-expected.txt: Added.
681 2012-02-17 James Robinson <jamesr@chromium.org>
683 [chromium] Unreviewed baseline and expectation updates.
685 * platform/chromium-linux/fast/css/non-empty-span-expected.png: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/non-empty-span-expected.png.
686 * platform/chromium-linux/fast/css/non-empty-span-expected.txt: Renamed from LayoutTests/platform/chromium-linux-x86/fast/css/non-empty-span-expected.txt.
687 * platform/chromium/test_expectations.txt:
689 2012-02-16 Dana Jansens <danakj@chromium.org>
691 [chromium] Re-enable compositing/culling/scrolled-within-boxshadow.html
692 https://bugs.webkit.org/show_bug.cgi?id=78859
694 Reviewed by James Robinson.
696 * platform/chromium/test_expectations.txt:
698 2012-02-17 Dana Jansens <danakj@chromium.org>
700 [chromium] Rebaseline tests for composited filters
701 https://bugs.webkit.org/show_bug.cgi?id=78903
703 Reviewed by Stephen White.
705 * compositing/culling/filter-occlusion-alpha-large.html:
706 * compositing/culling/filter-occlusion-alpha.html:
707 * compositing/culling/filter-occlusion-blur-large.html:
708 * compositing/culling/filter-occlusion-blur.html:
709 * platform/chromium-linux/compositing/culling/filter-occlusion-blur-expected.png: Added.
710 * platform/chromium-linux/compositing/culling/filter-occlusion-blur-large-expected.png: Added.
711 * platform/chromium-win/compositing/culling/filter-occlusion-blur-expected.png: Added.
712 * platform/chromium-win/compositing/culling/filter-occlusion-blur-large-expected.png: Added.
714 2012-02-17 James Robinson <jamesr@chromium.org>
716 [chromium] Update baselines for border-radius-wide-border-01 due to skia change. Unreviewed.
718 * platform/chromium-linux/fast/borders/border-radius-wide-border-01-expected.png:
719 * platform/chromium-mac-snowleopard/fast/borders/border-radius-wide-border-01-expected.png:
720 * platform/chromium-win/fast/borders/border-radius-wide-border-01-expected.png:
722 2012-02-16 Oliver Hunt <oliver@apple.com>
724 Implement Error.stack
725 https://bugs.webkit.org/show_bug.cgi?id=66994
727 Reviewed by Gavin Barraclough.
729 Add testcases for producing a stack trace on exception objects.
731 * fast/js/exception-properties-expected.txt:
732 * fast/js/script-tests/exception-properties.js:
733 * fast/js/script-tests/stack-trace.js: Added.
748 (object.get getter1.o.valueOf):
749 (object.get getter1):
750 (object.get getter2):
751 (object.get getter3.o2.valueOf):
752 (object.get getter3):
753 (object.nonInlineable.callCount):
754 (object.nonInlineable):
756 (yetAnotherInlinedCall):
764 * fast/js/stack-trace-expected.txt: Added.
765 * fast/js/stack-trace.html: Added.
767 2012-01-23 Robert Hogan <robert@webkit.org>
769 REGRESSION: empty span creates renders with non-zero height
770 https://bugs.webkit.org/show_bug.cgi?id=76465
772 Reviewed by David Hyatt.
774 * fast/css/empty-span-expected.html: Added.
775 * fast/css/empty-span.html: Added.
776 * fast/css/non-empty-span.html: Added.
777 * platform/chromium/test_expectations.txt: Suppress result until rebaseline on MAC and WIN.
778 * platform/chromium-linux-x86/fast/css/non-empty-span-expected.png: Added.
779 * platform/chromium-linux-x86/fast/css/non-empty-span-expected.txt: Added.
781 2012-02-17 Abhishek Arya <inferno@chromium.org>
783 :before content incorrectly placed in continuation
784 when we don't have a first child.
785 https://bugs.webkit.org/show_bug.cgi?id=78380
787 Reviewed by David Hyatt.
789 * fast/css-generated-content/before-content-continuation-chain-expected.png: Added.
790 * fast/css-generated-content/before-content-continuation-chain-expected.txt: Added.
791 * fast/css-generated-content/before-content-continuation-chain.html: Added.
793 2012-02-17 Mihnea Ovidenie <mihnea@adobe.com>
795 CSS regions enabled by default
796 https://bugs.webkit.org/show_bug.cgi?id=78525
798 Reviewed by David Hyatt.
800 Add a runtime preference to enable/disable regions functionality at runtime(WebKitCSSRegionsEnabled).
801 CSSRegions are still enabled by default.
802 In DRT, use layoutTestController.overridePreference("WebKitCSSRegionsEnabled", "0") to disable the css regions functionality.
804 * fast/regions/css-regions-disabled-expected.txt: Added.
805 * fast/regions/css-regions-disabled.html: Added.
806 * fast/regions/script-tests/css-regions-disabled.js: Added.
807 (testWebKitFlowInto):
808 (testWebKitFlowFrom):
809 (testWebKitRegionOverflow):
810 (testComputedStyleWebKitFlowInto):
811 (testComputedStyleWebKitFlowFrom):
812 (testComputedStyleWebKitRegionOverflow):
814 2012-02-17 Seo Sanghyeon <sh4.seo@samsung.com>
816 Case typo in fast/js/script-tests/date-constructor.js
817 https://bugs.webkit.org/show_bug.cgi?id=78898
819 Reviewed by Adam Barth.
821 * fast/js/script-tests/date-constructor.js: toSTring to toString
823 2012-02-17 Mihnea Ovidenie <mihnea@adobe.com>
825 [CSSRegions]Implement NamedFlow::overflow
826 https://bugs.webkit.org/show_bug.cgi?id=78880
828 Reviewed by David Hyatt.
830 * fast/regions/resources/helper.js:
831 (testContentToRegionsMapping):
832 * fast/regions/resources/region-style.css:
833 * fast/regions/webkit-named-flow-overflow-expected.txt: Added.
834 * fast/regions/webkit-named-flow-overflow.html: Added.
836 2012-02-17 Joe Thomas <joethomas@motorola.com>
838 flex-wrap:nowrap should be flex-wrap:none
839 https://bugs.webkit.org/show_bug.cgi?id=78772
841 As per the spec http://dev.w3.org/csswg/css3-flexbox/#flex-wrap0, flex-wrap:nowrap should be changed to flex-wrap:none.
843 Reviewed by Ojan Vafai.
845 * css3/flexbox/css-properties-expected.txt:
846 * css3/flexbox/script-tests/css-properties.js:
847 * fast/css/getComputedStyle/computed-style-expected.txt:
848 * fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
849 * platform/chromium-mac-snowleopard/fast/css/getComputedStyle/computed-style-expected.txt:
850 * platform/chromium-mac-snowleopard/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
851 * platform/chromium-mac-snowleopard/svg/css/getComputedStyle-basic-expected.txt:
852 * platform/chromium-win/fast/css/getComputedStyle/computed-style-expected.txt:
853 * platform/chromium-win/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
854 * platform/chromium-win/svg/css/getComputedStyle-basic-expected.txt:
855 * platform/mac/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
856 * svg/css/getComputedStyle-basic-expected.txt:
858 2012-02-17 Julien Chaffraix <jchaffraix@webkit.org>
860 Table cell's anonymous wrappers are left in the tree, impacting our layout
861 https://bugs.webkit.org/show_bug.cgi?id=7180
863 Reviewed by David Hyatt.
865 * fast/table/table-switch-cell-position-bad-layout-expected.html: Added.
866 * fast/table/table-switch-cell-position-bad-layout.html: Added.
868 2012-02-17 Rob Buis <rbuis@rim.com>
870 ASSERT (and crash) with dynamically moved <font-face>
871 https://bugs.webkit.org/show_bug.cgi?id=64839
873 Reviewed by Antti Koivisto.
875 * svg/custom/font-face-move-expected.txt: Added.
876 * svg/custom/font-face-move.svg: Added.
878 2012-02-17 Julien Chaffraix <jchaffraix@webkit.org>
880 Unreviewed Chromium rebaseline after r107971.
882 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug27038-1-expected.png:
883 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug27038-2-expected.png:
884 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug27038-1-expected.png:
885 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug27038-1-expected.txt: Added.
886 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug27038-2-expected.png:
887 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug27038-2-expected.txt: Added.
888 * platform/chromium-win-vista/tables/mozilla/bugs: Removed.
889 * platform/chromium/test_expectations.txt:
891 2012-02-17 James Robinson <jamesr@chromium.org>
893 [chromium] Unreviewed, update chromium pixel baselines for r108079
895 * fast/borders/border-mixed-alpha-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/border-mixed-alpha-expected.txt.
896 * fast/borders/only-one-border-with-width-expected.txt: Renamed from LayoutTests/platform/gtk/fast/borders/only-one-border-with-width-expected.txt.
897 * platform/chromium-mac-snowleopard/fast/borders/border-mixed-alpha-expected.png:
898 * platform/chromium-mac-snowleopard/fast/borders/mixed-border-styles-expected.png:
899 * platform/chromium-mac-snowleopard/fast/borders/only-one-border-with-width-expected.png: Added.
900 * platform/chromium-mac-snowleopard/fast/css/color-leakage-expected.png: Added.
901 * platform/chromium-win/fast/borders/border-mixed-alpha-expected.png:
902 * platform/chromium-win/fast/borders/mixed-border-styles-expected.png:
903 * platform/chromium-win/fast/borders/only-one-border-with-width-expected.png: Copied from LayoutTests/platform/chromium-win/fast/css/color-leakage-expected.png.
904 * platform/chromium-win/fast/css/color-leakage-expected.png:
905 * platform/mac/fast/borders/border-mixed-alpha-expected.txt: Removed.
906 * platform/mac/fast/borders/only-one-border-with-width-expected.txt: Removed.
907 * platform/qt/fast/borders/border-mixed-alpha-expected.txt: Removed.
908 * platform/qt/fast/borders/only-one-border-with-width-expected.txt: Removed.
910 2012-02-17 Stephen Chenney <schenney@chromium.org>
912 Crash at WebCore::SVGUseElement::expandSymbolElementsInShadowTree
913 https://bugs.webkit.org/show_bug.cgi?id=77639
915 Reviewed by Nikolas Zimmermann.
917 Fix a SVG crash in Release builds, although it still crashes in Debug builds.
918 This test is to verify no crash in Release builds, while expectations/Skipped
919 are added for Debug builds. Bug 77764 tracks the Debug fix.
921 * platform/chromium/test_expectations.txt:
922 * platform/gtk/Skipped:
923 * platform/mac/Skipped:
924 * platform/qt/Skipped:
925 * platform/win/Skipped:
926 * svg/custom/use-referencing-style-crash-expected.txt: Added.
927 * svg/custom/use-referencing-style-crash.svg: Added.
929 2012-02-17 Florin Malita <fmalita@google.com>
931 chrome.dll!WebCore::SVGTRefElement::updateReferencedText ReadAV@NULL (e85cb8e140071fa7790cad215b0109dc)
932 https://bugs.webkit.org/show_bug.cgi?id=74858
934 Reviewed by Nikolas Zimmermann.
936 * svg/custom/tref-remove-target-crash-expected.svg: Added.
937 * svg/custom/tref-remove-target-crash.svg: Added.
939 2012-02-17 Pavel Feldman <pfeldman@google.com>
941 Web Inspector: check undo-redo boundaries based on current action index, not history size.
942 https://bugs.webkit.org/show_bug.cgi?id=78895
944 Reviewed by Vsevolod Vlasov.
946 * inspector/elements/perform-undo-undo-expected.txt: Added.
947 * inspector/elements/perform-undo-undo.html: Added.
948 * inspector/styles/perform-undo-perform-of-mergable-action-expected.txt: Added.
949 * inspector/styles/perform-undo-perform-of-mergable-action.html: Added.
951 2012-02-17 Philippe Normand <pnormand@igalia.com>
953 Unreviewed, skipping 2 new test failures on GTK.
955 * platform/gtk/Skipped:
956 * platform/gtk/test_expectations.txt:
958 2012-02-17 Ilya Tikhonovsky <loislo@chromium.org>
960 Web Inspecter: Unreviewed. Adjust expectation for script-formatter-console.html
962 * platform/chromium/test_expectations.txt:
964 2012-02-17 Noel Gordon <noel.gordon@gmail.com>
966 [chromium] Rebaseline JPEG image results after r107389
967 https://bugs.webkit.org/show_bug.cgi?id=78454
969 Unreviewed. Rebaseline #34 of N. Restore/move following tests back in BUGCR9950
970 group with a WIN exception for an IMAGE failure.
972 WIN : svg/W3C-SVG-1.1/animate-elem-36-t.svg = IMAGE
973 WIN : svg/W3C-SVG-1.1/animate-elem-39-t.svg = IMAGE
974 WIN : svg/W3C-SVG-1.1/animate-elem-40-t.svg = IMAGE
976 * platform/chromium/test_expectations.txt:
978 2012-02-17 Pavel Feldman <pfeldman@google.com>
980 Web Inspector: split innerUpdate into rebuildUpdate and refreshUpdate, make computed styles load lazily.
981 https://bugs.webkit.org/show_bug.cgi?id=78827
983 Reviewed by Vsevolod Vlasov.
985 * http/tests/inspector/elements-test.js:
986 (initialize_ElementTest.InspectorTest.waitForStyles):
987 * inspector/styles/undo-add-property.html:
988 * inspector/styles/undo-change-property.html:
989 * inspector/styles/updates-during-dom-traversal.html:
990 * inspector/styles/updates-throttled.html:
992 2012-02-17 Noel Gordon <noel.gordon@gmail.com>
994 [chromium] Rebaseline JPEG image results after r107389
995 https://bugs.webkit.org/show_bug.cgi?id=78454
997 Unreviewed. Rebaseline #32 of N. Chrome MAC SnowLeopard differences under discussion
998 in bug 54322, retain IMAGE expectation on SnowLeopard, update pixel results.
1000 * platform/chromium-linux/tables/mozilla/core/row_span-expected.png:
1001 * platform/chromium-linux/tables/mozilla/other/cell_widths-expected.png:
1002 * platform/chromium-mac-leopard/tables/mozilla/core/row_span-expected.png:
1003 * platform/chromium-mac-leopard/tables/mozilla/other/cell_widths-expected.png:
1004 * platform/chromium-mac-snowleopard/tables/mozilla/core/row_span-expected.png: Added.
1005 * platform/chromium-mac-snowleopard/tables/mozilla/other/cell_widths-expected.png: Added.
1006 * platform/chromium-win/tables/mozilla/core/row_span-expected.png:
1007 * platform/chromium-win/tables/mozilla/other/cell_widths-expected.png:
1008 * platform/chromium/test_expectations.txt:
1010 2012-02-17 Noel Gordon <noel.gordon@gmail.com>
1012 [chromium] Rebaseline JPEG image results after r107389
1013 https://bugs.webkit.org/show_bug.cgi?id=78454
1015 Unreviewed. Rebaseline #33 of N. See also bug 78219.
1017 * platform/chromium-linux/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png:
1018 * platform/chromium-linux/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png:
1019 * platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png:
1020 * platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png:
1021 * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png: Added.
1022 * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png: Added.
1023 * platform/chromium-mac/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png: Removed.
1024 * platform/chromium-mac/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png: Removed.
1025 * platform/chromium-win/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png:
1026 * platform/chromium-win/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png:
1027 * platform/chromium/test_expectations.txt:
1029 2012-02-17 Noel Gordon <noel.gordon@gmail.com>
1031 [chromium] Rebaseline JPEG image results after r107389
1032 https://bugs.webkit.org/show_bug.cgi?id=78454
1034 Unreviewed. Rebaseline #31 of N. Any reasons for the MAC exception have been lost
1035 in time, like tears in rain. Remove the MAC exception, update all pixel results.
1037 * platform/chromium-linux/tables/mozilla/bugs/bug82946-2-expected.png:
1038 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug82946-2-expected.png: Added.
1039 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug82946-2-expected.png: Added.
1040 * platform/chromium-win/tables/mozilla/bugs/bug82946-2-expected.png:
1041 * platform/chromium/test_expectations.txt:
1043 2012-02-17 Philippe Normand <pnormand@igalia.com>
1045 Unreviewed, GTK rebaseline after r108034.
1047 * platform/gtk/fast/dom/Window/window-properties-expected.txt:
1048 * platform/gtk/fast/dom/Window/window-property-descriptors-expected.txt:
1049 * platform/gtk/fast/js/global-constructors-expected.txt:
1051 2012-02-17 Noel Gordon <noel.gordon@gmail.com>
1053 [chromium] Rebaseline JPEG image results after r107389
1054 https://bugs.webkit.org/show_bug.cgi?id=78454
1056 Unreviewed. Rebaseline #30 of N. Chrome MAC SnowLeopard differences under discussion
1057 in bug 54322, retain IMAGE expectation on SnowLeopard, update pixel results.
1059 * platform/chromium-linux/tables/mozilla/core/bloomberg-expected.png:
1060 * platform/chromium-linux/tables/mozilla/core/misc-expected.png:
1061 * platform/chromium-mac-leopard/tables/mozilla/core/bloomberg-expected.png:
1062 * platform/chromium-mac-leopard/tables/mozilla/core/misc-expected.png:
1063 * platform/chromium-mac-snowleopard/tables/mozilla/core/bloomberg-expected.png: Added.
1064 * platform/chromium-mac-snowleopard/tables/mozilla/core/misc-expected.png: Added.
1065 * platform/chromium-win/tables/mozilla/core/bloomberg-expected.png:
1066 * platform/chromium-win/tables/mozilla/core/misc-expected.png:
1067 * platform/chromium/test_expectations.txt:
1069 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1071 Unreviewed. Rollout r107952 removed fast/events/related-target-focusevent.html so
1072 lint complains about it in test_expectations.txt, remove it's expectation line.
1074 * platform/chromium/test_expectations.txt:
1076 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1078 Unreviewed. r107980 rolled-out, fast/js/stack-trace.html was removed so lint
1079 complains about it in test_expectations.txt, remove it's expectation line.
1081 * platform/chromium/test_expectations.txt:
1083 2012-02-16 Csaba Osztrogonác <ossy@webkit.org>
1085 Unreviewed. Rolling out r107980, because it broke 32 bit platforms.
1087 * fast/js/exception-properties-expected.txt:
1088 * fast/js/script-tests/exception-properties.js:
1089 * fast/js/script-tests/stack-trace.js: Removed.
1090 * fast/js/stack-trace-expected.txt: Removed.
1091 * fast/js/stack-trace.html: Removed.
1093 2012-02-16 Shinya Kawanaka <shinyak@chromium.org>
1095 [v8] v8 doesn't assume to do 'new WebKitShadowRoot(host)'
1096 https://bugs.webkit.org/show_bug.cgi?id=78875
1098 Reviewed by Kentaro Hara.
1100 Skip non-chromium ports since SHADOW_DOM flag is not enabled in their ports.
1102 * fast/dom/shadow/shadow-root-new.html: Added.
1103 * fast/dom/shadow/shadow-root-new-expected.txt: Added.
1104 * platform/efl/Skipped:
1105 * platform/gtk/Skipped:
1106 * platform/mac/Skipped:
1107 * platform/qt/Skipped:
1108 * platform/win/Skipped:
1109 * platform/wincairo/Skipped:
1110 * platform/wk2/Skipped:
1112 2012-02-16 Ilya Tikhonovsky <loislo@chromium.org>
1114 Unreviewed rollout r107952 because it broke shadow-boundary-events.html and related-target-focusevent.html on mac.
1115 see http://webkit.org/b/78832
1117 * fast/dom/shadow/shadow-boundary-events-expected.txt:
1118 * fast/dom/shadow/shadow-boundary-events.html:
1119 * fast/events/event-creation-expected.txt:
1120 * fast/events/event-creation.html:
1121 * fast/events/related-target-focusevent-expected.txt: Removed.
1122 * fast/events/related-target-focusevent.html: Removed.
1124 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1125 [chromium] Rebaseline JPEG image results after r107389
1126 https://bugs.webkit.org/show_bug.cgi?id=78454
1128 Unreviewed. Rebaseline #29 of N. Chrome MAC differences under discussion in bug
1129 BUGCR23473, retain IMAGE expectation on MAC therefore, update the pixel results.
1131 * platform/chromium-linux/fast/repaint/backgroundSizeRepaint-expected.png:
1132 * platform/chromium-mac-leopard/fast/repaint/backgroundSizeRepaint-expected.png: Added.
1133 * platform/chromium-mac-snowleopard/fast/repaint/backgroundSizeRepaint-expected.png: Added.
1134 * platform/chromium-win/fast/repaint/backgroundSizeRepaint-expected.png:
1135 * platform/chromium/test_expectations.txt:
1137 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1139 Rebaseline JPEG image results after r107389
1140 https://bugs.webkit.org/show_bug.cgi?id=78454
1142 Unreviewed. Rebaseline #26 of N. Color profiles are not supported in chrome win/linux.
1143 Retain the FAIL MISSING expectation, update the failing win/linux pixel result.
1145 * platform/chromium-win/fast/images/color-jpeg-with-color-profile-expected.png: Added.
1146 * platform/chromium/test_expectations.txt:
1148 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1150 [chromium] Rebaseline JPEG image results after r107389
1151 https://bugs.webkit.org/show_bug.cgi?id=78454
1153 Unreviewed. Rebaseline #28 of N. Chrome MAC differences under discussion in bug
1154 BUGCR23473, retain IMAGE expectation on MAC therefore, update the pixel results.
1156 * platform/chromium-linux/fast/repaint/clipped-relative-expected.png:
1157 * platform/chromium-linux/fast/repaint/selected-replaced-expected.png:
1158 * platform/chromium-mac-leopard/fast/repaint/clipped-relative-expected.png: Added.
1159 * platform/chromium-mac-leopard/fast/repaint/selected-replaced-expected.png: Added.
1160 * platform/chromium-mac-snowleopard/fast/repaint/clipped-relative-expected.png: Added.
1161 * platform/chromium-mac-snowleopard/fast/repaint/selected-replaced-expected.png: Added.
1162 * platform/chromium-win/fast/repaint/clipped-relative-expected.png:
1163 * platform/chromium-win/fast/repaint/selected-replaced-expected.png:
1164 * platform/chromium/test_expectations.txt:
1166 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1168 [chromium] Rebaseline JPEG image results after r107389
1169 https://bugs.webkit.org/show_bug.cgi?id=78454
1171 Unreviewed. Rebaseline #25 of N. Chrome MAC rendering was previously incorrect, and
1172 still is incorrect/weird: update test_expectations.txt with IMAGE failure.
1174 * platform/chromium-linux/compositing/overflow/overflow-scaled-descendant-overlapping-expected.png: Removed.
1175 * platform/chromium-linux/compositing/overflow/overflow-scaled-descendant-overlapping-expected.txt: Removed.
1176 * platform/chromium-mac-leopard/compositing/overflow/overflow-scaled-descendant-overlapping-expected.png: Added.
1177 * platform/chromium-mac-snowleopard/compositing/overflow/overflow-scaled-descendant-overlapping-expected.png:
1178 * platform/chromium-mac-snowleopard/compositing/overflow/overflow-scaled-descendant-overlapping-expected.txt: Removed.
1179 * platform/chromium-win-vista/compositing/overflow/overflow-scaled-descendant-overlapping-expected.png: Removed.
1180 * platform/chromium-win-vista/compositing/overflow/overflow-scaled-descendant-overlapping-expected.txt: Removed.
1181 * platform/chromium-win-xp/compositing/overflow/overflow-scaled-descendant-overlapping-expected.png: Removed.
1182 * platform/chromium-win-xp/compositing/overflow/overflow-scaled-descendant-overlapping-expected.txt: Removed.
1183 * platform/chromium-win/compositing/overflow/overflow-scaled-descendant-overlapping-expected.txt: Removed.
1184 * 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.
1185 * platform/chromium/test_expectations.txt:
1187 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1189 [chromium] Rebaseline JPEG image results after r107389
1190 https://bugs.webkit.org/show_bug.cgi?id=78454
1192 Unreviewed. Rebaseline #27 of N.
1194 * platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-39-t-expected.png:
1195 * platform/chromium-mac-leopard/svg/W3C-SVG-1.1/animate-elem-39-t-expected.png:
1196 * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/animate-elem-39-t-expected.png:
1197 * platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-39-t-expected.png:
1198 * platform/chromium/test_expectations.txt:
1200 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1202 [chromium] Rebaseline JPEG image results after r107389
1203 https://bugs.webkit.org/show_bug.cgi?id=78454
1205 Unreviewed. Rebaseline #24 of N. Differences in rendered image extents on chrome
1206 LINUX, WIN compared to chrome MAC. Retain that fact in test_expectations.txt.
1208 * platform/chromium-linux/tables/mozilla/bugs/bug101674-expected.png:
1209 * platform/chromium-win/tables/mozilla/bugs/bug101674-expected.png:
1210 * platform/chromium-win/tables/mozilla/bugs/bug101674-expected.txt:
1211 * platform/chromium/test_expectations.txt:
1213 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1215 [chromium] Rebaseline JPEG image results after r107389
1216 https://bugs.webkit.org/show_bug.cgi?id=78454
1218 Unreviewed. Rebaseline #23 of N.
1220 * platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png:
1221 * platform/chromium-mac-leopard/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png:
1222 * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png:
1223 * platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png:
1224 * platform/chromium/test_expectations.txt:
1226 2012-02-16 Dana Jansens <danakj@chromium.org>
1228 [Chromium] Occlusion tracking with CSS filters
1229 https://bugs.webkit.org/show_bug.cgi?id=77498
1231 Reviewed by James Robinson.
1233 * compositing/culling/filter-occlusion-alpha-expected.png: Added.
1234 * compositing/culling/filter-occlusion-alpha-expected.txt: Added.
1235 * compositing/culling/filter-occlusion-alpha-large-expected.png: Added.
1236 * compositing/culling/filter-occlusion-alpha-large-expected.txt: Added.
1237 * compositing/culling/filter-occlusion-alpha-large.html: Added.
1238 * compositing/culling/filter-occlusion-alpha.html: Added.
1239 * compositing/culling/filter-occlusion-blur-expected.txt: Added.
1240 * compositing/culling/filter-occlusion-blur-large-expected.txt: Added.
1241 * compositing/culling/filter-occlusion-blur-large.html: Added.
1242 * compositing/culling/filter-occlusion-blur.html: Added.
1243 * platform/chromium/compositing/culling/filter-occlusion-blur-expected.png: Added.
1244 * platform/chromium/compositing/culling/filter-occlusion-blur-large-expected.png: Added.
1245 * platform/chromium/test_expectations.txt:
1247 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1249 [chromium] Rebaseline JPEG image results after r107389
1250 https://bugs.webkit.org/show_bug.cgi?id=78454
1252 Unreviewed. Rebaseline #22 of N.
1254 * platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-40-t-expected.png:
1255 * platform/chromium-mac-leopard/svg/W3C-SVG-1.1/animate-elem-40-t-expected.png:
1256 * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/animate-elem-40-t-expected.png:
1257 * platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-40-t-expected.png:
1258 * platform/chromium/test_expectations.txt:
1260 2012-02-16 Ryosuke Niwa <rniwa@webkit.org>
1262 Crash in visiblePositionForIndex
1263 https://bugs.webkit.org/show_bug.cgi?id=77683
1265 Reviewed by Eric Seidel.
1267 Add a regression test. It crashes Webkit with very high frequency.
1269 * editing/execCommand/applyblockelement-visiblepositionforindex-crash-expected.txt: Added.
1270 * editing/execCommand/applyblockelement-visiblepositionforindex-crash.html: Added.
1272 2012-02-16 Dana Jansens <danakj@chromium.org>
1274 [chromium] Empty divs not transforming overflow correctly
1275 https://bugs.webkit.org/show_bug.cgi?id=78850
1277 Reviewed by James Robinson.
1279 * compositing/overflow/transform-in-empty-container-expected.png: Added.
1280 * compositing/overflow/transform-in-empty-container-expected.txt: Added.
1281 * compositing/overflow/transform-in-empty-container.html: Added.
1283 2012-02-16 James Robinson <jamesr@chromium.org>
1285 [chromium] Unreviewed baseline update for compositing/scrollbar-painting.html
1287 * platform/chromium-mac-snowleopard/compositing/scrollbar-painting-expected.png:
1289 2012-02-15 Shinya Kawanaka <shinyak@chromium.org>
1291 Needs an internal flag to accept multiple shadow roots for the purpose of tests
1292 https://bugs.webkit.org/show_bug.cgi?id=78453
1294 Reviewed by Hajime Morita.
1296 * fast/dom/shadow/shadow-root-js-api.html:
1298 2012-02-16 Mark Hahnenberg <mhahnenberg@apple.com>
1300 Fix the broken viewport tests
1301 https://bugs.webkit.org/show_bug.cgi?id=78774
1303 Reviewed by Kenneth Rohde Christiansen.
1305 * platform/gtk/Skipped: Undoing tests skipped due to earlier breakage.
1306 * platform/qt/Skipped: Ditto.
1308 2012-02-16 Alexei Svitkine <asvitkine@chromium.org>
1310 [chromium] Disable mock scrollbars for rubber-banding tests
1311 https://bugs.webkit.org/show_bug.cgi?id=78370
1313 Turning on mock scrollbars caused rubber-banding tests to fail
1314 because the overhang is painted by the ScrollbarTheme, which
1315 was replaced by the mock theme. Disable mock scrollbars for
1318 Reviewed by James Robinson.
1320 * platform/chromium/test_expectations.txt:
1322 2012-02-16 Michael Saboff <msaboff@apple.com>
1324 ENH: Add ability to run subset of JavaScript layout tests with JSC
1325 https://bugs.webkit.org/show_bug.cgi?id=78764
1327 Reviewed by Gavin Barraclough.
1329 * fast/js/jsc-test-list: Added. List of tests that can be run
1330 using jsc. Used by new Tools/Scripts/run-fast-jsc script.
1331 * fast/js/resources/standalone-post.js: ~pdated to match changes
1333 * fast/js/resources/standalone-pre.js: Updated to match changes
1336 2012-02-16 James Robinson <jamesr@chromium.org>
1338 [chromium] Unreviewed. Mark fast/js/stack.html as an expected failure, we aren't interesting in converging on
1341 * platform/chromium/test_expectations.txt:
1343 2012-02-16 Kentaro Hara <haraken@chromium.org>
1345 Remove [ConvertScriptString] from FileReaderSync.idl
1346 https://bugs.webkit.org/show_bug.cgi?id=78335
1348 Reviewed by Eric Seidel.
1350 The spec says that FileReadSync should throw NOT_FOUND_ERR
1351 if a given blob is invalid: http://www.w3.org/TR/FileAPI/#FileReaderSync
1352 This patch adds test cases for FileReaderSync with an invalid blob
1353 to check that NOT_FOUND_ERR is thrown.
1355 * fast/files/resources/read-common.js:
1356 (_readBlobAsArrayBufferSync):
1357 (_readBlobAsBinaryStringSync):
1358 (_readBlobAsTextSync):
1359 (_readBlobAsDataURLSync):
1360 * fast/files/workers/worker-read-blob-sync-expected.txt:
1361 * fast/files/workers/worker-read-file-sync-expected.txt:
1363 2012-02-16 Dana Jansens <danakj@chromium.org>
1365 [chromium] Clipping/Transforms applied in wrong order in opaque paint tracking
1366 https://bugs.webkit.org/show_bug.cgi?id=78775
1368 Reviewed by Stephen White.
1370 * compositing/culling/unscrolled-within-boxshadow-expected.png: Added.
1371 * compositing/culling/unscrolled-within-boxshadow-expected.txt: Added.
1372 * compositing/culling/unscrolled-within-boxshadow.html: Added.
1373 * compositing/overflow/clip-content-under-overflow-controls-expected.png:
1374 * compositing/scrollbar-painting-expected.png:
1376 2012-02-16 Abhishek Arya <inferno@chromium.org>
1378 Crash with tables in multi-column layout.
1379 https://bugs.webkit.org/show_bug.cgi?id=78415
1381 Reviewed by Julien Chaffraix.
1383 * fast/multicol/span/table-multi-column-crash-expected.txt: Added.
1384 * fast/multicol/span/table-multi-column-crash.html: Added.
1386 2012-02-16 James Robinson <jamesr@chromium.org>
1388 [chromium] Update table pixel expectations. Unreviewed.
1390 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug27038-1-expected.png: Renamed from LayoutTests/platform/chromium-mac/tables/mozilla/bugs/bug27038-1-expected.png.
1391 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug27038-2-expected.png: Renamed from LayoutTests/platform/chromium-mac/tables/mozilla/bugs/bug27038-2-expected.png.
1392 * platform/chromium-win/tables/mozilla/bugs/bug27038-1-expected.png:
1393 * platform/chromium-win/tables/mozilla/bugs/bug27038-2-expected.png:
1395 2012-02-16 Abhishek Arya <inferno@chromium.org>
1397 Add a missing image for my commit r107965.
1399 * fast/multicol/span/clone-flexbox-expected.png: Added.
1401 2012-02-16 Oliver Hunt <oliver@apple.com>
1403 Implement Error.stack
1404 https://bugs.webkit.org/show_bug.cgi?id=66994
1406 Reviewed by Gavin Barraclough.
1408 Add testcases for producing a stack trace on exception objects.
1410 * fast/js/exception-properties-expected.txt:
1411 * fast/js/script-tests/exception-properties.js:
1412 * fast/js/script-tests/stack-trace.js: Added.
1427 (object.get getter1.o.valueOf):
1428 (object.get getter1):
1429 (object.get getter2):
1430 (object.get getter3.o2.valueOf):
1431 (object.get getter3):
1432 (object.nonInlineable.callCount):
1433 (object.nonInlineable):
1434 (object.inlineable):
1435 (yetAnotherInlinedCall):
1436 (makeInlinableCall):
1443 * fast/js/stack-trace-expected.txt: Added.
1444 * fast/js/stack-trace.html: Added.
1446 2012-02-16 James Robinson <jamesr@chromium.org>
1448 [chromium] Unreviewed, update baselines for region repaint tests due to skia off-by-one.
1450 * platform/chromium-mac-snowleopard/fast/repaint/region-painting-invalidation-expected.png: Added.
1451 * platform/chromium-win/fast/repaint/region-painting-invalidation-expected.png: Added.
1452 * platform/chromium-win/fast/repaint/region-painting-invalidation-expected.txt: Added.
1453 * platform/chromium/test_expectations.txt:
1455 2012-02-16 Tony Chang <tony@chromium.org>
1457 [chromium] Unreviewed, these regions tests pass after r107961.
1459 * platform/chromium/test_expectations.txt:
1461 2012-02-16 James Robinson <jamesr@chromium.org>
1463 [chromium] Unreviewed rebaselines and expectation updates.
1465 * platform/chromium-linux/fast/html/details-add-summary-1-and-click-expected.png:
1466 * platform/chromium-linux/fast/html/details-add-summary-10-and-click-expected.png:
1467 * platform/chromium-linux/fast/html/details-add-summary-2-and-click-expected.png:
1468 * platform/chromium-linux/fast/html/details-add-summary-3-and-click-expected.png:
1469 * platform/chromium-linux/fast/html/details-add-summary-4-and-click-expected.png:
1470 * platform/chromium-linux/fast/html/details-add-summary-5-and-click-expected.png:
1471 * platform/chromium-linux/fast/html/details-add-summary-6-and-click-expected.png:
1472 * platform/chromium-linux/fast/html/details-add-summary-7-and-click-expected.png:
1473 * platform/chromium-linux/fast/html/details-add-summary-8-and-click-expected.png:
1474 * platform/chromium-linux/fast/html/details-add-summary-9-and-click-expected.png:
1475 * platform/chromium-linux/fast/html/details-remove-summary-1-and-click-expected.png:
1476 * platform/chromium-linux/fast/html/details-remove-summary-2-and-click-expected.png:
1477 * platform/chromium-linux/fast/html/details-remove-summary-3-and-click-expected.png:
1478 * platform/chromium-linux/fast/html/details-remove-summary-4-and-click-expected.png:
1479 * platform/chromium-linux/fast/html/details-remove-summary-5-and-click-expected.png:
1480 * platform/chromium-linux/fast/html/details-remove-summary-6-and-click-expected.png:
1481 * platform/chromium-mac-leopard/fast/html/details-add-summary-1-and-click-expected.png:
1482 * platform/chromium-mac-leopard/fast/html/details-add-summary-10-and-click-expected.png:
1483 * platform/chromium-mac-leopard/fast/html/details-add-summary-2-and-click-expected.png:
1484 * platform/chromium-mac-leopard/fast/html/details-add-summary-3-and-click-expected.png:
1485 * platform/chromium-mac-leopard/fast/html/details-add-summary-4-and-click-expected.png:
1486 * platform/chromium-mac-leopard/fast/html/details-add-summary-5-and-click-expected.png:
1487 * platform/chromium-mac-leopard/fast/html/details-add-summary-6-and-click-expected.png:
1488 * platform/chromium-mac-leopard/fast/html/details-add-summary-7-and-click-expected.png:
1489 * platform/chromium-mac-leopard/fast/html/details-add-summary-8-and-click-expected.png:
1490 * platform/chromium-mac-leopard/fast/html/details-add-summary-9-and-click-expected.png:
1491 * platform/chromium-mac-leopard/fast/html/details-remove-summary-1-and-click-expected.png:
1492 * platform/chromium-mac-leopard/fast/html/details-remove-summary-2-and-click-expected.png:
1493 * platform/chromium-mac-leopard/fast/html/details-remove-summary-3-and-click-expected.png:
1494 * platform/chromium-mac-leopard/fast/html/details-remove-summary-4-and-click-expected.png:
1495 * platform/chromium-mac-leopard/fast/html/details-remove-summary-5-and-click-expected.png:
1496 * platform/chromium-mac-leopard/fast/html/details-remove-summary-6-and-click-expected.png:
1497 * 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.
1498 * 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.
1499 * 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.
1500 * 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.
1501 * platform/chromium-mac-snowleopard/fast/html/details-add-summary-4-and-click-expected.png: Added.
1502 * 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.
1503 * 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.
1504 * 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.
1505 * 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.
1506 * 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.
1507 * 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.
1508 * 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.
1509 * 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.
1510 * 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.
1511 * 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.
1512 * 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.
1513 * platform/chromium-mac/fast/html/details-add-summary-1-and-click-expected.png: Removed.
1514 * platform/chromium-mac/fast/html/details-add-summary-3-and-click-expected.png: Removed.
1515 * platform/chromium-mac/fast/html/details-add-summary-4-and-click-expected.png: Removed.
1516 * platform/chromium-mac/fast/html/details-add-summary-5-and-click-expected.png: Removed.
1517 * platform/chromium-mac/fast/html/details-remove-summary-5-and-click-expected.png: Removed.
1518 * platform/chromium-mac/fast/html/details-remove-summary-6-and-click-expected.png: Removed.
1519 * platform/chromium-win/fast/html/details-add-summary-1-and-click-expected.png:
1520 * platform/chromium-win/fast/html/details-add-summary-10-and-click-expected.png:
1521 * platform/chromium-win/fast/html/details-add-summary-2-and-click-expected.png:
1522 * platform/chromium-win/fast/html/details-add-summary-3-and-click-expected.png:
1523 * platform/chromium-win/fast/html/details-add-summary-4-and-click-expected.png:
1524 * platform/chromium-win/fast/html/details-add-summary-5-and-click-expected.png:
1525 * platform/chromium-win/fast/html/details-add-summary-6-and-click-expected.png:
1526 * platform/chromium-win/fast/html/details-add-summary-7-and-click-expected.png:
1527 * platform/chromium-win/fast/html/details-add-summary-8-and-click-expected.png:
1528 * platform/chromium-win/fast/html/details-add-summary-9-and-click-expected.png:
1529 * platform/chromium-win/fast/html/details-remove-summary-1-and-click-expected.png:
1530 * platform/chromium-win/fast/html/details-remove-summary-2-and-click-expected.png:
1531 * platform/chromium-win/fast/html/details-remove-summary-3-and-click-expected.png:
1532 * platform/chromium-win/fast/html/details-remove-summary-4-and-click-expected.png:
1533 * platform/chromium-win/fast/html/details-remove-summary-5-and-click-expected.png:
1534 * platform/chromium-win/fast/html/details-remove-summary-6-and-click-expected.png:
1535 * platform/chromium/test_expectations.txt:
1537 2012-02-16 Philippe Normand <pnormand@igalia.com>
1539 Unreviewed, GTK rebaseline after r107952.
1541 * platform/gtk/fast/dom/Window/window-properties-expected.txt:
1542 * platform/gtk/fast/dom/Window/window-property-descriptors-expected.txt:
1543 * platform/gtk/fast/js/global-constructors-expected.txt:
1545 2012-02-16 Julien Chaffraix <jchaffraix@webkit.org>
1547 thead in table without tbody causes table height doubling
1548 https://bugs.webkit.org/show_bug.cgi?id=37244
1550 Reviewed by Ojan Vafai.
1552 * fast/table/double-height-table-no-tbody-expected.html: Added.
1553 * fast/table/double-height-table-no-tbody.html: Added.
1554 Test that we properly lay out tables with only a <thead> or <tfoot>
1555 exactly like a table with only a <tbody>.
1557 * platform/chromium-linux/tables/mozilla/bugs/bug27038-1-expected.png:
1558 * platform/chromium-linux/tables/mozilla/bugs/bug27038-2-expected.png:
1559 * platform/chromium-win/tables/mozilla/bugs/bug27038-1-expected.txt:
1560 * platform/chromium-win/tables/mozilla/bugs/bug27038-2-expected.txt:
1561 This is neither a progression nor a regression. We are not doing the right
1562 thing as we don't distribute the extra logical height evenly over our sections.
1563 Now we give the extra height to the <thead> (first section) instead of the <tbody>.
1565 * platform/chromium/test_expectations.txt:
1566 * platform/efl/test_expectations.txt:
1567 * platform/gtk/test_expectations.txt:
1568 * platform/mac/test_expectations.txt:
1569 * platform/qt/test_expectations.txt:
1570 * platform/win/test_expectations.txt:
1571 Marked the previous tests as needing a new baseline.
1573 2012-02-07 Robert Hogan <robert@webkit.org>
1575 CSS 2.1 failure: fixed-table-layout-013 and fixed-table-layout-015 fail
1576 https://bugs.webkit.org/show_bug.cgi?id=78027
1578 Reviewed by Julien Chaffraix.
1580 * css2.1/20110323/fixed-table-layout-013-expected.html: Added.
1581 * css2.1/20110323/fixed-table-layout-013.htm: Added.
1582 * css2.1/20110323/fixed-table-layout-015-expected.html: Added.
1583 * css2.1/20110323/fixed-table-layout-015.htm: Added.
1585 2012-02-16 Tony Chang <tony@chromium.org>
1587 [chromium] Unreviewed, tests passing after the fix in r107874.
1589 * platform/chromium/test_expectations.txt:
1591 2012-02-16 Tom Sepez <tsepez@chromium.org>
1593 XSS Auditor bypass with U+2028/2029
1594 https://bugs.webkit.org/show_bug.cgi?id=78732
1596 Reviewed by Adam Barth.
1598 * http/tests/security/xssAuditor/script-tag-with-trailing-comment-U2028-expected.txt: Added.
1599 * http/tests/security/xssAuditor/script-tag-with-trailing-comment-U2028.html: Added.
1601 2012-02-16 Abhishek Arya <inferno@chromium.org>
1603 Fix clone() function to handle descendant classes of RenderBlock.
1604 https://bugs.webkit.org/show_bug.cgi?id=78273
1606 Reviewed by Eric Seidel.
1608 You should see two RenderFlexibleBox in the rendertree, indicating that
1609 cloning was correct.
1611 * fast/multicol/span/clone-flexbox-expected.txt: Added.
1612 * fast/multicol/span/clone-flexbox.html: Added.
1614 2012-02-16 James Robinson <jamesr@chromium.org>
1616 [chromium] Unreviewed gardening
1618 * platform/chromium/fast/js/property-getters-and-setters-expected.txt:
1619 * platform/chromium/test_expectations.txt:
1621 2012-02-16 Raul Hudea <rhudea@adobe.com>
1623 [CSSRegions]overflowRegion tests are flaky
1624 https://bugs.webkit.org/show_bug.cgi?id=78761
1626 Reviewed by Tony Chang.
1628 * fast/regions/element-region-overflow-state-expected.txt:
1629 * fast/regions/element-region-overflow-state-vertical-rl-expected.txt:
1630 * fast/regions/element-region-overflow-state-vertical-rl.html:
1631 * fast/regions/element-region-overflow-state.html:
1633 2012-02-16 Raul Hudea <rhudea@adobe.com>
1635 [CSS Regions] Repaint issues when changing innerHTML of content
1636 https://bugs.webkit.org/show_bug.cgi?id=78787
1638 Reviewed by David Hyatt.
1640 * fast/repaint/region-painting-invalidation.html: Added.
1641 * platform/chromium/test_expectations.txt: Needs baseline
1642 * platform/mac/fast/repaint/region-painting-invalidation-expected.png: Added.
1643 * platform/mac/fast/repaint/region-painting-invalidation-expected.txt: Added.
1645 2012-02-16 James Robinson <jamesr@chromium.org>
1647 [chromium] Unreviewed chromium gardening
1649 * platform/chromium-linux/svg/text/tspan-dynamic-positioning-expected.png: Added.
1650 * platform/chromium-mac-leopard/compositing/plugins/composited-plugin-expected.png: Added.
1651 * platform/chromium-mac-leopard/compositing/plugins/composited-plugin-expected.txt: Added.
1652 * platform/chromium-mac-leopard/svg/text/tspan-dynamic-positioning-expected.png: Added.
1653 * platform/chromium-mac-snowleopard/svg/text/tspan-dynamic-positioning-expected.png: Added.
1654 * platform/chromium-win/svg/text/tspan-dynamic-positioning-expected.png: Added.
1655 * platform/chromium-win/svg/text/tspan-dynamic-positioning-expected.txt: Added.
1656 * platform/chromium/test_expectations.txt:
1658 2012-02-15 Gavin Barraclough <barraclough@apple.com>
1660 Numerous trivial bugs in Object.defineProperty
1661 https://bugs.webkit.org/show_bug.cgi?id=78777
1663 Reviewed by Sam Weinig.
1665 There are a handful of really trivial bugs, related to Object.defineProperty:
1666 * Redefining an accessor with different attributes changes the attributes, but not the get/set functions!
1667 * Calling an undefined setter should only throw in strict mode.
1668 * When redefining an accessor to a data decriptor, if writable is not specified we should default to false.
1669 * Any attempt to redefine a non-configurable property of an array as configurable should be rejected.
1670 * Object.defineProperties should call toObject on 'Properties' argument, rather than throwing if it is not an object.
1671 * If preventExtensions has been called on an array, subsequent assignment beyond array bounds should fail.
1672 * 'isFrozen' shouldn't be checking the ReadOnly bit for accessor descriptors (we presently always keep this bit as 'false').
1673 * Should be able to redefine an non-writable, non-configurable property, with the same value and attributes.
1674 * Should be able to define an non-configurable accessor.
1675 These are mostly all one-line changes, e.g. inverted boolean checks, masking against wrong attribute.
1677 * fast/js/Object-defineProperties-expected.txt:
1678 * fast/js/Object-defineProperty-expected.txt:
1679 * fast/js/preventExtensions-expected.txt:
1680 * fast/js/property-getters-and-setters-expected.txt:
1681 * fast/js/script-tests/Object-defineProperty.js:
1682 * fast/js/script-tests/preventExtensions.js:
1683 * fast/js/script-tests/property-getters-and-setters.js:
1684 - Update result & add new test cases for all bugs fixed.
1686 2012-02-16 Terry Anderson <tdanderson@chromium.org>
1688 WebKit does not support DOM 3 Events FocusEvent
1689 https://bugs.webkit.org/show_bug.cgi?id=76216
1691 Reviewed by Eric Seidel.
1693 * fast/dom/shadow/shadow-boundary-events-expected.txt:
1694 * fast/dom/shadow/shadow-boundary-events.html:
1695 - Changed the focusin/focusout parts of this layout test to include the
1696 relatedTarget attribute, which is now set on FocusEvent objects
1697 * fast/events/event-creation-expected.txt:
1698 * fast/events/event-creation.html:
1699 - Added the creation of FocusEvents to this layout test
1700 * fast/events/related-target-focusevent-expected.txt: Added.
1701 * fast/events/related-target-focusevent.html: Added.
1702 - This is a new layout test I created specifically for this patch
1704 2012-02-16 Philippe Normand <pnormand@igalia.com>
1706 Unreviewed, GTK baselines for new SVG and fast/ tests.
1708 * platform/gtk/fast/css/font-face-synthetic-bold-italic-expected.txt: Added.
1709 * platform/gtk/fast/css/font-face-weight-matching-expected.txt: Added.
1710 * platform/gtk/fast/js/constructor-length-expected.txt: Added.
1711 * platform/gtk/svg/custom/glyph-selection-arabic-forms-expected.txt: Added.
1712 * platform/gtk/svg/custom/glyph-selection-bidi-mirror-expected.txt: Added.
1713 * platform/gtk/svg/custom/glyph-selection-non-bmp-expected.txt: Added.
1714 * platform/gtk/svg/text/ems-display-none-expected.txt: Added.
1715 * platform/gtk/svg/text/exs-display-none-expected.txt: Added.
1716 * platform/gtk/svg/text/text-fill-opacity-expected.txt: Added.
1717 * platform/gtk/svg/text/tspan-dynamic-positioning-expected.txt: Added.
1719 2012-02-16 Philippe Normand <pnormand@igalia.com>
1721 Unreviewed, GTK rebaseline.
1723 * platform/gtk/fast/table/027-expected.txt:
1724 * platform/gtk/fast/table/027-vertical-expected.txt:
1725 * platform/gtk/tables/mozilla/bugs/bug14929-expected.txt:
1727 2012-02-16 Philippe Normand <pnormand@igalia.com>
1729 [GTK] fast/events/drag-dataTransfer-live-attributes.html fails
1730 https://bugs.webkit.org/show_bug.cgi?id=78818
1732 Unreviewed, rebaseline the test and unskip, as advised by Daniel Cheng.
1734 * platform/gtk/Skipped:
1735 * platform/gtk/fast/events/drag-dataTransfer-live-attributes-expected.txt: Added.
1737 2012-02-16 Philippe Normand <pnormand@igalia.com>
1739 Unreviewed, skipping 2 new test failures and unskipping some
1740 needing rebaselining.
1742 * platform/gtk/Skipped:
1743 * platform/gtk/test_expectations.txt:
1745 2012-02-16 Philippe Normand <pnormand@igalia.com>
1747 Unreviewed, GTK rebaseline after r107869 and skip a failing test.
1749 * platform/gtk/Skipped:
1750 * platform/gtk/fast/dom/Window/window-properties-expected.txt:
1751 * platform/gtk/fast/dom/Window/window-property-descriptors-expected.txt:
1752 * platform/gtk/fast/js/global-constructors-expected.txt:
1754 2012-02-16 Vsevolod Vlasov <vsevik@chromium.org>
1756 Unreviewed chromium expectations update.
1758 * platform/chromium/test_expectations.txt:
1760 2012-02-16 Ilya Tikhonovsky <loislo@chromium.org>
1762 Web Inspector: [heap snapshot] It could be useful to have access to the selected heap object from the console.
1763 https://bugs.webkit.org/show_bug.cgi?id=78496
1765 Reviewed by Yury Semikhatsky.
1767 * inspector/protocol/console-agent-expected.txt:
1768 * inspector/protocol/console-agent.html:
1770 2012-02-16 Ilya Tikhonovsky <loislo@chromium.org>
1772 [chromium] Rebaseline after r107881
1774 * platform/chromium-mac-snowleopard/fast/css/getComputedStyle/computed-style-expected.txt: Added.
1775 * platform/chromium-mac-snowleopard/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
1776 * platform/chromium-mac-snowleopard/svg/css/getComputedStyle-basic-expected.txt: Added.
1778 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1780 [chromium] Rebaseline JPEG image results after r107389
1781 https://bugs.webkit.org/show_bug.cgi?id=78454
1783 Unreviewed. Rebaseline #21 of N.
1785 * platform/chromium-linux-x86/fast/images/color-jpeg-with-color-profile-expected.txt: Removed.
1786 * platform/chromium-linux/fast/images/color-jpeg-with-color-profile-expected.txt: Removed.
1787 * platform/chromium-mac-leopard/fast/images/color-jpeg-with-color-profile-expected.png:
1788 * platform/chromium-mac-snowleopard/fast/images/color-jpeg-with-color-profile-expected.png:
1789 * platform/chromium-mac/fast/images/color-jpeg-with-color-profile-expected.txt: Removed.
1790 * platform/chromium-win-vista/fast/images/color-jpeg-with-color-profile-expected.txt: Removed.
1791 * platform/chromium-win-xp/fast/images/color-jpeg-with-color-profile-expected.txt: Removed.
1792 * platform/chromium-win/fast/images/color-jpeg-with-color-profile-expected.txt: Removed.
1793 * platform/chromium/test_expectations.txt:
1794 * platform/gtk/fast/images/color-jpeg-with-color-profile-expected.txt: Removed.
1795 * platform/mac/fast/images/color-jpeg-with-color-profile-expected.png: Renamed from LayoutTests/fast/images/color-jpeg-with-color-profile-expected.png.
1796 * platform/qt/fast/images/color-jpeg-with-color-profile-expected.txt: Removed.
1798 2012-02-16 Vsevolod Vlasov <vsevik@chromium.org>
1800 Web Inspector: [InspectorIndexedDB] Add IndexedDB TreeElement to resources panel.
1801 https://bugs.webkit.org/show_bug.cgi?id=78609
1803 Reviewed by Yury Semikhatsky.
1805 * http/tests/inspector/indexeddb/database-data-expected.txt:
1806 * http/tests/inspector/indexeddb/database-data.html:
1807 * http/tests/inspector/indexeddb/database-names-expected.txt:
1808 * http/tests/inspector/indexeddb/database-structure-expected.txt:
1809 * http/tests/inspector/indexeddb/database-structure.html:
1810 * http/tests/inspector/indexeddb/indexeddb-test.js:
1811 (initialize_IndexedDBTest.InspectorTest.dumpIndexedDBTree):
1812 (initialize_IndexedDBTest.InspectorTest.evaluateWithCallback):
1813 (initialize_IndexedDBTest.InspectorTest._installIndexedDBSniffer.consoleMessageOverride):
1814 (initialize_IndexedDBTest.InspectorTest._installIndexedDBSniffer):
1815 (createDatabase.closeDatabase):
1818 * http/tests/inspector/indexeddb/resources-panel-expected.txt: Added.
1819 * http/tests/inspector/indexeddb/resources-panel.html_disabled: Added.
1820 * http/tests/inspector/indexeddb/resources/without-indexed-db.html: Added.
1822 2012-02-16 Nikolas Zimmermann <nzimmermann@rim.com>
1824 Not reviewed. Add missing results for Lion, and regenerate one test result with Lion,
1825 so my baseline passes again with --tolerance 0 -p svg.
1827 * platform/mac/svg/text/text-fill-opacity-expected.png: Added.
1828 * platform/mac/svg/text/text-fill-opacity-expected.txt: Added.
1829 * platform/mac/svg/text/tspan-dynamic-positioning-expected.png:
1831 2012-02-15 Nikolas Zimmermann <nzimmermann@rim.com>
1833 REGRESSION (Safari 5.0.5 - 5.1): No animation on svg-wow.org/text-effects/text-effects.xhtml
1834 https://bugs.webkit.org/show_bug.cgi?id=65072
1836 Reviewed by Zoltan Herczeg.
1838 * platform/chromium/test_expectations.txt:
1839 * platform/mac/svg/text/ems-display-none-expected.png: Added.
1840 * platform/mac/svg/text/ems-display-none-expected.txt: Added.
1841 * platform/mac/svg/text/exs-display-none-expected.png: Added.
1842 * platform/mac/svg/text/exs-display-none-expected.txt: Added.
1843 * svg/text/ems-display-none.svg: Added.
1844 * svg/text/exs-display-none.svg: Added.
1846 2012-02-16 Csaba Osztrogonác <ossy@webkit.org>
1848 [Qt] Unreviewed gardening.
1850 * platform/qt/Skipped: Skip new failing tests.
1851 * platform/qt/fast/dom/Window/window-properties-expected.txt: Updated after r107869.
1852 * platform/qt/fast/dom/Window/window-property-descriptors-expected.txt: Updated after r107869.
1853 * platform/qt/fast/js/global-constructors-expected.txt: Updated after r107869.
1855 2012-02-16 Roland Steiner <rolandsteiner@chromium.org>
1857 <style scoped>: Implement scoped selector matching in the slow path
1858 https://bugs.webkit.org/show_bug.cgi?id=77528
1860 Extended existing <style scoped> tests to also verify that selector matching doesn't exceed the scoping element.
1862 Reviewed by Antti Koivisto.
1864 * fast/css/style-scoped/style-scoped-basic-expected.txt:
1865 * fast/css/style-scoped/style-scoped-basic.html:
1866 * fast/css/style-scoped/style-scoped-remove-scoped-expected.txt:
1867 * fast/css/style-scoped/style-scoped-remove-scoped.html:
1868 * fast/css/style-scoped/style-scoped-set-scoped-expected.txt:
1869 * fast/css/style-scoped/style-scoped-set-scoped.html:
1871 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1873 [chromium] Rebaseline JPEG image results after r107389
1874 https://bugs.webkit.org/show_bug.cgi?id=78454
1876 Unreviewed. Rebaseline #20 of N.
1878 * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug6933-expected.png:
1879 * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug85016-expected.png:
1880 * platform/chromium-mac-leopard/tables/mozilla_expected_failures/bugs/bug6933-expected.png:
1881 * platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug6933-expected.png: Added.
1882 * platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/bugs/bug85016-expected.png:
1883 * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug6933-expected.png: Removed.
1884 * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug6933-expected.png:
1885 * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug85016-expected.png:
1886 * platform/chromium/tables/mozilla_expected_failures/bugs/bug85016-expected.txt: Removed.
1887 * platform/chromium/test_expectations.txt:
1889 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
1891 [chromium] Rebaseline JPEG image results after r107389
1892 https://bugs.webkit.org/show_bug.cgi?id=78454
1894 Unreviewed. Rebaseline #19 of N.
1896 * platform/chromium-linux/tables/mozilla/marvin/td_valign_baseline-expected.png:
1897 * platform/chromium-linux/tables/mozilla/marvin/td_valign_bottom-expected.png:
1898 * platform/chromium-linux/tables/mozilla/marvin/td_valign_middle-expected.png:
1899 * platform/chromium-linux/tables/mozilla/marvin/td_valign_top-expected.png:
1900 * platform/chromium-linux/tables/mozilla/marvin/tfoot_valign_baseline-expected.png:
1901 * platform/chromium-linux/tables/mozilla/marvin/tfoot_valign_bottom-expected.png:
1902 * platform/chromium-linux/tables/mozilla/marvin/tfoot_valign_middle-expected.png:
1903 * platform/chromium-linux/tables/mozilla/marvin/tfoot_valign_top-expected.png:
1904 * platform/chromium-linux/tables/mozilla/marvin/th_valign_baseline-expected.png:
1905 * platform/chromium-linux/tables/mozilla/marvin/th_valign_bottom-expected.png:
1906 * platform/chromium-linux/tables/mozilla/marvin/th_valign_middle-expected.png:
1907 * platform/chromium-linux/tables/mozilla/marvin/th_valign_top-expected.png:
1908 * platform/chromium-linux/tables/mozilla/marvin/thead_valign_baseline-expected.png:
1909 * platform/chromium-linux/tables/mozilla/marvin/thead_valign_bottom-expected.png:
1910 * platform/chromium-linux/tables/mozilla/marvin/thead_valign_middle-expected.png:
1911 * platform/chromium-linux/tables/mozilla/marvin/thead_valign_top-expected.png:
1912 * platform/chromium-linux/tables/mozilla/marvin/tr_valign_baseline-expected.png:
1913 * platform/chromium-linux/tables/mozilla/marvin/tr_valign_bottom-expected.png:
1914 * platform/chromium-linux/tables/mozilla/marvin/tr_valign_middle-expected.png:
1915 * platform/chromium-linux/tables/mozilla/marvin/tr_valign_top-expected.png:
1916 * platform/chromium-mac-leopard/tables/mozilla/marvin/td_valign_baseline-expected.png:
1917 * platform/chromium-mac-leopard/tables/mozilla/marvin/td_valign_bottom-expected.png:
1918 * platform/chromium-mac-leopard/tables/mozilla/marvin/td_valign_middle-expected.png:
1919 * platform/chromium-mac-leopard/tables/mozilla/marvin/td_valign_top-expected.png:
1920 * platform/chromium-mac-leopard/tables/mozilla/marvin/tfoot_valign_baseline-expected.png:
1921 * platform/chromium-mac-leopard/tables/mozilla/marvin/tfoot_valign_bottom-expected.png:
1922 * platform/chromium-mac-leopard/tables/mozilla/marvin/tfoot_valign_middle-expected.png:
1923 * platform/chromium-mac-leopard/tables/mozilla/marvin/tfoot_valign_top-expected.png:
1924 * platform/chromium-mac-leopard/tables/mozilla/marvin/th_valign_baseline-expected.png:
1925 * platform/chromium-mac-leopard/tables/mozilla/marvin/th_valign_bottom-expected.png:
1926 * platform/chromium-mac-leopard/tables/mozilla/marvin/th_valign_middle-expected.png:
1927 * platform/chromium-mac-leopard/tables/mozilla/marvin/th_valign_top-expected.png:
1928 * platform/chromium-mac-leopard/tables/mozilla/marvin/thead_valign_baseline-expected.png:
1929 * platform/chromium-mac-leopard/tables/mozilla/marvin/thead_valign_bottom-expected.png:
1930 * platform/chromium-mac-leopard/tables/mozilla/marvin/thead_valign_middle-expected.png:
1931 * platform/chromium-mac-leopard/tables/mozilla/marvin/thead_valign_top-expected.png:
1932 * platform/chromium-mac-leopard/tables/mozilla/marvin/tr_valign_baseline-expected.png:
1933 * platform/chromium-mac-leopard/tables/mozilla/marvin/tr_valign_bottom-expected.png:
1934 * platform/chromium-mac-leopard/tables/mozilla/marvin/tr_valign_middle-expected.png:
1935 * platform/chromium-mac-leopard/tables/mozilla/marvin/tr_valign_top-expected.png:
1936 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/td_valign_baseline-expected.png: Added.
1937 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/td_valign_bottom-expected.png: Added.
1938 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/td_valign_middle-expected.png: Added.
1939 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/td_valign_top-expected.png: Added.
1940 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tfoot_valign_baseline-expected.png: Added.
1941 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tfoot_valign_bottom-expected.png: Added.
1942 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tfoot_valign_middle-expected.png: Added.
1943 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tfoot_valign_top-expected.png: Added.
1944 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/th_valign_baseline-expected.png: Added.
1945 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/th_valign_bottom-expected.png: Added.
1946 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/th_valign_middle-expected.png: Added.
1947 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/th_valign_top-expected.png: Added.
1948 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/thead_valign_baseline-expected.png: Added.
1949 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/thead_valign_bottom-expected.png: Added.
1950 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/thead_valign_middle-expected.png: Added.
1951 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/thead_valign_top-expected.png: Added.
1952 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tr_valign_baseline-expected.png: Added.
1953 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tr_valign_bottom-expected.png: Added.
1954 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tr_valign_middle-expected.png: Added.
1955 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tr_valign_top-expected.png: Added.
1956 * platform/chromium-mac/tables/mozilla/marvin/td_valign_baseline-expected.png: Removed.
1957 * platform/chromium-mac/tables/mozilla/marvin/td_valign_bottom-expected.png: Removed.
1958 * platform/chromium-mac/tables/mozilla/marvin/td_valign_middle-expected.png: Removed.
1959 * platform/chromium-mac/tables/mozilla/marvin/td_valign_top-expected.png: Removed.
1960 * platform/chromium-mac/tables/mozilla/marvin/tfoot_valign_baseline-expected.png: Removed.
1961 * platform/chromium-mac/tables/mozilla/marvin/tfoot_valign_bottom-expected.png: Removed.
1962 * platform/chromium-mac/tables/mozilla/marvin/tfoot_valign_middle-expected.png: Removed.
1963 * platform/chromium-mac/tables/mozilla/marvin/tfoot_valign_top-expected.png: Removed.
1964 * platform/chromium-mac/tables/mozilla/marvin/th_valign_baseline-expected.png: Removed.
1965 * platform/chromium-mac/tables/mozilla/marvin/th_valign_bottom-expected.png: Removed.
1966 * platform/chromium-mac/tables/mozilla/marvin/th_valign_middle-expected.png: Removed.
1967 * platform/chromium-mac/tables/mozilla/marvin/th_valign_top-expected.png: Removed.
1968 * platform/chromium-mac/tables/mozilla/marvin/thead_valign_baseline-expected.png: Removed.
1969 * platform/chromium-mac/tables/mozilla/marvin/thead_valign_bottom-expected.png: Removed.
1970 * platform/chromium-mac/tables/mozilla/marvin/thead_valign_middle-expected.png: Removed.
1971 * platform/chromium-mac/tables/mozilla/marvin/thead_valign_top-expected.png: Removed.
1972 * platform/chromium-mac/tables/mozilla/marvin/tr_valign_baseline-expected.png: Removed.
1973 * platform/chromium-mac/tables/mozilla/marvin/tr_valign_bottom-expected.png: Removed.
1974 * platform/chromium-mac/tables/mozilla/marvin/tr_valign_middle-expected.png: Removed.
1975 * platform/chromium-mac/tables/mozilla/marvin/tr_valign_top-expected.png: Removed.
1976 * platform/chromium-win/tables/mozilla/marvin/td_valign_baseline-expected.png:
1977 * platform/chromium-win/tables/mozilla/marvin/td_valign_bottom-expected.png:
1978 * platform/chromium-win/tables/mozilla/marvin/td_valign_middle-expected.png:
1979 * platform/chromium-win/tables/mozilla/marvin/td_valign_top-expected.png:
1980 * platform/chromium-win/tables/mozilla/marvin/tfoot_valign_baseline-expected.png:
1981 * platform/chromium-win/tables/mozilla/marvin/tfoot_valign_bottom-expected.png:
1982 * platform/chromium-win/tables/mozilla/marvin/tfoot_valign_middle-expected.png:
1983 * platform/chromium-win/tables/mozilla/marvin/tfoot_valign_top-expected.png:
1984 * platform/chromium-win/tables/mozilla/marvin/th_valign_baseline-expected.png:
1985 * platform/chromium-win/tables/mozilla/marvin/th_valign_bottom-expected.png:
1986 * platform/chromium-win/tables/mozilla/marvin/th_valign_middle-expected.png:
1987 * platform/chromium-win/tables/mozilla/marvin/th_valign_top-expected.png:
1988 * platform/chromium-win/tables/mozilla/marvin/thead_valign_baseline-expected.png:
1989 * platform/chromium-win/tables/mozilla/marvin/thead_valign_bottom-expected.png:
1990 * platform/chromium-win/tables/mozilla/marvin/thead_valign_middle-expected.png:
1991 * platform/chromium-win/tables/mozilla/marvin/thead_valign_top-expected.png:
1992 * platform/chromium-win/tables/mozilla/marvin/tr_valign_baseline-expected.png:
1993 * platform/chromium-win/tables/mozilla/marvin/tr_valign_bottom-expected.png:
1994 * platform/chromium-win/tables/mozilla/marvin/tr_valign_middle-expected.png:
1995 * platform/chromium-win/tables/mozilla/marvin/tr_valign_top-expected.png:
1996 * platform/chromium/test_expectations.txt:
1998 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
2000 [chromium] Rebaseline JPEG image results after r107389
2001 https://bugs.webkit.org/show_bug.cgi?id=78454
2003 Unreviewed. Rebaseline #18 of N.
2005 * platform/chromium-linux/tables/mozilla/core/col_widths_auto_autoFix-expected.png:
2006 * platform/chromium-linux/tables/mozilla_expected_failures/other/test4-expected.png:
2007 * platform/chromium-mac-leopard/tables/mozilla/core/col_widths_auto_autoFix-expected.png:
2008 * platform/chromium-mac-leopard/tables/mozilla_expected_failures/other/test4-expected.png:
2009 * platform/chromium-mac-snowleopard/tables/mozilla/core/col_widths_auto_autoFix-expected.png: Added.
2010 * platform/chromium-mac-snowleopard/tables/mozilla_expected_failures/other/test4-expected.png:
2011 * platform/chromium-mac/tables/mozilla/core/col_widths_auto_autoFix-expected.png: Removed.
2012 * platform/chromium-win/tables/mozilla/core/col_widths_auto_autoFix-expected.png:
2013 * platform/chromium-win/tables/mozilla_expected_failures/other/test4-expected.png:
2014 * platform/chromium/tables/mozilla_expected_failures/other/test4-expected.txt: Removed.
2015 * platform/chromium/test_expectations.txt:
2017 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
2019 [chromium] Rebaseline JPEG image results after r107389
2020 https://bugs.webkit.org/show_bug.cgi?id=78454
2022 Unreviewed. Rebaseline #17 of N.
2024 * platform/chromium-linux/tables/mozilla/marvin/tbody_valign_baseline-expected.png:
2025 * platform/chromium-linux/tables/mozilla/marvin/tbody_valign_bottom-expected.png:
2026 * platform/chromium-linux/tables/mozilla/marvin/tbody_valign_middle-expected.png:
2027 * platform/chromium-linux/tables/mozilla/marvin/tbody_valign_top-expected.png:
2028 * platform/chromium-mac-leopard/tables/mozilla/marvin/tbody_valign_baseline-expected.png:
2029 * platform/chromium-mac-leopard/tables/mozilla/marvin/tbody_valign_bottom-expected.png:
2030 * platform/chromium-mac-leopard/tables/mozilla/marvin/tbody_valign_middle-expected.png:
2031 * platform/chromium-mac-leopard/tables/mozilla/marvin/tbody_valign_top-expected.png:
2032 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tbody_valign_baseline-expected.png: Added.
2033 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tbody_valign_bottom-expected.png: Added.
2034 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tbody_valign_middle-expected.png: Added.
2035 * platform/chromium-mac-snowleopard/tables/mozilla/marvin/tbody_valign_top-expected.png: Added.
2036 * platform/chromium-mac/tables/mozilla/marvin/tbody_valign_baseline-expected.png: Removed.
2037 * platform/chromium-mac/tables/mozilla/marvin/tbody_valign_bottom-expected.png: Removed.
2038 * platform/chromium-mac/tables/mozilla/marvin/tbody_valign_middle-expected.png: Removed.
2039 * platform/chromium-mac/tables/mozilla/marvin/tbody_valign_top-expected.png: Removed.
2040 * platform/chromium-win/tables/mozilla/marvin/tbody_valign_baseline-expected.png:
2041 * platform/chromium-win/tables/mozilla/marvin/tbody_valign_bottom-expected.png:
2042 * platform/chromium-win/tables/mozilla/marvin/tbody_valign_middle-expected.png:
2043 * platform/chromium-win/tables/mozilla/marvin/tbody_valign_top-expected.png:
2044 * platform/chromium/test_expectations.txt:
2046 2012-02-16 Noel Gordon <noel.gordon@gmail.com>
2048 [chromium] Rebaseline JPEG image results after r107389
2049 https://bugs.webkit.org/show_bug.cgi?id=78454
2051 Unreviewed. Rebaseline #16 of N.
2053 * platform/chromium-linux/tables/mozilla/bugs/bug29314-expected.png:
2054 * platform/chromium-linux/tables/mozilla/bugs/bug2981-2-expected.png:
2055 * platform/chromium-linux/tables/mozilla/bugs/bug4093-expected.png:
2056 * platform/chromium-linux/tables/mozilla/bugs/bug4284-expected.png:
2057 * platform/chromium-linux/tables/mozilla/bugs/bug4427-expected.png:
2058 * platform/chromium-linux/tables/mozilla/bugs/bug56563-expected.png:
2059 * platform/chromium-linux/tables/mozilla/bugs/bug5797-expected.png:
2060 * platform/chromium-linux/tables/mozilla/bugs/bug625-expected.png:
2061 * platform/chromium-linux/tables/mozilla/bugs/bug6404-expected.png:
2062 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug2981-2-expected.png:
2063 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug4093-expected.png:
2064 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug4284-expected.png:
2065 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug4427-expected.png:
2066 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug56563-expected.png:
2067 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug5797-expected.png:
2068 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug625-expected.png:
2069 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug6404-expected.png:
2070 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug29314-expected.png: Added.
2071 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug2981-2-expected.png: Added.
2072 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4093-expected.png: Added.
2073 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4284-expected.png: Added.
2074 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug4427-expected.png: Added.
2075 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug50695-2-expected.png: Added.
2076 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug56563-expected.png: Added.
2077 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug5797-expected.png: Added.
2078 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug625-expected.png: Added.
2079 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug6404-expected.png: Added.
2080 * platform/chromium-mac/tables/mozilla/bugs/bug29314-expected.png: Removed.
2081 * platform/chromium-mac/tables/mozilla/bugs/bug2981-2-expected.png: Removed.
2082 * platform/chromium-mac/tables/mozilla/bugs/bug4093-expected.png: Removed.
2083 * platform/chromium-mac/tables/mozilla/bugs/bug4284-expected.png: Removed.
2084 * platform/chromium-mac/tables/mozilla/bugs/bug4427-expected.png: Removed.
2085 * platform/chromium-mac/tables/mozilla/bugs/bug50695-2-expected.png: Removed.
2086 * platform/chromium-mac/tables/mozilla/bugs/bug56563-expected.png: Removed.
2087 * platform/chromium-mac/tables/mozilla/bugs/bug5797-expected.png: Removed.
2088 * platform/chromium-mac/tables/mozilla/bugs/bug625-expected.png: Removed.
2089 * platform/chromium-mac/tables/mozilla/bugs/bug6404-expected.png: Removed.
2090 * platform/chromium-win/tables/mozilla/bugs/bug29314-expected.png:
2091 * platform/chromium-win/tables/mozilla/bugs/bug2981-2-expected.png:
2092 * platform/chromium-win/tables/mozilla/bugs/bug4093-expected.png:
2093 * platform/chromium-win/tables/mozilla/bugs/bug4284-expected.png:
2094 * platform/chromium-win/tables/mozilla/bugs/bug4427-expected.png:
2095 * platform/chromium-win/tables/mozilla/bugs/bug50695-2-expected.png:
2096 * platform/chromium-win/tables/mozilla/bugs/bug56563-expected.png:
2097 * platform/chromium-win/tables/mozilla/bugs/bug5797-expected.png:
2098 * platform/chromium-win/tables/mozilla/bugs/bug625-expected.png:
2099 * platform/chromium-win/tables/mozilla/bugs/bug6404-expected.png:
2100 * platform/chromium/tables/mozilla/bugs/bug56563-expected.txt: Removed.
2101 * platform/chromium/test_expectations.txt:
2102 * platform/mac/tables/mozilla/bugs/bug50695-2-expected.txt: Removed.
2103 * platform/qt/tables/mozilla/bugs/bug29314-expected.txt: Removed.
2104 * platform/qt/tables/mozilla/bugs/bug50695-2-expected.txt: Removed.
2105 * tables/mozilla/bugs/bug29314-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug29314-expected.txt.
2106 * tables/mozilla/bugs/bug50695-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug50695-2-expected.txt.
2108 2012-02-15 Noel Gordon <noel.gordon@gmail.com>
2110 [chromium] Rebaseline JPEG image results after r107389
2111 https://bugs.webkit.org/show_bug.cgi?id=78454
2113 Unreviewed. Rebaseline #15 of N.
2115 * platform/chromium-linux/tables/mozilla/bugs/bug12908-1-expected.png:
2116 * platform/chromium-linux/tables/mozilla/bugs/bug1296-expected.png:
2117 * platform/chromium-linux/tables/mozilla/bugs/bug1430-expected.png:
2118 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug12908-1-expected.png:
2119 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug1296-expected.png:
2120 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug1430-expected.png:
2121 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1271-expected.png: Added.
2122 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug12908-1-expected.png: Added.
2123 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1296-expected.png: Added.
2124 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug13169-expected.png: Added.
2125 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1430-expected.png: Added.
2126 * platform/chromium-mac/tables/mozilla/bugs/bug1271-expected.png: Removed.
2127 * platform/chromium-mac/tables/mozilla/bugs/bug12908-1-expected.png: Removed.
2128 * platform/chromium-mac/tables/mozilla/bugs/bug1296-expected.png: Removed.
2129 * platform/chromium-mac/tables/mozilla/bugs/bug13169-expected.png: Removed.
2130 * platform/chromium-mac/tables/mozilla/bugs/bug1430-expected.png: Removed.
2131 * platform/chromium-win/tables/mozilla/bugs/bug1271-expected.png:
2132 * platform/chromium-win/tables/mozilla/bugs/bug12908-1-expected.png:
2133 * platform/chromium-win/tables/mozilla/bugs/bug1296-expected.png:
2134 * platform/chromium-win/tables/mozilla/bugs/bug13169-expected.png:
2135 * platform/chromium-win/tables/mozilla/bugs/bug1430-expected.png:
2136 * platform/chromium/test_expectations.txt:
2137 * platform/mac/tables/mozilla/bugs/bug1271-expected.txt: Removed.
2138 * platform/mac/tables/mozilla/bugs/bug13169-expected.txt: Removed.
2139 * platform/qt/tables/mozilla/bugs/bug1271-expected.txt: Removed.
2140 * platform/qt/tables/mozilla/bugs/bug13169-expected.txt: Removed.
2141 * tables/mozilla/bugs/bug1271-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug1271-expected.txt.
2142 * tables/mozilla/bugs/bug13169-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug13169-expected.txt.
2144 2012-02-15 Csaba Osztrogonác <ossy@webkit.org>
2146 [Qt] Unreviewed gardening after r107814.
2148 * platform/qt/css3/filters/effect-blur-hw-expected.png:
2149 * platform/qt/css3/filters/effect-blur-hw-expected.txt:
2150 * platform/qt/css3/filters/effect-combined-expected.png:
2151 * platform/qt/css3/filters/effect-combined-expected.txt:
2152 * platform/qt/css3/filters/effect-combined-hw-expected.png:
2153 * platform/qt/css3/filters/effect-combined-hw-expected.txt:
2154 * platform/qt/css3/filters/effect-drop-shadow-hw-expected.png:
2155 * platform/qt/css3/filters/effect-drop-shadow-hw-expected.txt:
2156 * platform/qt/css3/filters/effect-grayscale-hw-expected.png:
2157 * platform/qt/css3/filters/effect-grayscale-hw-expected.txt:
2158 * platform/qt/css3/filters/effect-hue-rotate-hw-expected.png:
2159 * platform/qt/css3/filters/effect-hue-rotate-hw-expected.txt:
2160 * platform/qt/css3/filters/effect-invert-hw-expected.png:
2161 * platform/qt/css3/filters/effect-invert-hw-expected.txt:
2162 * platform/qt/css3/filters/effect-opacity-hw-expected.png:
2163 * platform/qt/css3/filters/effect-opacity-hw-expected.txt:
2164 * platform/qt/css3/filters/effect-saturate-hw-expected.png:
2165 * platform/qt/css3/filters/effect-saturate-hw-expected.txt:
2166 * platform/qt/css3/filters/effect-sepia-hw-expected.png:
2167 * platform/qt/css3/filters/effect-sepia-hw-expected.txt:
2169 2012-02-15 Daniel Cheng <dcheng@chromium.org>
2171 dataTransfer.types (HTML5 drag & drop) should return DOMStringList
2172 https://bugs.webkit.org/show_bug.cgi?id=30416
2174 Reviewed by Eric Seidel.
2176 Add a test to document the fact that many dataTransfer attributes aren't live and return a
2177 different object each time they're accessed. Also update tests to use contains() instead of
2180 * editing/pasteboard/clipboard-customData.html:
2181 * editing/pasteboard/onpaste-text-html-types.html:
2182 * fast/events/drag-and-drop-dataTransfer-types-nocrash.html:
2183 * fast/events/drag-customData.html:
2184 * fast/events/drag-dataTransfer-live-attributes-expected.txt: Added.
2185 * fast/events/drag-dataTransfer-live-attributes.html: Copied from LayoutTests/fast/events/drag-customData.html.
2186 * http/tests/local/fileapi/resources/setup-file-input-element-for-drag.js:
2187 * http/tests/security/clipboard/script-tests/clipboard-file-access.js:
2188 (checkForEventTransferType):
2190 2012-02-15 Bear Travis <betravis@adobe.com>
2192 Repaint issues on changing 'viewBox' of inner SVG
2193 https://bugs.webkit.org/show_bug.cgi?id=77903
2195 Adding test for 77903. When setting the viewbox on an inner svg
2196 element causes the content to become smaller, make sure that the
2197 area behind the content is redrawn.
2199 Reviewed by Nikolas Zimmermann.
2201 * platform/chromium/test_expectations.txt:
2202 * svg/repaint/inner-svg-change-viewBox-contract-expected.png: Added.
2203 * svg/repaint/inner-svg-change-viewBox-contract-expected.txt: Added.
2204 * svg/repaint/inner-svg-change-viewBox-contract.svg: Added.
2206 2012-02-15 Bear Travis <betravis@adobe.com>
2208 Repaint issues on changing 'viewBox' of inner SVG
2209 https://bugs.webkit.org/show_bug.cgi?id=77903
2211 Adding test for 77903. When setting the viewbox on an inner svg
2212 element causes the content to become smaller, make sure that the
2213 area behind the content is redrawn.
2215 Reviewed by Nikolas Zimmermann.
2217 * platform/chromium/test_expectations.txt:
2218 * svg/repaint/inner-svg-change-viewBox-contract-expected.png: Added.
2219 * svg/repaint/inner-svg-change-viewBox-contract-expected.txt: Added.
2220 * svg/repaint/inner-svg-change-viewBox-contract.svg: Added.
2222 2012-02-15 Daniel Cheng <dcheng@chromium.org>
2224 dataTransfer.types (HTML5 drag & drop) should return DOMStringList
2225 https://bugs.webkit.org/show_bug.cgi?id=30416
2227 Reviewed by Eric Seidel.
2229 Add a test to document the fact that many dataTransfer attributes aren't live and return a
2230 different object each time they're accessed. Also update tests to use contains() instead of
2233 * editing/pasteboard/clipboard-customData.html:
2234 * editing/pasteboard/onpaste-text-html-types.html:
2235 * fast/events/drag-and-drop-dataTransfer-types-nocrash.html:
2236 * fast/events/drag-customData.html:
2237 * fast/events/drag-dataTransfer-live-attributes-expected.txt: Added.
2238 * fast/events/drag-dataTransfer-live-attributes.html: Copied from LayoutTests/fast/events/drag-customData.html.
2239 * http/tests/local/fileapi/resources/setup-file-input-element-for-drag.js:
2240 * http/tests/security/clipboard/script-tests/clipboard-file-access.js:
2241 (checkForEventTransferType):
2243 2012-02-15 Bear Travis <betravis@adobe.com>
2245 Repaint issues on changing 'viewBox' of inner SVG
2246 https://bugs.webkit.org/show_bug.cgi?id=77903
2248 Adding test for 77903. When setting the viewbox on an inner svg
2249 element causes the content to become smaller, make sure that the
2250 area behind the content is redrawn.
2252 Reviewed by Nikolas Zimmermann.
2254 * platform/chromium/test_expectations.txt:
2255 * svg/repaint/inner-svg-change-viewBox-contract-expected.png: Added.
2256 * svg/repaint/inner-svg-change-viewBox-contract-expected.txt: Added.
2257 * svg/repaint/inner-svg-change-viewBox-contract.svg: Added.
2259 2012-02-15 Csaba Osztrogonác <ossy@webkit.org>
2261 [Qt] Unreviewed gardening after r107811.
2263 * platform/qt/platform/qt/plugins/qt-qwidget-plugin-expected.txt:
2264 * platform/qt/plugins/application-plugin-plugins-disabled-expected.txt:
2265 * platform/qt/plugins/iframe-plugin-bgcolor-expected.txt:
2266 * platform/qt/plugins/netscape-dom-access-expected.txt:
2268 2012-02-15 Ilya Tikhonovsky <loislo@chromium.org>
2270 [chromium] Unreviewed rebaseline after r107864.
2272 * platform/chromium-mac-leopard/svg/batik/text/textDecoration-expected.png:
2273 * platform/chromium-mac-leopard/svg/css/text-shadow-multiple-expected.png:
2274 * platform/chromium-mac-leopard/svg/text/text-text-08-b-expected.png:
2275 * platform/chromium-mac-leopard/svg/wicd/test-scalable-background-image2-expected.png:
2276 * platform/chromium-mac-snowleopard/compositing/plugins/composited-plugin-expected.png: Added.
2277 * platform/chromium-mac-snowleopard/compositing/plugins/composited-plugin-expected.txt: Added.
2278 * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/text-text-08-b-expected.png: Added.
2279 * platform/chromium-mac-snowleopard/svg/batik/text/textDecoration-expected.png:
2280 * platform/chromium-mac-snowleopard/svg/css/text-shadow-multiple-expected.png:
2281 * platform/chromium-mac-snowleopard/svg/text/text-text-08-b-expected.png:
2282 * platform/chromium-mac-snowleopard/svg/wicd/test-scalable-background-image2-expected.png:
2283 * platform/chromium-mac/compositing/plugins/composited-plugin-expected.png: Removed.
2284 * platform/chromium-mac/svg/W3C-SVG-1.1/text-text-08-b-expected.png: Removed.
2286 2012-02-15 Kentaro Hara <haraken@chromium.org>
2288 [Mac] PasteboardMac.mm build fails
2289 https://bugs.webkit.org/show_bug.cgi?id=78655
2291 Reviewed by Enrica Casucci.
2293 The added test drops multiple files onto an editable element,
2294 and checks if the filenames are inserted into the editable element.
2296 * editing/pasteboard/drag-files-to-editable-element-expected.txt: Added.
2297 * editing/pasteboard/drag-files-to-editable-element.html: Added.
2298 * platform/chromium/test_expectations.txt:
2299 * platform/efl/Skipped:
2300 * platform/gtk/Skipped:
2301 * platform/qt/Skipped:
2302 * platform/win/Skipped:
2303 * platform/wk2/Skipped:
2305 2012-02-15 Ilya Tikhonovsky <loislo@chromium.org>
2307 [chromium] Unreviewed rebaseline after r107864.
2309 * platform/chromium-mac-snowleopard/svg/text/text-fill-opacity-expected.png: Added.
2310 * platform/chromium-mac-snowleopard/svg/text/text-fill-opacity-expected.txt: Added.
2311 * platform/chromium-mac/fast/canvas/text-globalAlpha-expected.txt: Removed.
2312 * platform/chromium-win/svg/text/text-fill-opacity-expected.png: Added.
2313 * platform/chromium-win/svg/text/text-fill-opacity-expected.txt: Renamed from LayoutTests/platform/chromium-linux/svg/text/text-fill-opacity-expected.txt.
2315 2012-02-15 Pablo Flouret <pablof@motorola.com>
2317 Add support for the translate attribute in html elements.
2318 https://bugs.webkit.org/show_bug.cgi?id=78751
2320 Reviewed by Adam Barth.
2322 The translate attribute is used to specify whether an element's
2323 attribute values and the values of its Text node children are to be
2324 translated when the page is localized, or whether to leave them
2327 Details at http://www.whatwg.org/specs/web-apps/current-work/multipage/elements.html#attr-translate
2329 * fast/dom/HTMLElement/translate-expected.txt: Added.
2330 * fast/dom/HTMLElement/translate.html: Added.
2332 2012-02-15 Noel Gordon <noel.gordon@gmail.com>
2334 Unreviewed. compositing/culling/scrolled-within-boxshadow.html IMAGE failure.
2336 * platform/chromium/test_expectations.txt:
2338 2012-02-15 Sami Kyostila <skyostil@google.com>
2340 Add stacking context test for -webkit-overflow-scrolling CSS property
2341 https://bugs.webkit.org/show_bug.cgi?id=78664
2343 Reviewed by Eric Seidel.
2345 Make sure a stacking context is created for elements with touch overflow scrolling.
2347 * platform/chromium-win/fast/css/getComputedStyle/computed-style-expected.txt: Added new property.
2348 * platform/chromium-win/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt: Ditto.
2349 * platform/chromium-win/svg/css/getComputedStyle-basic-expected.txt: Ditto.
2350 * platform/chromium/compositing/overflow/overflow-scrolling-touch-stacking-context-expected.png: Added.
2351 * platform/chromium/compositing/overflow/overflow-scrolling-touch-stacking-context-expected.txt: Added.
2352 * platform/chromium/compositing/overflow/overflow-scrolling-touch-stacking-context.html: Added.
2354 2012-02-15 Alexey Proskuryakov <ap@apple.com>
2356 Crash after trying to use FileReader in a document with null origin string
2357 https://bugs.webkit.org/show_bug.cgi?id=78649
2359 Reviewed by Enrica Casucci.
2361 * fast/files/null-origin-string-expected.txt: Added.
2362 * fast/files/null-origin-string.html: Added.
2364 Dragging files is only implemented on a few platforms. Brought some order to skipped files
2367 * platform/mac/Skipped: Bug 45576 has been fixed long ago; unskip the test.
2369 * platform/efl/Skipped:
2370 * platform/qt/Skipped:
2371 Skipped the new tests.
2373 * platform/gtk-wk2/Skipped:
2374 * platform/mac-wk2/Skipped:
2375 * platform/win-wk2/Skipped:
2376 * platform/wk2/Skipped:
2377 Skipped the new tests, and moved other tests using eventSender.beginDragWithFiles to a
2378 central location. No WK2 port implements these yet, so we needn't maintain the lists
2381 2012-02-15 Noel Gordon <noel.gordon@gmail.com>
2383 [chromium] Rebaseline JPEG image results after r107389
2384 https://bugs.webkit.org/show_bug.cgi?id=78454
2386 Unreviewed. Rebaseline #14 of N.
2388 * platform/chromium-linux/tables/mozilla/bugs/bug15544-expected.png:
2389 * platform/chromium-linux/tables/mozilla/bugs/bug17138-expected.png:
2390 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug15544-expected.png:
2391 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug17138-expected.png:
2392 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug120107-expected.png: Added.
2393 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug12908-2-expected.png: Added.
2394 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug15544-expected.png: Added.
2395 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug17138-expected.png: Added.
2396 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug196870-expected.png: Added.
2397 * platform/chromium-mac/tables/mozilla/bugs/bug120107-expected.png: Removed.
2398 * platform/chromium-mac/tables/mozilla/bugs/bug12908-2-expected.png: Removed.
2399 * platform/chromium-mac/tables/mozilla/bugs/bug15544-expected.png: Removed.
2400 * platform/chromium-mac/tables/mozilla/bugs/bug17138-expected.png: Removed.
2401 * platform/chromium-mac/tables/mozilla/bugs/bug196870-expected.png: Removed.
2402 * platform/chromium-win/tables/mozilla/bugs/bug120107-expected.png:
2403 * platform/chromium-win/tables/mozilla/bugs/bug12908-2-expected.png:
2404 * platform/chromium-win/tables/mozilla/bugs/bug15544-expected.png:
2405 * platform/chromium-win/tables/mozilla/bugs/bug17138-expected.png:
2406 * platform/chromium-win/tables/mozilla/bugs/bug196870-expected.png:
2407 * platform/chromium/test_expectations.txt:
2408 * platform/mac/tables/mozilla/bugs/bug120107-expected.txt: Removed.
2409 * platform/mac/tables/mozilla/bugs/bug12908-2-expected.txt: Removed.
2410 * platform/mac/tables/mozilla/bugs/bug196870-expected.txt: Removed.
2411 * platform/qt/tables/mozilla/bugs/bug120107-expected.txt: Removed.
2412 * platform/qt/tables/mozilla/bugs/bug12908-2-expected.txt: Removed.
2413 * platform/qt/tables/mozilla/bugs/bug196870-expected.txt: Removed.
2414 * tables/mozilla/bugs/bug120107-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug120107-expected.txt.
2415 * tables/mozilla/bugs/bug12908-2-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug12908-2-expected.txt.
2416 * tables/mozilla/bugs/bug196870-expected.txt: Renamed from LayoutTests/platform/gtk/tables/mozilla/bugs/bug196870-expected.txt.
2418 2012-02-15 Erik Arvidsson <arv@chromium.org>
2420 Expose Window constructor
2421 https://bugs.webkit.org/show_bug.cgi?id=78722
2423 Reviewed by Adam Barth.
2425 * fast/dom/Window/window-constructor-presence-expected.txt: Added.
2426 * fast/dom/Window/window-constructor-presence.html: Added.
2428 2012-02-15 Kelly Norton <knorton@google.com>
2430 fill-opacity does not render properly only on Chromium Mac.
2431 https://bugs.webkit.org/show_bug.cgi?id=78624
2433 Reviewed by Stephen White.
2435 * platform/chromium-linux/svg/text/text-fill-opacity-expected.png: Added.
2436 * platform/chromium-linux/svg/text/text-fill-opacity-expected.txt: Added.
2437 * platform/chromium/test_expectations.txt:
2438 * svg/text/text-fill-opacity.svg: Added.
2440 2012-02-15 Tim Horton <timothy_horton@apple.com>
2442 REGRESSION(r105057): Dynamically changing <tspan> offsets is broken
2443 https://bugs.webkit.org/show_bug.cgi?id=78385
2444 <rdar://problem/10832932>
2446 Reviewed by Simon Fraser.
2448 Add a test ensuring that changing the offset of a <tspan> post-load results in correct layout.
2450 * platform/chromium/test_expectations.txt:
2451 * platform/mac/svg/text/tspan-dynamic-positioning-expected.png: Added.
2452 * platform/mac/svg/text/tspan-dynamic-positioning-expected.txt: Added.
2453 * svg/text/tspan-dynamic-positioning.svg: Added.
2455 2012-02-15 Nate Chapin <japhet@chromium.org>
2457 Remove Skipped tests that were broken by r107672.
2458 https://bugs.webkit.org/show_bug.cgi?id=76564
2460 Reviewed by Adam Barth.
2462 * platform/gtk/Skipped:
2463 * platform/qt/Skipped:
2465 2012-02-15 Tony Chang <tony@chromium.org>
2467 [chromium] Unreviewed. regionOverflow tests are flaky in debug.
2469 * platform/chromium/test_expectations.txt:
2471 2012-02-15 Tony Chang <tony@chromium.org>
2473 [chromium] Unreviewed, rebasing tests after r107836.
2475 * platform/chromium-linux-x86/fast/css/box-shadow-and-border-radius-expected.png:
2476 * platform/chromium-linux/fast/css/box-shadow-and-border-radius-expected.png:
2477 * platform/chromium-linux/fast/transforms/shadows-expected.png:
2478 * platform/chromium-mac-leopard/fast/css/box-shadow-and-border-radius-expected.png:
2479 * platform/chromium-mac-leopard/fast/transforms/shadows-expected.png:
2480 * platform/chromium-mac-snowleopard/fast/css/box-shadow-and-border-radius-expected.png:
2481 * platform/chromium-mac-snowleopard/fast/transforms/shadows-expected.png:
2482 * platform/chromium-win-vista/fast/css/box-shadow-and-border-radius-expected.png:
2483 * platform/chromium-win-xp/fast/css/box-shadow-and-border-radius-expected.png:
2484 * platform/chromium-win/fast/box-shadow/border-radius-big-expected.png:
2485 * platform/chromium-win/fast/css/box-shadow-and-border-radius-expected.png:
2486 * platform/chromium-win/fast/transforms/shadows-expected.png:
2487 * platform/chromium/test_expectations.txt:
2489 2012-02-15 Stephen White <senorblanco@chromium.org>
2491 Unreviewed gardening: mark a test as no longer MISSING.
2493 * platform/chromium/test_expectations.txt:
2495 2012-02-15 Tony Chang <tony@chromium.org>
2497 Unreviewed gardening: Fix more results after r107833.
2499 * fast/css/getComputedStyle/computed-style-expected.txt:
2500 * fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
2501 * platform/chromium-mac-snowleopard/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
2502 * platform/mac/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
2503 * svg/css/getComputedStyle-basic-expected.txt:
2505 2012-02-15 Tony Chang <tony@chromium.org>
2507 [chromium] Unreviewed, adding the chromium-mac result for this test (test added in r107822).
2509 * platform/chromium-mac-snowleopard/css3/filters/multiple-filters-invalidation-expected.png: Added.
2511 2012-02-15 Adam Klein <adamk@chromium.org>
2513 Add a test asserting that the second argument to MutationCallback is the observer
2514 https://bugs.webkit.org/show_bug.cgi?id=78653
2516 Reviewed by Ryosuke Niwa.
2518 This is specified in the spec text, so I wanted to make sure it was
2519 properly exercised in a layout test.
2521 * fast/mutation/callback-second-argument-expected.txt: Added.
2522 * fast/mutation/callback-second-argument.html: Added.
2524 2012-02-15 Ojan Vafai <ojan@chromium.org>
2526 getComputedStyle of flex-item-align:auto should resolve to it's parent's flex-align value
2527 https://bugs.webkit.org/show_bug.cgi?id=76326
2529 Reviewed by Tony Chang.
2531 * css3/flexbox/css-properties-expected.txt:
2532 * platform/chromium-win/fast/css/getComputedStyle/computed-style-expected.txt:
2533 * platform/chromium-win/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
2534 * platform/chromium-win/svg/css/getComputedStyle-basic-expected.txt:
2536 2012-02-15 Eric Carlson <eric.carlson@apple.com>
2538 Unset the active flag when TextTrackCues go away
2539 https://bugs.webkit.org/show_bug.cgi?id=72552
2541 Reviewed by Maciej Stachowiak.
2543 * media/track/track-active-cues-expected.txt: Added.
2544 * media/track/track-active-cues.html: Added.
2545 * track-cue-mutable-text.html: Update to not run test until track and video have
2547 * media/video-test.js:
2548 (waitForEventsAndCall): New, call the specified function after the list of events
2551 2012-02-15 Stephen White <senorblanco@chromium.org>
2553 Unreviewed gardening.
2555 Added baseline for new test multiple-filters-invalidation.html.
2557 * platform/chromium-win/css3/filters/multiple-filters-invalidation-expected.png: Added.
2559 2012-02-15 Adam Klein <adamk@chromium.org>
2561 Stop skipping fast/filesystem/file-writer-gc-blob.html, as FileWriter is well-supported in DRT.
2563 Unreviewed test expectations update.
2565 * platform/chromium/test_expectations.txt:
2567 2012-02-15 Tony Chang <tony@chromium.org>
2569 [chromium] Unreviewed, land chromium pixel results after r107797.
2571 * platform/chromium-linux/svg/dynamic-updates/SVGClipPath-influences-hitTesting-expected.png:
2572 * platform/chromium-linux/svg/dynamic-updates/SVGClipPathElement-css-transform-influences-hitTesting-expected.png:
2573 * platform/chromium-linux/svg/dynamic-updates/SVGClipPathElement-transform-influences-hitTesting-expected.png:
2574 * platform/chromium-linux/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.png:
2575 * platform/chromium-mac-leopard/svg/dynamic-updates/SVGClipPath-influences-hitTesting-expected.png:
2576 * platform/chromium-mac-leopard/svg/dynamic-updates/SVGClipPathElement-css-transform-influences-hitTesting-expected.png:
2577 * platform/chromium-mac-leopard/svg/dynamic-updates/SVGClipPathElement-transform-influences-hitTesting-expected.png:
2578 * platform/chromium-mac-leopard/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.png: Added.
2579 * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGClipPath-influences-hitTesting-expected.png: Added.
2580 * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGClipPathElement-css-transform-influences-hitTesting-expected.png:
2581 * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGClipPathElement-transform-influences-hitTesting-expected.png: Added.
2582 * platform/chromium-mac-snowleopard/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.png: Added.
2583 * platform/chromium-mac/svg/dynamic-updates/SVGClipPath-influences-hitTesting-expected.png: Removed.
2584 * platform/chromium-mac/svg/dynamic-updates/SVGClipPathElement-transform-influences-hitTesting-expected.png: Removed.
2585 * platform/chromium-mac/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.png: Removed.
2586 * platform/chromium-mac/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.txt: Removed.
2587 * platform/chromium-win/svg/dynamic-updates/SVGClipPath-influences-hitTesting-expected.png:
2588 * platform/chromium-win/svg/dynamic-updates/SVGClipPathElement-css-transform-influences-hitTesting-expected.png:
2589 * platform/chromium-win/svg/dynamic-updates/SVGClipPathElement-transform-influences-hitTesting-expected.png:
2590 * platform/chromium-win/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.png:
2591 * platform/chromium-win/svg/dynamic-updates/SVGFEColorMatrixElement-svgdom-values-prop-expected.txt: Removed.
2593 2012-02-15 Tony Chang <tony@chromium.org>
2595 fast/regions/element-region-overflow-state.html is flaky
2596 https://bugs.webkit.org/show_bug.cgi?id=78654
2598 Reviewed by Ojan Vafai.
2600 Sometimes layout happens before test() is called (e.g., if one of the
2601 script or other resources take a long time to load). In that case, we
2602 get different results. Not waiting for the load event should always
2605 * fast/regions/element-region-overflow-state-expected.txt:
2606 * fast/regions/element-region-overflow-state.html:
2607 * fast/regions/element-region-overflow-state-vertical-rl-expected.txt
2608 * fast/regions/element-region-overflow-state-vertical-rl.html
2610 2012-02-15 Adam Klein <adamk@chromium.org>
2612 Re-specify flakiness of http/tests/filesystem/workers as PASS TIMEOUT, since they never crash.
2614 Unreviewed test expectations update.
2616 * platform/chromium/test_expectations.txt:
2618 2012-02-14 Stephen White <senorblanco@chromium.org>
2620 New test to exercise invalidation of multiple CSS filters.
2621 https://bugs.webkit.org/show_bug.cgi?id=78626
2623 Reviewed by Darin Adler.
2625 * css3/filters/multiple-filters-invalidation-expected.txt: Added.
2626 * css3/filters/multiple-filters-invalidation.html: Added.
2627 * platform/mac-snowleopard/css3/filters/multiple-filters-invalidation-expected.png: Added.
2629 2012-02-15 No'am Rosenthal <noam.rosenthal@nokia.com>
2631 [Texmap] Support filters in TextureMapperImageBuffer
2632 https://bugs.webkit.org/show_bug.cgi?id=76026
2634 Unskipping hardware filter tests. They're still skipped in WebKit2.
2636 Reviewed by Kenneth Rohde Christiansen.
2638 * platform/qt-5.0-wk2/Skipped:
2639 * platform/qt/Skipped:
2640 * platform/qt/css3/filters/crash-hw-sw-switch-expected.png:
2641 * platform/qt/css3/filters/effect-blur-hw-expected.png: Added.
2642 * platform/qt/css3/filters/effect-blur-hw-expected.txt: Added.
2643 * platform/qt/css3/filters/effect-combined-expected.png: Added.
2644 * platform/qt/css3/filters/effect-combined-expected.txt: Added.
2645 * platform/qt/css3/filters/effect-combined-hw-expected.png: Added.
2646 * platform/qt/css3/filters/effect-combined-hw-expected.txt: Added.
2647 * platform/qt/css3/filters/effect-drop-shadow-hw-expected.png: Added.
2648 * platform/qt/css3/filters/effect-drop-shadow-hw-expected.txt: Added.
2649 * platform/qt/css3/filters/effect-grayscale-hw-expected.png: Added.
2650 * platform/qt/css3/filters/effect-grayscale-hw-expected.txt: Added.
2651 * platform/qt/css3/filters/effect-hue-rotate-hw-expected.png: Added.
2652 * platform/qt/css3/filters/effect-hue-rotate-hw-expected.txt: Added.
2653 * platform/qt/css3/filters/effect-invert-hw-expected.png: Added.
2654 * platform/qt/css3/filters/effect-invert-hw-expected.txt: Added.
2655 * platform/qt/css3/filters/effect-opacity-hw-expected.png: Added.
2656 * platform/qt/css3/filters/effect-opacity-hw-expected.txt: Added.
2657 * platform/qt/css3/filters/effect-saturate-hw-expected.png: Added.
2658 * platform/qt/css3/filters/effect-saturate-hw-expected.txt: Added.
2659 * platform/qt/css3/filters/effect-sepia-hw-expected.png: Added.
2660 * platform/qt/css3/filters/effect-sepia-hw-expected.txt: Added.
2662 2012-02-15 Noel Gordon <noel.gordon@gmail.com>
2664 [chromium] Rebaseline JPEG image results after r107389
2665 https://bugs.webkit.org/show_bug.cgi?id=78454
2667 Unreviewed. Rebaseline #13 of N.
2669 * platform/chromium-linux/tables/mozilla/bugs/bug10565-expected.png:
2670 * platform/chromium-linux/tables/mozilla/bugs/bug11026-expected.png:
2671 * platform/chromium-linux/tables/mozilla/bugs/bug1188-expected.png:
2672 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug10565-expected.png:
2673 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug11026-expected.png:
2674 * platform/chromium-mac-leopard/tables/mozilla/bugs/bug1188-expected.png:
2675 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug10565-expected.png: Added.
2676 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug11026-expected.png: Added.
2677 * platform/chromium-mac-snowleopard/tables/mozilla/bugs/bug1188-expected.png:
2678 * platform/chromium-mac/tables/mozilla/bugs/bug10565-expected.png: Removed.
2679 * platform/chromium-mac/tables/mozilla/bugs/bug11026-expected.png: Removed.
2680 * platform/chromium-win/tables/mozilla/bugs/bug10565-expected.png:
2681 * platform/chromium-win/tables/mozilla/bugs/bug11026-expected.png:
2682 * platform/chromium-win/tables/mozilla/bugs/bug1188-expected.png:
2683 * platform/chromium/test_expectations.txt:
2685 2012-02-15 Yury Semikhatsky <yurys@chromium.org>
2687 Web Inspector: crash when inspecting an element on a page with eval disabled by CSP
2688 https://bugs.webkit.org/show_bug.cgi?id=78705
2690 Reviewed by Pavel Feldman.
2692 * inspector/elements/resolve-node-blocked-expected.txt: Added.
2693 * inspector/elements/resolve-node-blocked.html: Added.
2695 2012-02-15 Kent Tamura <tkent@chromium.org>
2697 Clean up radio button tests
2698 https://bugs.webkit.org/show_bug.cgi?id=78679
2700 Reviewed by Kentaro Hara.
2702 - Split checkbox-radio-onchange.html into checkbox-onchange.html and radio/radio-onchange.html.
2703 - Convert the following rendering tests to text tests.
2704 radio-attr-order.html
2705 radio-nested-labels.html
2707 radio_checked_dynamic.html
2709 This change is a preparation of moving radio button tests to fast/forms/radio/.
2711 * fast/forms/checkbox-onchange-expected.txt: Added.
2712 * fast/forms/checkbox-onchange.html: Added.
2713 * fast/forms/checkbox-radio-onchange.html: Removed.
2714 * fast/forms/radio-attr-order-expected.txt: Added.
2715 * fast/forms/radio-attr-order.html:
2716 * fast/forms/radio-nested-labels-expected.txt: Added.
2717 * fast/forms/radio-nested-labels.html:
2718 * fast/forms/radio/radio-onchange-expected.txt: Added.
2719 * fast/forms/radio/radio-onchange.html: Added.
2720 * fast/forms/radio_checked-expected.txt: Added.
2721 * fast/forms/radio_checked.html:
2722 * fast/forms/radio_checked_dynamic-expected.txt: Added.
2723 * fast/forms/radio_checked_dynamic.html:
2724 * platform/chromium-linux/fast/forms/checkbox-radio-onchange-expected.png: Removed.
2725 * platform/chromium-linux/fast/forms/radio-attr-order-expected.png: Removed.
2726 * platform/chromium-linux/fast/forms/radio-nested-labels-expected.png: Removed.
2727 * platform/chromium-linux/fast/forms/radio_checked-expected.png: Removed.
2728 * platform/chromium-linux/fast/forms/radio_checked_dynamic-expected.png: Removed.
2729 * platform/chromium-win/fast/forms/checkbox-radio-onchange-expected.png: Removed.
2730 * platform/chromium-win/fast/forms/checkbox-radio-onchange-expected.txt: Removed.
2731 * platform/chromium-win/fast/forms/radio-attr-order-expected.png: Removed.
2732 * platform/chromium-win/fast/forms/radio-attr-order-expected.txt: Removed.
2733 * platform/chromium-win/fast/forms/radio-nested-labels-expected.png: Removed.
2734 * platform/chromium-win/fast/forms/radio-nested-labels-expected.txt: Removed.
2735 * platform/chromium-win/fast/forms/radio_checked-expected.png: Removed.
2736 * platform/chromium-win/fast/forms/radio_checked-expected.txt: Removed.
2737 * platform/chromium-win/fast/forms/radio_checked_dynamic-expected.png: Removed.
2738 * platform/chromium-win/fast/forms/radio_checked_dynamic-expected.txt: Removed.
2739 * platform/chromium/test_expectations.txt:
2740 * platform/efl/fast/forms/checkbox-radio-onchange-expected.png: Removed.
2741 * platform/efl/fast/forms/checkbox-radio-onchange-expected.txt: Removed.
2742 * platform/efl/fast/forms/radio-attr-order-expected.png: Removed.
2743 * platform/efl/fast/forms/radio-attr-order-expected.txt: Removed.
2744 * platform/efl/fast/forms/radio-nested-labels-expected.png: Removed.
2745 * platform/efl/fast/forms/radio-nested-labels-expected.txt: Removed.
2746 * platform/efl/fast/forms/radio_checked-expected.png: Removed.
2747 * platform/efl/fast/forms/radio_checked-expected.txt: Removed.
2748 * platform/efl/fast/forms/radio_checked_dynamic-expected.png: Removed.
2749 * platform/efl/fast/forms/radio_checked_dynamic-expected.txt: Removed.
2750 * platform/gtk/fast/forms/checkbox-radio-onchange-expected.png: Removed.
2751 * platform/gtk/fast/forms/checkbox-radio-onchange-expected.txt: Removed.
2752 * platform/gtk/fast/forms/radio-attr-order-expected.png: Removed.
2753 * platform/gtk/fast/forms/radio-attr-order-expected.txt: Removed.
2754 * platform/gtk/fast/forms/radio-nested-labels-expected.png: Removed.
2755 * platform/gtk/fast/forms/radio-nested-labels-expected.txt: Removed.
2756 * platform/gtk/fast/forms/radio_checked-expected.png: Removed.
2757 * platform/gtk/fast/forms/radio_checked-expected.txt: Removed.
2758 * platform/gtk/fast/forms/radio_checked_dynamic-expected.png: Removed.
2759 * platform/gtk/fast/forms/radio_checked_dynamic-expected.txt: Removed.
2760 * platform/mac-leopard/fast/forms/checkbox-radio-onchange-expected.png: Removed.
2761 * platform/mac-leopard/fast/forms/radio-attr-order-expected.png: Removed.
2762 * platform/mac-leopard/fast/forms/radio-nested-labels-expected.png: Removed.
2763 * platform/mac-leopard/fast/forms/radio_checked-expected.png: Removed.
2764 * platform/mac-leopard/fast/forms/radio_checked_dynamic-expected.png: Removed.
2765 * platform/mac-snowleopard/fast/forms/radio_checked-expected.png: Removed.
2766 * platform/mac-snowleopard/fast/forms/radio_checked-expected.txt: Removed.
2767 * platform/mac-snowleopard/fast/forms/radio_checked_dynamic-expected.png: Removed.
2768 * platform/mac-snowleopard/fast/forms/radio_checked_dynamic-expected.txt: Removed.
2769 * platform/mac/fast/forms/checkbox-radio-onchange-expected.png: Removed.
2770 * platform/mac/fast/forms/checkbox-radio-onchange-expected.txt: Removed.
2771 * platform/mac/fast/forms/radio-attr-order-expected.png: Removed.
2772 * platform/mac/fast/forms/radio-attr-order-expected.txt: Removed.
2773 * platform/mac/fast/forms/radio-nested-labels-expected.png: Removed.
2774 * platform/mac/fast/forms/radio-nested-labels-expected.txt: Removed.
2775 * platform/mac/fast/forms/radio_checked-expected.png: Removed.
2776 * platform/mac/fast/forms/radio_checked-expected.txt: Removed.
2777 * platform/mac/fast/forms/radio_checked_dynamic-expected.png: Removed.
2778 * platform/mac/fast/forms/radio_checked_dynamic-expected.txt: Removed.
2779 * platform/qt-mac/Skipped:
2780 * platform/qt/fast/forms/checkbox-radio-onchange-expected.txt: Removed.
2781 * platform/qt/fast/forms/radio-attr-order-expected.txt: Removed.
2782 * platform/qt/fast/forms/radio-nested-labels-expected.txt: Removed.
2783 * platform/qt/fast/forms/radio_checked-expected.txt: Removed.
2784 * platform/qt/fast/forms/radio_checked_dynamic-expected.txt: Removed.
2786 2012-02-15 Nikolas Zimmermann <nzimmermann@rim.com>
2788 Not reviewed. Update SnowLeopard SVG pixel test baseline - chunk 1.
2790 * platform/mac-snowleopard/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.png:
2791 * platform/mac-snowleopard/svg/W3C-SVG-1.1-SE/filters-image-05-f-expected.png:
2792 * platform/mac-snowleopard/svg/W3C-SVG-1.1-SE/painting-control-04-f-expected.png:
2793 * platform/mac-snowleopard/svg/W3C-SVG-1.1-SE/types-dom-01-b-expected.png: Added.
2794 * platform/mac-snowleopard/svg/W3C-SVG-1.1/animate-elem-30-t-expected.png:
2795 * platform/mac-snowleopard/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png:
2796 * platform/mac-snowleopard/svg/W3C-SVG-1.1/animate-elem-80-t-expected.png:
2797 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-blend-01-b-expected.png: Added.
2798 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-color-01-b-expected.png:
2799 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-composite-02-b-expected.png:
2800 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-comptran-01-b-expected.png:
2801 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-conv-01-f-expected.png:
2802 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-diffuse-01-f-expected.png:
2803 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-displace-01-f-expected.png:
2804 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-example-01-b-expected.png: Added.
2805 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-gauss-01-b-expected.png:
2806 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-image-01-b-expected.png:
2807 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-light-01-f-expected.png:
2808 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-light-04-f-expected.png:
2809 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-morph-01-f-expected.png:
2810 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-offset-01-b-expected.png:
2811 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-specular-01-f-expected.png:
2812 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-tile-01-b-expected.png:
2813 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-turb-01-f-expected.png:
2814 * platform/mac-snowleopard/svg/W3C-SVG-1.1/filters-turb-02-f-expected.png:
2815 * platform/mac-snowleopard/svg/W3C-SVG-1.1/render-groups-01-b-expected.png: Added.
2816 * platform/mac-snowleopard/svg/W3C-SVG-1.1/render-groups-03-t-expected.png: Added.
2817 * platform/mac-snowleopard/svg/W3C-SVG-1.1/struct-image-04-t-expected.png: Added.
2818 * platform/mac-snowleopard/svg/W3C-SVG-1.1/struct-image-06-t-expected.png:
2819 * platform/mac-snowleopard/svg/W3C-SVG-1.1/struct-image-07-t-expected.png: Added.
2820 * platform/mac-snowleopard/svg/W3C-SVG-1.1/struct-image-08-t-expected.png: Added.
2821 * platform/mac-snowleopard/svg/W3C-SVG-1.1/struct-use-01-t-expected.png: Added.
2822 * platform/mac-snowleopard/svg/as-background-image/svg-as-background-6-expected.png:
2823 * platform/mac-snowleopard/svg/as-border-image/svg-as-border-image-2-expected.png:
2824 * platform/mac-snowleopard/svg/as-border-image/svg-as-border-image-expected.png: Added.
2825 * platform/mac-snowleopard/svg/as-image/animated-svg-as-image-expected.png:
2826 * platform/mac-snowleopard/svg/as-image/animated-svg-as-image-no-fixed-intrinsic-size-expected.png:
2827 * platform/mac-snowleopard/svg/as-image/animated-svg-as-image-same-image-expected.png:
2828 * platform/mac-snowleopard/svg/as-image/svg-image-change-content-size-expected.png:
2829 * platform/mac-snowleopard/svg/as-object/embedded-svg-immediate-offsetWidth-query-expected.png:
2830 * platform/mac-snowleopard/svg/as-object/embedded-svg-size-changes-expected.png:
2831 * platform/mac-snowleopard/svg/as-object/nested-embedded-svg-size-changes-expected.png:
2832 * platform/mac-snowleopard/svg/batik/filters/feTile-expected.png:
2833 * platform/mac-snowleopard/svg/batik/filters/filterRegions-expected.png:
2834 * platform/mac-snowleopard/svg/batik/masking/maskRegions-expected.png:
2835 * platform/mac-snowleopard/svg/batik/text/smallFonts-expected.png:
2836 * platform/mac-snowleopard/svg/batik/text/textEffect-expected.png:
2837 * platform/mac-snowleopard/svg/batik/text/textEffect3-expected.png:
2838 * platform/mac-snowleopard/svg/carto.net/selectionlist-expected.png:
2839 * platform/mac-snowleopard/svg/carto.net/window-expected.png:
2840 * platform/mac-snowleopard/svg/css/path-gradient-stroke-shadow-expected.png: Added.
2841 * platform/mac-snowleopard/svg/css/rect-gradient-stroke-shadow-expected.png: Added.
2842 * platform/mac-snowleopard/svg/css/shadow-changes-expected.png:
2843 * platform/mac-snowleopard/svg/custom/absolute-sized-content-with-resources-expected.png:
2844 * platform/mac-snowleopard/svg/custom/circle-move-invalidation-expected.png:
2845 * platform/mac-snowleopard/svg/custom/convolution-crash-expected.png: Added.
2846 * platform/mac-snowleopard/svg/custom/createImageElement-expected.png: Added.
2847 * platform/mac-snowleopard/svg/custom/createImageElement2-expected.png:
2848 * platform/mac-snowleopard/svg/custom/empty-merge-expected.png: Added.
2849 * platform/mac-snowleopard/svg/custom/feComponentTransfer-Discrete-expected.png:
2850 * platform/mac-snowleopard/svg/custom/feComponentTransfer-Gamma-expected.png:
2851 * platform/mac-snowleopard/svg/custom/feComponentTransfer-Linear-expected.png:
2852 * platform/mac-snowleopard/svg/custom/feComponentTransfer-Table-expected.png:
2853 * platform/mac-snowleopard/svg/custom/feDisplacementMap-01-expected.png: Added.
2854 * platform/mac-snowleopard/svg/custom/focus-ring-expected.png:
2855 * platform/mac-snowleopard/svg/custom/foreignObject-crash-on-hover-expected.png:
2856 * platform/mac-snowleopard/svg/custom/getTransformToElement-expected.png:
2857 * platform/mac-snowleopard/svg/custom/grayscale-gradient-mask-2-expected.png: Added.
2858 * platform/mac-snowleopard/svg/custom/group-opacity-expected.png:
2859 * platform/mac-snowleopard/svg/custom/hit-test-unclosed-subpaths-expected.png:
2860 * platform/mac-snowleopard/svg/custom/hit-test-with-br-expected.png:
2861 * platform/mac-snowleopard/svg/custom/image-parent-translation-expected.png:
2862 * platform/mac-snowleopard/svg/custom/image-small-width-height-expected.png:
2863 * platform/mac-snowleopard/svg/custom/image-with-prefix-in-webarchive-expected.png: Added.
2864 * platform/mac-snowleopard/svg/custom/image-with-transform-clip-filter-expected.png:
2865 * platform/mac-snowleopard/svg/custom/inline-svg-in-xhtml-expected.png:
2866 * platform/mac-snowleopard/svg/custom/js-late-clipPath-and-object-creation-expected.png: Added.
2867 * platform/mac-snowleopard/svg/custom/js-update-image-and-display-expected.png: Added.
2868 * platform/mac-snowleopard/svg/custom/js-update-image-and-display2-expected.png: Added.
2869 * platform/mac-snowleopard/svg/custom/js-update-image-and-display3-expected.png: Added.
2870 * platform/mac-snowleopard/svg/custom/js-update-image-expected.png: Added.
2871 * platform/mac-snowleopard/svg/custom/js-update-stop-linked-gradient-expected.png:
2872 * platform/mac-snowleopard/svg/custom/mask-invalidation-expected.png:
2873 * platform/mac-snowleopard/svg/custom/mouse-move-on-svg-container-expected.png:
2874 * platform/mac-snowleopard/svg/custom/mouse-move-on-svg-container-standalone-expected.png:
2875 * platform/mac-snowleopard/svg/custom/mouse-move-on-svg-root-expected.png:
2876 * platform/mac-snowleopard/svg/custom/mouse-move-on-svg-root-standalone-expected.png:
2877 * platform/mac-snowleopard/svg/custom/non-opaque-filters-expected.png:
2878 * platform/mac-snowleopard/svg/custom/pattern-userSpaceOnUse-userToBaseTransform-expected.png: Added.
2879 * platform/mac-snowleopard/svg/custom/pointer-events-image-css-transform-expected.png:
2880 * platform/mac-snowleopard/svg/custom/pointer-events-image-expected.png:
2881 * platform/mac-snowleopard/svg/custom/recursive-filter-expected.png:
2882 * platform/mac-snowleopard/svg/custom/relative-sized-content-expected.png:
2883 * platform/mac-snowleopard/svg/custom/relative-sized-content-with-resources-expected.png:
2884 * platform/mac-snowleopard/svg/custom/relative-sized-deep-shadow-tree-content-expected.png:
2885 * platform/mac-snowleopard/svg/custom/relative-sized-image-expected.png: Added.
2886 * platform/mac-snowleopard/svg/custom/relative-sized-inner-svg-expected.png:
2887 * platform/mac-snowleopard/svg/custom/relative-sized-shadow-tree-content-expected.png:
2888 * platform/mac-snowleopard/svg/custom/relative-sized-shadow-tree-content-with-symbol-expected.png:
2889 * platform/mac-snowleopard/svg/custom/relative-sized-use-on-symbol-expected.png:
2890 * platform/mac-snowleopard/svg/custom/relative-sized-use-without-attributes-on-symbol-expected.png:
2891 * platform/mac-snowleopard/svg/custom/resource-invalidate-on-target-update-expected.png: Added.
2892 * platform/mac-snowleopard/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.png:
2893 * platform/mac-snowleopard/svg/custom/text-filter-expected.png: Added.
2894 * platform/mac-snowleopard/svg/custom/text-image-opacity-expected.png:
2895 * platform/mac-snowleopard/svg/custom/text-xy-updates-SVGList-expected.png:
2896 * platform/mac-snowleopard/svg/custom/transform-with-shadow-and-gradient-expected.png: Added.
2897 * platform/mac-snowleopard/svg/custom/use-clipped-hit-expected.png:
2898 * platform/mac-snowleopard/svg/custom/use-disappears-after-style-update-expected.png:
2899 * platform/mac-snowleopard/svg/custom/use-elementInstance-event-target-expected.png:
2900 * platform/mac-snowleopard/svg/custom/use-elementInstance-methods-expected.png:
2901 * platform/mac-snowleopard/svg/custom/use-event-handler-on-referenced-element-expected.png:
2902 * platform/mac-snowleopard/svg/custom/use-event-handler-on-use-element-expected.png:
2903 * platform/mac-snowleopard/svg/custom/use-instanceRoot-event-bubbling-expected.png: Added.
2904 * platform/mac-snowleopard/svg/custom/use-instanceRoot-event-listeners-expected.png: Added.
2905 * platform/mac-snowleopard/svg/custom/use-on-g-containing-foreignObject-and-image-expected.png: Added.
2906 * platform/mac-snowleopard/svg/custom/visibility-override-filter-expected.png: Added.
2907 * platform/mac-snowleopard/svg/dom/SVGPathSegList-segment-modification-expected.png:
2908 * platform/mac-snowleopard/svg/dom/SVGPathSegList-xml-dom-synchronization-expected.png:
2909 * platform/mac-snowleopard/svg/dom/SVGPathSegList-xml-dom-synchronization2-expected.png:
2911 2012-02-13 Vsevolod Vlasov <vsevik@chromium.org>
2913 Web Inspector: [InspectorIndexedDB] Pass data entries from object stores and indexes to front-end.
2914 https://bugs.webkit.org/show_bug.cgi?id=78503
2916 Reviewed by Yury Semikhatsky.
2918 * http/tests/inspector/indexeddb/database-data-expected.txt: Added.
2919 * http/tests/inspector/indexeddb/database-data.html: Added.
2920 * http/tests/inspector/indexeddb/database-names-expected.txt:
2921 * http/tests/inspector/indexeddb/database-structure-expected.txt:
2922 * http/tests/inspector/indexeddb/indexeddb-test.js:
2923 (initialize_IndexedDBTest.InspectorTest.evaluateWithCallback):
2924 (initialize_IndexedDBTest.InspectorTest.addIDBValue):
2925 (initialize_IndexedDBTest):
2926 (doWithReadWriteTransaction.step2.innerCommitCallback):
2927 (doWithReadWriteTransaction.step2):
2928 (doWithReadWriteTransaction):
2929 (addIDBValue.doWithReadWriteTransaction.withTransactionCallback):
2932 2012-02-15 Kent Tamura <tkent@chromium.org>
2934 Unreviewed, change the encoding of a test HTML.
2936 * fast/forms/radio-nested-labels.html: Convert from UTF-16 to UTF-8.
2938 2012-02-15 Nikolas Zimmermann <nzimmermann@rim.com>
2940 Switch svg/dynamic-updates tests to repaint harness
2941 https://bugs.webkit.org/show_bug.cgi?id=78219
2943 Make all tests that exercise repainting use the fast/repaint/resources/repaint.js harness.
2944 This is the last step, all svg tests have been converted.
2946 The only relevant change to look at is svg/dynamic-updates/resources/SVGTestCase.js, the rest is mechanic, done by a script.
2947 Ran following magic in svg/dynamic-updates: (inject repaint.js in all *.html files in that folder, and register onload handler)
2948 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\>/"
2949 find . -type f -name "*.html" | xargs perl -pi -e "s/<body>/<body onload=\"runRepaintTest()\">/"
2951 And in svg/dynamic-updates/script-tests: (remove manual startTest function calls, and rename executeTest to repaintTest).
2952 find . -type f -name "*.js" | xargs perl -pi -e "s/startTest\(.*\);\n//"
2953 find . -type f -name "*.js" | xargs perl -pi -e "s/function\ executeTest/function\ repaintTest/"
2955 Only a few tests needed other adjustments.
2957 * platform/chromium/test_expectations.txt:
2958 * svg/animations/resources/SVGAnimationTestCase.js:
2961 * platform/mac/svg/dynamic-updates/SVGCircleElement-dom-cx-attr-expected.png:
2962 * platform/mac/svg/dynamic-updates/SVGCircleElement-dom-cy-attr-expected.png:
2964 * svg/dynamic-updates/SVG-dynamic-css-transform.html:
2965 * svg/dynamic-updates/SVGAElement-dom-href-attr.html:
2967 * svg/dynamic-updates/resources/SVGTestCase.js: Changed to utilize the repaint.js harness.
2968 (createSVGTestCase):
2970 * svg/dynamic-updates/resources/linkTarget.svg:
2971 * svg/dynamic-updates/script-tests/SVGAElement-dom-href-attr.js:
2973 * svg/dynamic-updates/script-tests/SVGAElement-dom-target-attr.js:
2976 * svg/dynamic-updates/script-tests/TEMPLATE.html: Removed.
2978 2012-02-15 Kent Tamura <tkent@chromium.org>
2980 Unreviewed, correct svn:mime-type of a test.
2982 * fast/forms/radio-nested-labels.html:
2983 Modified property svn:mime-type from application/octet-stream to text/html.
2985 2012-02-15 Roland Steiner <rolandsteiner@chromium.org>
2987 <style scoped>: Allow <style scoped> as a direct child of a ShadowRoot
2988 https://bugs.webkit.org/show_bug.cgi?id=77853
2990 Test registration of <style scoped> as a direct child of a ShadowRoot.
2992 Reviewed by Dimitri Glazkov.
2994 * fast/css/style-scoped/registering-shadowroot-expected.txt: Added.
2995 * fast/css/style-scoped/registering-shadowroot.html: Added.
2997 2012-02-14 Pavel Feldman <pfeldman@chromium.org>
2999 Web Inspector: implement redo for DOM actions.
3000 https://bugs.webkit.org/show_bug.cgi?id=78601
3002 Reviewed by Yury Semikhatsky.
3004 * http/tests/inspector/elements-test.js:
3005 (initialize_ElementTest.InspectorTest.generateUndoTest):
3006 * inspector/elements/undo-dom-edits-2-expected.txt:
3007 * inspector/elements/undo-dom-edits-expected.txt:
3008 * inspector/styles/undo-add-new-rule-expected.txt:
3009 * inspector/styles/undo-add-new-rule.html:
3010 * inspector/styles/undo-add-property-expected.txt:
3011 * inspector/styles/undo-add-property.html:
3012 * inspector/styles/undo-change-property-expected.txt:
3013 * inspector/styles/undo-change-property.html:
3014 * inspector/styles/undo-property-toggle-expected.txt:
3015 * inspector/styles/undo-property-toggle.html:
3016 * inspector/styles/undo-set-selector-text-expected.txt:
3017 * inspector/styles/undo-set-selector-text.html:
3019 2012-02-14 Nikolas Zimmermann <nzimmermann@rim.com>
3021 Convert svg/animations to use SMIL methods for driving the timeline
3022 https://bugs.webkit.org/show_bug.cgi?id=78422
3024 Rubber-stamped by Simon Hausmann.
3026 Further cleanup of the svg/animation tests. Always use "0.001" as sampling time
3027 for "just-after-anim-begin" instead of 0.1/0.01 variations. Use "3.999" as
3028 "just-before-anim-end" time instead of 3.9/3.99 variations.
3030 Use a default tolerance of 0.1, instead of the strict 0.01, to avoid having
3031 to expect values like "199.98". Use "200" instead. That doesn't reduce the
3032 value of any of the tests, but its likely to be more stable.
3034 Changed some real-quick running animamtions to have a higher duration.
3035 This minimizes the sampling time error when sampling the animation right after
3036 it started (svg/animation/*nested-transforms*). This doesn't affect the runtime
3037 of the tests at all, as we manually drive the timeline anyways.
3039 Always use shouldBe() instead of shouldBeCloseEnough() if the sampling time
3040 is an integer, like 2.0 for animations that eg. animate x from 0 to 200.
3041 Sampling exactly at 2.0, yields 100, so there's no need to check for equal
3044 * platform/chromium/test_expectations.txt:
3045 * svg/animations/animate-calcMode-spline-by-expected.txt:
3046 * svg/animations/animate-calcMode-spline-from-by-expected.txt:
3047 * svg/animations/animate-calcMode-spline-from-to-expected.txt:
3048 * svg/animations/animate-calcMode-spline-to-expected.txt:
3049 * svg/animations/animate-calcMode-spline-values-expected.txt:
3050 * svg/animations/animate-path-animation-Cc-Ss-expected.txt:
3051 * svg/animations/animate-path-animation-Ll-Vv-Hh-expected.txt:
3052 * svg/animations/animate-path-animation-cC-sS-inverse-expected.txt:
3053 * svg/animations/animate-path-animation-lL-vV-hH-inverse-expected.txt:
3054 * svg/animations/animate-path-nested-transforms-expected.txt:
3055 * svg/animations/animate-path-to-animation-expected.txt:
3056 * svg/animations/animate-text-nested-transforms-expected.txt:
3057 * svg/animations/resources/SVGAnimationTestCase.js:
3058 (shouldBeCloseEnough):
3059 * svg/animations/script-tests/animVal-basics.js:
3061 * svg/animations/script-tests/animate-calcMode-spline-by.js:
3064 * svg/animations/script-tests/animate-calcMode-spline-from-by.js:
3067 * svg/animations/script-tests/animate-calcMode-spline-from-to.js:
3070 * svg/animations/script-tests/animate-calcMode-spline-to.js:
3073 * svg/animations/script-tests/animate-calcMode-spline-values.js:
3076 * svg/animations/script-tests/animate-color-rgba-calcMode-discrete.js:
3078 * svg/animations/script-tests/animate-dynamic-update-attributeName.js:
3080 * svg/animations/script-tests/animate-end-attribute.js:
3082 * svg/animations/script-tests/animate-mpath-insert.js:
3085 * svg/animations/script-tests/animate-path-animation-Cc-Ss.js:
3089 * svg/animations/script-tests/animate-path-animation-Ll-Vv-Hh.js:
3093 * svg/animations/script-tests/animate-path-animation-Qq-Tt.js:
3097 * svg/animations/script-tests/animate-path-animation-cC-sS-inverse.js:
3101 * svg/animations/script-tests/animate-path-animation-lL-vV-hH-inverse.js:
3105 * svg/animations/script-tests/animate-path-animation-qQ-tT-inverse.js:
3109 * svg/animations/script-tests/animate-path-nested-transforms.js:
3112 * svg/animations/script-tests/animate-path-to-animation.js:
3115 * svg/animations/script-tests/animate-text-nested-transforms.js:
3118 * svg/animations/script-tests/animateTransform-pattern-transform.js:
3120 * svg/animations/script-tests/svgangle-animation-deg-to-grad.js:
3123 * svg/animations/script-tests/svgangle-animation-deg-to-rad.js:
3126 * svg/animations/script-tests/svgangle-animation-grad-to-deg.js:
3129 * svg/animations/script-tests/svgangle-animation-grad-to-rad.js:
3132 * svg/animations/script-tests/svgangle-animation-rad-to-deg.js:
3135 * svg/animations/script-tests/svgangle-animation-rad-to-grad.js:
3138 * svg/animations/script-tests/svginteger-animation-1.js:
3140 * svg/animations/script-tests/svglength-animation-LengthModeHeight.js:
3143 * svg/animations/script-tests/svglength-animation-LengthModeOther.js:
3146 * svg/animations/script-tests/svglength-animation-LengthModeWidth.js:
3149 * svg/animations/script-tests/svglength-animation-number-to-number.js:
3152 * svg/animations/script-tests/svglength-animation-px-to-cm.js:
3155 * svg/animations/script-tests/svglength-animation-px-to-ems.js:
3158 * svg/animations/script-tests/svglength-animation-px-to-exs.js:
3161 * svg/animations/script-tests/svglength-animation-px-to-in.js:
3164 * svg/animations/script-tests/svglength-animation-px-to-number.js:
3167 * svg/animations/script-tests/svglength-animation-px-to-pc.js:
3170 * svg/animations/script-tests/svglength-animation-px-to-percentage.js:
3173 * svg/animations/script-tests/svglength-animation-px-to-pt.js:
3176 * svg/animations/script-tests/svglength-animation-px-to-px.js:
3179 * svg/animations/script-tests/svglength-animation-values.js:
3184 * svg/animations/script-tests/svglengthlist-animation-1.js:
3186 * svg/animations/script-tests/svglengthlist-animation-2.js:
3189 * svg/animations/script-tests/svglengthlist-animation-3.js:
3192 * svg/animations/script-tests/svglengthlist-animation-4.js:
3194 * svg/animations/script-tests/svglengthlist-animation-5.js:
3196 * svg/animations/script-tests/svgnumber-animation-1.js:
3198 * svg/animations/script-tests/svgnumber-animation-2.js:
3200 * svg/animations/script-tests/svgnumberlist-animation-1.js:
3203 * svg/animations/script-tests/svgnumberlist-animation-2.js:
3206 * svg/animations/script-tests/svgnumberoptionalnumber-animation-1.js:
3209 * svg/animations/script-tests/svgnumberoptionalnumber-animation-2.js:
3212 * svg/animations/script-tests/svgnumberoptionalnumber-animation-3.js:
3215 * svg/animations/script-tests/svgnumberoptionalnumber-animation-4.js:
3218 * svg/animations/script-tests/svgpath-animation-1.js:
3221 * svg/animations/script-tests/svgpointlist-animation-1.js:
3223 * svg/animations/script-tests/svgpointlist-animation-2.js:
3225 * svg/animations/script-tests/svgrect-animation-1.js:
3227 * svg/animations/script-tests/svgrect-animation-2.js:
3229 * svg/animations/script-tests/svgtransform-animation-1.js:
3233 * svg/animations/script-tests/svgtransform-animation-discrete.js:
3237 * svg/animations/svgangle-animation-deg-to-grad-expected.txt:
3238 * svg/animations/svgangle-animation-deg-to-rad-expected.txt:
3239 * svg/animations/svgangle-animation-grad-to-deg-expected.txt:
3240 * svg/animations/svgangle-animation-grad-to-rad-expected.txt:
3241 * svg/animations/svgangle-animation-rad-to-deg-expected.txt:
3242 * svg/animations/svgangle-animation-rad-to-grad-expected.txt:
3243 * svg/animations/svglength-animation-LengthModeHeight-expected.txt:
3244 * svg/animations/svglength-animation-LengthModeOther-expected.txt:
3245 * svg/animations/svglength-animation-LengthModeWidth-expected.txt:
3246 * svg/animations/svglength-animation-number-to-number-expected.txt:
3247 * svg/animations/svglength-animation-px-to-cm-expected.txt:
3248 * svg/animations/svglength-animation-px-to-ems-expected.txt:
3249 * svg/animations/svglength-animation-px-to-exs-expected.txt:
3250 * svg/animations/svglength-animation-px-to-in-expected.txt:
3251 * svg/animations/svglength-animation-px-to-number-expected.txt:
3252 * svg/animations/svglength-animation-px-to-pc-expected.txt:
3253 * svg/animations/svglength-animation-px-to-percentage-expected.txt:
3254 * svg/animations/svglength-animation-px-to-pt-expected.txt:
3255 * svg/animations/svglength-animation-px-to-px-expected.txt:
3256 * svg/animations/svglength-animation-values-expected.txt:
3257 * svg/animations/svglengthlist-animation-2-expected.txt:
3258 * svg/animations/svgnumberlist-animation-1-expected.txt:
3259 * svg/animations/svgnumberlist-animation-2-expected.txt:
3260 * svg/animations/svgpath-animation-1-expected.txt:
3261 * svg/animations/svgpointlist-animation-1-expected.txt:
3262 * svg/animations/svgpointlist-animation-2-expected.txt:
3263 * svg/animations/svgrect-animation-1-expected.txt:
3264 * svg/animations/svgrect-animation-2-expected.txt:
3265 * svg/animations/svgtransform-animation-1-expected.txt:
3267 2012-02-15 Philippe Normand <pnormand@igalia.com>
3269 Unreviewed, GTK rebaseline after r107785 and r107762. Also
3270 skipping a new SVG failure.
3272 * platform/gtk/Skipped:
3273 * platform/gtk/fast/dom/Window/window-properties-expected.txt:
3274 * platform/gtk/media/video-controls-rendering-expected.txt:
3275 * platform/gtk/media/video-zoom-expected.txt:
3277 2012-02-15 Csaba Osztrogonác <ossy@webkit.org>
3279 [Qt] Unreviewed morning gardening.
3281 * platform/qt/fast/dom/Range/surround-contents-font-face-crash-expected.txt: Added after r107749.
3282 * platform/qt/fast/dom/Window/window-properties-expected.txt: Updated after r107785.
3284 2012-02-15 Yuta Kitamura <yutak@chromium.org>
3286 WebSocket: MessageEvent fired during send() on workers
3287 https://bugs.webkit.org/show_bug.cgi?id=76521
3289 Reviewed by David Levin.
3291 * http/tests/websocket/tests/hybi/workers/no-onmessage-in-sync-op-expected.txt: Added.
3292 * http/tests/websocket/tests/hybi/workers/no-onmessage-in-sync-op.html: Added.
3293 * http/tests/websocket/tests/hybi/workers/resources/no-onmessage-in-sync-op.js:
3294 Added. The server sends messages immediately after the connection is established, but
3295 these messages should not be delivered until the script exits the current cycle of
3296 the event loop. The script calls a few synchronous operations to make sure we don't
3297 fire MessageEvents while we are waiting for these operations to finish.
3298 * http/tests/websocket/tests/hybi/workers/resources/no-onmessage-in-sync-op_wsh.py: Added.
3300 2012-02-15 Noel Gordon <noel.gordon@gmail.com>
3302 [chromium] Rebaseline JPEG image results after r107389
3303 https://bugs.webkit.org/show_bug.cgi?id=78454
3305 Unreviewed. Rebaseline #11 of N.
3307 * platform/chromium-linux/svg/custom/image-rescale-clip-expected.png:
3308 * platform/chromium-linux/svg/custom/image-rescale-clip-expected.txt: Removed.
3309 * platform/chromium-linux/svg/custom/image-rescale-scroll-expected.png:
3310 * platform/chromium-linux/svg/custom/image-rescale-scroll-expected.txt: Removed.
3311 * platform/chromium-mac-leopard/svg/custom/image-rescale-clip-expected.png:
3312 * platform/chromium-mac-leopard/svg/custom/image-rescale-scroll-expected.png:
3313 * platform/chromium-mac-snowleopard/svg/custom/image-rescale-clip-expected.png: Added.
3314 * platform/chromium-mac-snowleopard/svg/custom/image-rescale-expected.png: Added.
3315 * platform/chromium-mac-snowleopard/svg/custom/image-rescale-scroll-expected.png: Renamed from LayoutTests/platform/chromium-mac/svg/custom/image-rescale-scroll-expected.png.
3316 * platform/chromium-mac/svg/custom/image-rescale-clip-expected.png: Removed.
3317 * platform/chromium-mac/svg/custom/image-rescale-expected.png: Removed.
3318 * platform/chromium-win/svg/custom/image-rescale-clip-expected.png:
3319 * platform/chromium-win/svg/custom/image-rescale-expected.png:
3320 * platform/chromium-win/svg/custom/image-rescale-scroll-expected.png:
3321 * platform/chromium/test_expectations.txt:
3322 * platform/mac/svg/custom/image-rescale-expected.txt: Removed.
3323 * platform/qt/svg/custom/image-rescale-expected.txt: Removed.
3324 * svg/custom/image-rescale-expected.txt: Renamed from LayoutTests/platform/gtk/svg/custom/image-rescale-expected.txt.
3326 2012-02-14 Hao Zheng <zhenghao@chromium.org>
3328 Cleanup pending transaction queue in Database.
3329 https://bugs.webkit.org/show_bug.cgi?id=75048
3331 Reviewed by David Levin.
3333 As crash is fixed, trun BUGWK75048 into BUGWK75111, so that we can
3334 close 75048 and fix the timeout in 75111 for both DEBUG and RELEASE.
3336 REGRESSION(r103429) fast/workers/storage/use-same-database-in-page-and-workers.html asserts
3338 * platform/chromium/test_expectations.txt:
3340 2012-02-14 Kent Tamura <tkent@chromium.org>
3342 Stop using script-tests in LayoutTests/fast/forms
3343 https://bugs.webkit.org/show_bug.cgi?id=78667
3345 Reviewed by Kentaro Hara.
3347 * fast/forms/ValidityState-patternMismatch-unsupported.html:
3348 * fast/forms/ValidityState-rangeOverflow.html:
3349 * fast/forms/ValidityState-rangeUnderflow.html:
3350 * fast/forms/ValidityState-stepMismatch.html:
3351 * fast/forms/ValidityState-tooLong-input.html:
3352 * fast/forms/ValidityState-tooLong-textarea.html:
3353 * fast/forms/ValidityState-typeMismatch-date-expected.txt: Removed.
3354 * fast/forms/ValidityState-typeMismatch-url.html:
3355 * fast/forms/ValidityState-valueMissing-radio.html:
3356 * fast/forms/checkValidity-cancel.html:
3357 * fast/forms/checkValidity-handler-updates-dom.html:
3358 * fast/forms/form-attribute-elements-order.html:
3359 * fast/forms/form-attribute-elements-order2.html:
3360 * fast/forms/form-attribute-elements.html:
3361 * fast/forms/form-attribute.html:
3362 * fast/forms/form-collection-elements-order.html:
3363 * fast/forms/form-collection-elements.html:
3364 * fast/forms/formnovalidate-attribute.html:
3365 * fast/forms/incremental-dom-property.html:
3366 * fast/forms/input-maxlength-ime-completed.html:
3367 * fast/forms/input-maxlength-ime-preedit.html:
3368 * fast/forms/input-maxlength-unsupported.html:
3369 * fast/forms/input-minmax.html:
3370 * fast/forms/input-pattern.html:
3371 * fast/forms/input-step.html:
3372 * fast/forms/input-stepup-stepdown.html:
3373 * fast/forms/input-type-change3.html:
3374 * fast/forms/input-valueasnumber-unsupported.html:
3375 * fast/forms/labels-add-htmlFor-label.html:
3376 * fast/forms/labels-add-parent-label.html:
3377 * fast/forms/labels-change-htmlFor-attribute.html:
3378 * fast/forms/labels-item-index.html:
3379 * fast/forms/labels-remove-htmlFor-attribute.html:
3380 * fast/forms/labels-remove-htmlFor-label.html:
3381 * fast/forms/labels-remove-parent-label.html:
3382 * fast/forms/labels-set-htmlFor-attribute.html:
3383 * fast/forms/listbox-deselect-scroll.html:
3384 * fast/forms/listbox-selection-2.html:
3385 * fast/forms/listbox-selection.html:
3386 * fast/forms/menulist-disabled-selected-option.html:
3387 * fast/forms/menulist-submit-without-selection.html:
3388 * fast/forms/novalidate-attribute.html:
3389 * fast/forms/output-reset-assertion-failed.html:
3390 * fast/forms/placeholder-dom-property.html:
3391 * fast/forms/script-tests/TEMPLATE.html: Removed.
3392 * fast/forms/script-tests/ValidityState-patternMismatch-unsupported.js: Removed.
3393 * fast/forms/script-tests/ValidityState-rangeOverflow.js: Removed.
3394 * fast/forms/script-tests/ValidityState-rangeUnderflow.js: Removed.
3395 * fast/forms/script-tests/ValidityState-stepMismatch.js: Removed.
3396 * fast/forms/script-tests/ValidityState-tooLong-input.js: Removed.
3397 * fast/forms/script-tests/ValidityState-tooLong-textarea.js: Removed.
3398 * fast/forms/script-tests/ValidityState-typeMismatch-date.js: Removed.
3399 * fast/forms/script-tests/ValidityState-typeMismatch-url.js: Removed.
3400 * fast/forms/script-tests/ValidityState-valueMissing-radio.js: Removed.
3401 * fast/forms/script-tests/checkValidity-cancel.js: Removed.
3402 * fast/forms/script-tests/checkValidity-handler-updates-dom.js: Removed.
3403 * fast/forms/script-tests/form-attribute-elements-order.js: Removed.
3404 * fast/forms/script-tests/form-attribute-elements-order2.js: Removed.
3405 * fast/forms/script-tests/form-attribute-elements.js: Removed.
3406 * fast/forms/script-tests/form-attribute.js: Removed.
3407 * fast/forms/script-tests/form-collection-elements-order.js: Removed.
3408 * fast/forms/script-tests/form-collection-elements.js: Removed.
3409 * fast/forms/script-tests/formnovalidate-attribute.js: Removed.
3410 * fast/forms/script-tests/incremental-dom-property.js: Removed.
3411 * fast/forms/script-tests/input-maxlength-ime-completed.js: Removed.
3412 * fast/forms/script-tests/input-maxlength-ime-preedit.js: Removed.
3413 * fast/forms/script-tests/input-maxlength-unsupported.js: Removed.
3414 * fast/forms/script-tests/input-minmax.js: Removed.
3415 * fast/forms/script-tests/input-pattern.js: Removed.
3416 * fast/forms/script-tests/input-step.js: Removed.
3417 * fast/forms/script-tests/input-stepup-stepdown.js: Removed.
3418 * fast/forms/script-tests/input-type-change3.js: Removed.
3419 * fast/forms/script-tests/input-valueasnumber-unsupported.js: Removed.
3420 * fast/forms/script-tests/labels-add-htmlFor-label.js: Removed.
3421 * fast/forms/script-tests/labels-add-parent-label.js: Removed.
3422 * fast/forms/script-tests/labels-change-htmlFor-attribute.js: Removed.
3423 * fast/forms/script-tests/labels-item-index.js: Removed.
3424 * fast/forms/script-tests/labels-remove-htmlFor-attribute.js: Removed.
3425 * fast/forms/script-tests/labels-remove-htmlFor-label.js: Removed.
3426 * fast/forms/script-tests/labels-remove-parent-label.js: Removed.
3427 * fast/forms/script-tests/labels-set-htmlFor-attribute.js: Removed.
3428 * fast/forms/script-tests/listbox-deselect-scroll.js: Removed.
3429 * fast/forms/script-tests/listbox-selection-2.js: Removed.
3430 * fast/forms/script-tests/listbox-selection.js: Removed.
3431 * fast/forms/script-tests/menulist-disabled-selected-option.js: Removed.
3432 * fast/forms/script-tests/menulist-submit-without-selection.js: Removed.
3433 * fast/forms/script-tests/novalidate-attribute.js: Removed.
3434 * fast/forms/script-tests/output-reset-assertion-failed.js: Removed.
3435 * fast/forms/script-tests/placeholder-dom-property.js: Removed.
3436 * fast/forms/script-tests/search-cancel-button-events.js: Removed.
3437 * fast/forms/script-tests/select-set-length-optgroup.js: Removed.
3438 * fast/forms/script-tests/select-set-length-with-mutation-remove.js: Removed.
3439 * fast/forms/script-tests/select-set-length-with-mutation-reorder.js: Removed.
3440 * fast/forms/script-tests/select-set-length-with-mutation-reparent.js: Removed.
3441 * fast/forms/script-tests/select-set-length-with-mutation.js: Removed.
3442 * fast/forms/script-tests/select-set-length.js: Removed.
3443 * fast/forms/script-tests/setCustomValidity-existence.js: Removed.
3444 * fast/forms/script-tests/shadow-tree-exposure.js: Removed.
3445 * fast/forms/script-tests/submit-form-attributes.js: Removed.
3446 * fast/forms/script-tests/text-control-intrinsic-widths.js: Removed.
3447 * fast/forms/script-tests/textarea-maxlength.js: Removed.
3448 * fast/forms/script-tests/textarea-metrics.js: Removed.
3449 * fast/forms/script-tests/textarea-placeholder-dom-property.js: Removed.
3450 * fast/forms/script-tests/textarea-rows-cols.js: Removed.
3451 * fast/forms/script-tests/textarea-textlength.js: Removed.
3452 * fast/forms/script-tests/validationMessage.js: Removed.
3453 * fast/forms/script-tests/willvalidate.js: Removed.
3454 * fast/forms/search-cancel-button-events.html:
3455 * fast/forms/select-set-length-optgroup.html:
3456 * fast/forms/select-set-length-with-mutation-remove.html:
3457 * fast/forms/select-set-length-with-mutation-reorder.html:
3458 * fast/forms/select-set-length-with-mutation-reparent.html:
3459 * fast/forms/select-set-length-with-mutation.html:
3460 * fast/forms/select-set-length.html:
3461 * fast/forms/setCustomValidity-existence.html:
3462 * fast/forms/shadow-tree-exposure.html:
3463 * fast/forms/submit-form-attributes.html:
3464 * fast/forms/text-control-intrinsic-widths.html:
3465 * fast/forms/textarea-maxlength.html:
3466 * fast/forms/textarea-metrics.html:
3467 * fast/forms/textarea-placeholder-dom-property.html:
3468 * fast/forms/textarea-rows-cols.html:
3469 * fast/forms/textarea-textlength.html:
3470 * fast/forms/validationMessage.html:
3471 * fast/forms/willvalidate.html:
3473 2012-02-14 Noel Gordon <noel.gordon@gmail.com>
3475 [chromium] Rebaseline JPEG image results after r107389
3476 https://bugs.webkit.org/show_bug.cgi?id=78454
3478 Unreviewed. Rebaseline #10 of N.
3480 * platform/chromium-linux/svg/W3C-SVG-1.1/struct-image-01-t-expected.png:
3481 * platform/chromium-linux/svg/W3C-SVG-1.1/struct-image-02-b-expected.png:
3482 * platform/chromium-linux/svg/W3C-SVG-1.1/struct-image-04-t-expected.png:
3483 * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/struct-image-01-t-expected.png: Added.
3484 * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/struct-image-02-b-expected.png:
3485 * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/struct-image-04-t-expected.png: Added.
3486 * platform/chromium-mac/svg/W3C-SVG-1.1/struct-image-01-t-expected.png: Removed.
3487 * platform/chromium-mac/svg/W3C-SVG-1.1/struct-image-04-t-expected.png: Removed.
3488 * platform/chromium-win/svg/W3C-SVG-1.1/struct-image-01-t-expected.png:
3489 * platform/chromium-win/svg/W3C-SVG-1.1/struct-image-02-b-expected.png:
3490 * platform/chromium-win/svg/W3C-SVG-1.1/struct-image-04-t-expected.png:
3491 * platform/chromium/test_expectations.txt:
3493 2012-02-14 Kentaro Hara <haraken@chromium.org>
3495 [JSC] Cache the number of non-custom constructor arguments
3496 https://bugs.webkit.org/show_bug.cgi?id=78195
3498 Reviewed by Darin Adler.
3500 The added tests check the length property of constructors.
3501 The test fails for "flag-disabled" constructors.
3503 * fast/js/constructor-length.html: Added.
3504 * platform/mac/fast/js/constructor-length-expected.txt: Added.
3506 * platform/chromium/test_expectations.txt:
3507 * platform/efl/Skipped:
3508 * platform/gtk/Skipped:
3509 * platform/qt/Skipped:
3510 * platform/win/Skipped:
3511 * platform/wk2/Skipped:
3513 2012-02-14 Noel Gordon <noel.gordon@gmail.com>
3515 [chromium] Rebaseline JPEG image results after r107389
3516 https://bugs.webkit.org/show_bug.cgi?id=78454
3518 Unreviewed. Rebaseline #9 of N.
3520 * platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-30-t-expected.png:
3521 * platform/chromium-linux/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.png:
3522 * platform/chromium-linux/svg/W3C-SVG-1.1/filters-image-01-b-expected.png:
3523 * platform/chromium-mac-leopard/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.png:
3524 * platform/chromium-mac-leopard/svg/W3C-SVG-1.1/filters-image-01-b-expected.png:
3525 * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/animate-elem-30-t-expected.png:
3526 * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.png:
3527 * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.txt: Renamed from LayoutTests/platform/chromium/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.txt.
3528 * platform/chromium-mac-snowleopard/svg/W3C-SVG-1.1/filters-image-01-b-expected.png:
3529 * platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-30-t-expected.png:
3530 * platform/chromium-win/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.png:
3531 * platform/chromium-win/svg/W3C-SVG-1.1/filters-image-01-b-expected.png:
3532 * platform/chromium/test_expectations.txt:
3534 2012-02-14 Ami Fischman <fischman@chromium.org>
3536 Convert a couple of media layouttests to mock scrollbars & rebaseline
3537 https://bugs.webkit.org/show_bug.cgi?id=78634
3539 Unreviewed layouttest rebaselining.
3541 * platform/chromium-gpu-linux/media/video-controls-rendering-expected.png:
3542 * platform/chromium-gpu-linux/media/video-zoom-expected.png:
3543 * platform/chromium-gpu-mac/media/video-controls-rendering-expected.png:
3544 * platform/chromium-gpu-mac/media/video-zoom-expected.png:
3545 * platform/chromium-gpu-win/media/video-controls-rendering-expected.png:
3546 * platform/chromium-gpu-win/media/video-zoom-expected.png:
3547 * platform/chromium-linux/media/video-controls-rendering-expected.png:
3548 * platform/chromium-linux/media/video-zoom-expected.png:
3549 * platform/chromium-mac-leopard/media/video-controls-rendering-expected.png:
3550 * platform/chromium-mac-leopard/media/video-zoom-expected.png:
3551 * platform/chromium-mac-snowleopard/media/video-controls-rendering-expected.png:
3552 * platform/chromium-mac-snowleopard/media/video-zoom-expected.png:
3553 * platform/chromium-win/media/video-controls-rendering-expected.png:
3554 * platform/chromium-win/media/video-zoom-expected.png:
3555 * platform/chromium/test_expectations.txt:
3557 2012-02-14 Ryosuke Niwa <rniwa@webkit.org>
3559 Crash in deleteInsignificantText
3560 https://bugs.webkit.org/show_bug.cgi?id=78567
3562 Reviewed by Eric Seidel.
3564 Add a regression test.
3566 * editing/inserting/delete-insignificant-text-crash.html: Added.
3567 * editing/inserting/delete-insignificant-text-crash.txt: Added.
3569 2012-02-14 Noel Gordon <noel.gordon@gmail.com>
3571 [chromium] Rebaseline JPEG image results after r107389
3572 https://bugs.webkit.org/show_bug.cgi?id=78454
3574 Unreviewed. Rebaseline #8 of N.
3576 * platform/chromium-mac-snowleopard/fast/writing-mode/background-horizontal-bt-expected.png: Added.
3577 * platform/chromium-mac-snowleopard/fast/writing-mode/background-vertical-lr-expected.png: Added.
3578 * platform/chromium-mac-snowleopard/fast/writing-mode/background-vertical-rl-expected.png: Added.
3579 * platform/chromium-mac/fast/writing-mode/background-horizontal-bt-expected.png: Removed.
3580 * platform/chromium-mac/fast/writing-mode/background-vertical-lr-expected.png: Removed.
3581 * platform/chromium-mac/fast/writing-mode/background-vertical-rl-expected.png: Removed.
3582 * platform/chromium-win/fast/writing-mode/background-horizontal-bt-expected.png:
3583 * platform/chromium-win/fast/writing-mode/background-vertical-lr-expected.png:
3584 * platform/chromium-win/fast/writing-mode/background-vertical-rl-expected.png:
3585 * platform/chromium/test_expectations.txt:
3587 2012-02-14 Ryosuke Niwa <rniwa@webkit.org>
3589 Crash in WebCore::SVGElement::removedFromDocument
3590 https://bugs.webkit.org/show_bug.cgi?id=77270
3592 Reviewed by Adam Barth.
3594 Add a regression test for the crash.
3596 * fast/dom/Range/surround-contents-font-face-crash-expected.txt: Added.
3597 * fast/dom/Range/surround-contents-font-face-crash.svg: Added.
3599 2012-02-14 Ami Fischman <fischman@chromium.org>
3601 Convert a couple of media layouttests to mock scrollbars & rebaseline
3602 https://bugs.webkit.org/show_bug.cgi?id=78634
3604 Unreviewed test maintenance.
3606 * media/video-controls-rendering.html:
3607 * media/video-zoom.html:
3608 * platform/chromium/test_expectations.txt:
3610 2012-02-14 Joshua Bell <jsbell@chromium.org>
3612 IndexedDB: Invalid dates should not be valid keys
3613 https://bugs.webkit.org/show_bug.cgi?id=78622
3615 Reviewed by Tony Chang.
3617 * storage/indexeddb/factory-cmp-expected.txt:
3618 * storage/indexeddb/factory-cmp.html:
3619 * storage/indexeddb/invalid-keys-expected.txt:
3620 * storage/indexeddb/invalid-keys.html:
3622 2012-02-14 Ken Buchanan <kenrb@chromium.org>
3624 Crash from line break iterators in counter content
3625 https://bugs.webkit.org/show_bug.cgi?id=72977
3627 Reviewed by David Hyatt.
3629 Test that causes asterisk counters to change during layout
3630 and potentially confuse iterators.
3632 * fast/css/counters/asterisk-counter-update-after-layout-crash-expected.txt: Added
3633 * fast/css/counters/asterisk-counter-update-after-layout-crash.html: Added
3635 2012-02-14 Filip Pizlo <fpizlo@apple.com>
3637 Assertion failure under JSC::DFG::AbstractState::execute loading economist.com
3638 https://bugs.webkit.org/show_bug.cgi?id=78153
3639 <rdar://problem/10861712> <rdar://problem/10861947>
3641 Reviewed by Oliver Hunt.
3643 * fast/js/dfg-add-not-number-expected.txt: Added.
3644 * fast/js/dfg-add-not-number.html: Added.
3645 * fast/js/script-tests/dfg-add-not-number.js: Added.
3648 2012-02-14 Abhishek Arya <inferno@chromium.org>
3650 Crash in NavigationScheduler::schedule.
3651 https://bugs.webkit.org/show_bug.cgi?id=78297
3653 Reviewed by Adam Barth.
3655 * http/tests/navigation/navigation-redirect-schedule-crash-expected.txt: Added.
3656 * http/tests/navigation/navigation-redirect-schedule-crash.html: Added.
3658 2012-02-14 Alexis Menard <alexis.menard@openbossa.org>
3660 font shorthand with inherit keyword incorrectly parsed and rendered
3661 https://bugs.webkit.org/show_bug.cgi?id=20181
3663 Reviewed by Tony Chang.
3665 * fast/css/font-shorthand-mix-inherit-expected.txt: Added.
3666 * fast/css/font-shorthand-mix-inherit.html: Added.
3668 2012-02-14 Abhishek Arya <inferno@chromium.org>
3670 Crash due to incorrect firing of mutation event during class attribute parsing.
3671 https://bugs.webkit.org/show_bug.cgi?id=78537
3673 Reviewed by Ryosuke Niwa.
3675 * fast/dom/class-attr-change-double-mutation-fire-expected.txt: Added.
3676 * fast/dom/class-attr-change-double-mutation-fire.html: Added.
3678 2012-02-14 Mike Lawther <mikelawther@chromium.org>
3680 CSS3 calc: add isZero implementations to catch divide by zero
3681 https://bugs.webkit.org/show_bug.cgi?id=78603
3683 Reviewed by Ojan Vafai.
3685 * css3/calc/calc-errors-expected.txt:
3687 2012-02-14 Tony Chang <tony@chromium.org>
3689 [chromium] Unreviewed, marking a perf test as slow in debug and two
3690 gpu tests as failing in debug (different scrollbar rendering).
3692 * platform/chromium/test_expectations.txt:
3694 2012-02-14 Ami Fischman <fischman@chromium.org>
3696 [chromium] Layout Test media/media-document-audio-repaint.html is flaky
3697 https://bugs.webkit.org/show_bug.cgi?id=76580
3699 Reviewed by James Robinson.
3701 Make sure to call layoutTestController.display() at a stable point
3702 (namely when the media element is paused) so that any subsequent GPU
3703 disabling doesn't cause a complete redraw (and the test to be
3706 * media/media-document-audio-repaint.html:
3707 * platform/chromium/test_expectations.txt:
3709 2012-02-14 Timothy Hatcher <timothy@apple.com>
3711 Remove inspector/protocol/page-agent.html since it is inherently flaky.
3713 Filed https://webkit.org/b/78621 about devising a non-flaky test.
3717 * inspector/protocol/page-agent-expected.txt: Removed.
3718 * inspector/protocol/page-agent.html: Removed.
3719 * inspector/protocol/resources/dummy-iframe.html: Removed.
3720 * inspector/protocol/resources/empty.png: Removed.
3721 * inspector/protocol/resources/font1.ttf: Removed.
3722 * inspector/protocol/resources/font2.ttf: Removed.
3724 2012-02-14 Tony Chang <tony@chromium.org>
3726 [chromium] Unreviewed, mark some form tests as flaky.
3728 * platform/chromium/test_expectations.txt:
3730 2012-02-14 Timothy Hatcher <timothy@apple.com>
3732 Updated test results to exclude CachedResources that haven't downloaded.
3734 https://webkit.org/b/78447
3735 rdar://problem/10843542
3737 Reviewed by Brian Weinstein.
3739 * inspector/protocol/page-agent-expected.txt: Updated. There is now only one font list
3740 in the resources, when there was incorrectly two being listed. Only the font being used
3741 is the one that downloaded and is listed now.
3743 2012-02-14 Timothy Hatcher <timothy@apple.com>
3745 Test for Web Inspector: include failed and canceled in FrameResourceTree.
3747 https://webkit.org/b/78445
3749 Reviewed by Pavel Feldman.
3751 * inspector/protocol/page-agent-expected.txt: Added.
3752 * inspector/protocol/page-agent.html: Added.
3753 * inspector/protocol/resources/dummy-iframe.html: Added.
3754 * inspector/protocol/resources/empty.png: Added.
3755 * inspector/protocol/resources/font1.ttf: Added.
3756 * inspector/protocol/resources/font2.ttf: Added.
3758 2012-02-14 Kaustubh Atrawalkar <kaustubh@motorola.com>
3760 [GTK] fast/forms/implicit-submission.html fails
3761 https://bugs.webkit.org/show_bug.cgi?id=76632
3763 Reviewed by Martin Robinson.
3765 [Gtk] Rebaseline implicit-submission test expectations after r105253.
3767 * platform/gtk/Skipped:
3768 * platform/gtk/fast/forms/implicit-submission-expected.txt:
3770 2012-02-14 Philippe Normand <pnormand@igalia.com>
3772 Unreviewed, GTK rebaseline after r107688 and skipping some new
3775 * platform/gtk/Skipped:
3776 * platform/gtk/css3/calc/getComputedStyle-margin-percentage-expected.txt:
3778 2012-02-14 Vsevolod Vlasov <vsevik@chromium.org>
3780 Web Inspector: Make ScriptsNavigator default file selector.
3781 https://bugs.webkit.org/show_bug.cgi?id=78349
3783 Reviewed by Pavel Feldman.
3785 * http/tests/inspector/debugger-test.js:
3786 (initialize_DebuggerTest):
3787 (initialize_DebuggerTest.):
3788 * inspector/debugger/scripts-combobox-file-selector-history-expected.txt: Added.
3789 * inspector/debugger/scripts-combobox-file-selector-history.html: Added.
3790 * inspector/debugger/scripts-file-selector-expected.txt: Copied from LayoutTests/inspector/debugger/scripts-panel-expected.txt.
3791 * inspector/debugger/scripts-file-selector.html: Added.
3792 * inspector/debugger/scripts-panel-expected.txt:
3793 * inspector/debugger/scripts-panel.html:
3794 * inspector/debugger/scripts-sorting-expected.txt:
3795 * inspector/debugger/scripts-sorting.html:
3796 * inspector/debugger/source-frame-count.html:
3798 2012-02-14 Alexander Pavlov <apavlov@chromium.org>
3800 Elements panel needs to be able to preview images
3801 https://bugs.webkit.org/show_bug.cgi?id=21570
3803 Reviewed by Pavel Feldman.
3805 * inspector/elements/elements-img-tooltip-expected.txt:
3806 * inspector/elements/elements-img-tooltip.html:
3808 2012-02-14 Csaba Osztrogonác <ossy@webkit.org>
3810 [Qt] Unreviewed gardening.
3812 * platform/qt/Skipped: Typo fix, skip a new failing test.
3813 * platform/qt/css3/calc/getComputedStyle-margin-percentage-expected.txt: Updated after r107688.
3815 2012-02-14 Noel Gordon <noel.gordon@gmail.com>
3817 [chromium] Rebaseline JPEG image results after r107389
3818 https://bugs.webkit.org/show_bug.cgi?id=78454
3820 Unreviewed. Rebaseline #7 of N.
3822 * platform/chromium-linux/fast/replaced/width100percent-image-expected.png:
3823 * platform/chromium-mac-leopard/fast/replaced/width100percent-image-expected.png:
3824 * platform/chromium-mac-snowleopard/fast/replaced/width100percent-image-expected.png: Added.
3825 * platform/chromium-mac-snowleopard/platform/chromium/compositing/img-layer-grow-expected.png: Added.
3826 * platform/chromium-mac/fast/replaced/width100percent-image-expected.png: Removed.
3827 * platform/chromium-win/fast/replaced/width100percent-image-expected.png:
3828 * platform/chromium-win/platform/chromium/compositing/img-layer-grow-expected.png: Added.
3829 * platform/chromium/test_expectations.txt:
3831 2012-02-14 Hayato Ito <hayato@chromium.org>
3833 Make ShadowRoot.nodeType return DOCUMENT_FRAGMENT_NODE.
3834 https://bugs.webkit.org/show_bug.cgi?id=77514
3836 Reviewed by Dimitri Glazkov.
3838 NodeType.SHADOW_ROOT_NODE type is finally gone.
3840 * fast/dom/shadow/nodetype-expected.txt:
3841 * fast/dom/shadow/nodetype.html:
3842 * resources/dump-as-markup.js:
3845 2012-02-14 Nikolas Zimmermann <nzimmermann@rim.com>
3847 svg/hixie/perf has different repaint region in debug vs release
3848 https://bugs.webkit.org/show_bug.cgi?id=78516
3850 Reviewed by Hajime Morita.
3852 Based on patch by Tony Chang <tony@chromium.org>.
3854 The problem is the progress text in the lower right. It says,
3855 "Test in progress... X of 10". Depending on how fast the test runs,
3856 this text is never painted and the repaint region changes. Disable
3857 painting of the intermediate text and only include the final text.
3859 Extended Tonys original patch to cover all svg/hixie/perf tests that
3860 suffered from this issue - also avoid using setTimeout between the
3861 individual steps, as we're only interessted in the final repaint
3862 region, not the intermediate ones.
3864 * platform/mac/svg/hixie/perf/001-expected.png:
3865 * platform/mac/svg/hixie/perf/002-expected.png:
3866 * platform/mac/svg/hixie/perf/003-expected.png:
3867 * svg/hixie/perf/001.xml:
3868 * svg/hixie/perf/002.xml:
3869 * svg/hixie/perf/003.xml:
3870 * svg/hixie/perf/004.xml:
3871 * svg/hixie/perf/005.xml:
3872 * svg/hixie/perf/006.xml:
3874 2012-02-14 Nikolas Zimmermann <nzimmermann@rim.com>
3876 Not reviewed. Add mixing Lion pixel test result for a svg/carto.net test.
3878 * platform/mac/svg/carto.net/scrollbar-expected.png: Added.
3880 2012-02-14 Csaba Osztrogonác <ossy@webkit.org>
3882 [Qt] Unreviewed gardening, skip new failing tests.
3884 * platform/qt/Skipped:
3886 2012-02-14 Sheriff Bot <webkit.review.bot@gmail.com>
3888 Unreviewed, rolling out r107661.
3889 http://trac.webkit.org/changeset/107661
3890 https://bugs.webkit.org/show_bug.cgi?id=78591
3892 crash on lion/qt bots (Requested by hayato on #webkit).
3894 * fast/dom/shadow/nodetype-expected.txt:
3895 * fast/dom/shadow/nodetype.html:
3896 * resources/dump-as-markup.js:
3899 2012-02-14 Alexey Proskuryakov <ap@apple.com>
3901 [Mac][Win][WK2] Switch to RFC 6455 protocol for WebSockets
3902 https://bugs.webkit.org/show_bug.cgi?id=78541
3903 <rdar://problem/10036695>
3905 Reviewed by Kent Tamura.
3907 * http/tests/websocket/tests/hixie76/alert-in-event-handler.html:
3908 * http/tests/websocket/tests/hixie76/bad-handshake-crash.html:
3909 * http/tests/websocket/tests/hixie76/bad-sub-protocol-control-chars.html:
3910 * http/tests/websocket/tests/hixie76/bad-sub-protocol-empty.html:
3911 * http/tests/websocket/tests/hixie76/bad-sub-protocol-non-ascii.html:
3912 * http/tests/websocket/tests/hixie76/bufferedAmount-after-close.html:
3913 * http/tests/websocket/tests/hixie76/client-close.html:
3914 * http/tests/websocket/tests/hixie76/close-before-open.html:
3915 * http/tests/websocket/tests/hixie76/close-event.html:
3916 * http/tests/websocket/tests/hixie76/close-on-navigate-new-location.html:
3917 * http/tests/websocket/tests/hixie76/close-on-unload-and-force-gc.html:
3918 * http/tests/websocket/tests/hixie76/close-on-unload-reference-in-parent.html:
3919 * http/tests/websocket/tests/hixie76/close-on-unload.html:
3920 * http/tests/websocket/tests/hixie76/close-unref-websocket.html:
3921 * http/tests/websocket/tests/hixie76/cross-origin.html:
3922 * http/tests/websocket/tests/hixie76/error-detect.html:
3923 * http/tests/websocket/tests/hixie76/frame-length-longer-than-buffer.html:
3924 * http/tests/websocket/tests/hixie76/frame-length-overflow.html:
3925 * http/tests/websocket/tests/hixie76/frame-length-skip.html:
3926 * http/tests/websocket/tests/hixie76/frame-lengths.html:
3927 * http/tests/websocket/tests/hixie76/handshake-challenge-randomness.html:
3928 * http/tests/websocket/tests/hixie76/handshake-error.html:
3929 * http/tests/websocket/tests/hixie76/handshake-fail-by-cross-origin.html:
3930 * http/tests/websocket/tests/hixie76/handshake-fail-by-maxlength.html:
3931 * http/tests/websocket/tests/hixie76/handshake-fail-by-no-connection-header.html:
3932 * http/tests/websocket/tests/hixie76/handshake-fail-by-no-cr.html:
3933 * http/tests/websocket/tests/hixie76/handshake-fail-by-no-upgrade-header.html:
3934 * http/tests/websocket/tests/hixie76/handshake-fail-by-prepended-null.html:
3935 * http/tests/websocket/tests/hixie76/handshake-fail-by-sub-protocol-mismatch.html:
3936 * http/tests/websocket/tests/hixie76/long-invalid-header.html:
3937 * http/tests/websocket/tests/hixie76/multiple-connections.html:
3938 * http/tests/websocket/tests/hixie76/null-character.html:
3939 * http/tests/websocket/tests/hixie76/reload-crash.html:
3940 * http/tests/websocket/tests/hixie76/send-after-close-on-unload.html:
3941 * http/tests/websocket/tests/hixie76/send-empty.html:
3942 * http/tests/websocket/tests/hixie76/send-object.html:
3943 * http/tests/websocket/tests/hixie76/send-throw.html:
3944 * http/tests/websocket/tests/hixie76/send.html:
3945 * http/tests/websocket/tests/hixie76/server-close.html:
3946 * http/tests/websocket/tests/hixie76/simple-stress.html:
3947 * http/tests/websocket/tests/hixie76/simple.html:
3948 * http/tests/websocket/tests/hixie76/split-binary-frame-header.html:
3949 * http/tests/websocket/tests/hixie76/sub-protocol-with-space.html:
3950 * http/tests/websocket/tests/hixie76/sub-protocol.html:
3951 * http/tests/websocket/tests/hixie76/undefined-attributes.html:
3952 * http/tests/websocket/tests/hixie76/unicode.html:
3953 * http/tests/websocket/tests/hixie76/url-attribute.html:
3954 * http/tests/websocket/tests/hixie76/url-no-trailing-slash.html:
3955 * http/tests/websocket/tests/hixie76/url-parsing.html:
3956 * http/tests/websocket/tests/hixie76/url-with-credential.html:
3957 * http/tests/websocket/tests/hixie76/url-with-empty-query.html:
3958 * http/tests/websocket/tests/hixie76/url-with-query-for-no-query.html:
3959 * http/tests/websocket/tests/hixie76/url-with-query.html:
3960 * http/tests/websocket/tests/hixie76/websocket-event-target.html:
3961 * http/tests/websocket/tests/hixie76/websocket-pending-activity.html:
3962 * http/tests/websocket/tests/hixie76/websocket-protocol-ignored.html:
3963 * http/tests/websocket/tests/hixie76/workers/close-in-onmessage-crash.html:
3964 * http/tests/websocket/tests/hixie76/workers/close-in-shared-worker.html:
3965 * http/tests/websocket/tests/hixie76/workers/close-in-worker.html:
3966 * http/tests/websocket/tests/hixie76/workers/shared-worker-simple.html:
3967 * http/tests/websocket/tests/hixie76/workers/worker-handshake-challenge-randomness.html:
3968 * http/tests/websocket/tests/hixie76/workers/worker-simple.html:
3969 Added overridePreference calls, so that the tests don't depend on platform or DRT default.
3971 2012-02-14 Mike Lawther <mikelawther@chromium.org>
3973 CSS3 calc: embed calc expressions in CSSPrimitiveValue
3974 https://bugs.webkit.org/show_bug.cgi?id=78446
3976 Reviewed by Ojan Vafai.
3978 * css3/calc/block-mask-overlay-image-outset-expected.html: Renamed from LayoutTests/css3/ca