blob: 2df693b4b5e80318547c83787c9172d3d3efd5d9 [file] [log] [blame]
kenneth@webkit.orge365ada2009-10-01 18:14:24 +00001# =========================================================================== #
robert@webkit.org051adf82010-06-08 19:44:15 +00002# Categories of Skipped Tests #
3# =========================================================================== #
4#
5# Note:Try to add newly skipped tests to the appropriate category. If you create
6# a new category, be sure to list it here. If all else fails you can just
7# add to the 'unsorted' category at the bottom.
8# Where a test is a layout test, rather than plaintext, it can help to run
9# it with '--platform mac --ignore-metrics' and add or create a section
10# in the category to indicate whether it still failed.
11#
12# List of Categories:
13#
14# - Permanently Skipped Tests.
laszlo.1.gombos@nokia.com81aefba2011-06-03 08:22:42 +000015# - Disabled features.
robert@webkit.org051adf82010-06-08 19:44:15 +000016# - Feature not supported yet.
robert@webkit.orgb97bd2a2011-01-19 21:25:05 +000017# - Drag and Drop Support in DRT.
robert@webkit.org051adf82010-06-08 19:44:15 +000018# - Failing HTTP tests.
19# - Failing xmlhttprequest tests
20# - Failing inserting tests.
21# - Failing pasteboard tests.
22# - Failing plugins tests.
23# - Failing execCommand tests.
24# - Failing Sputnik tests
25# - Fluctuating/flakey tests
26# - failing media tests
27# - Crashing tests due to re-enabled Phonon support in Buildbot's Qt
28# - Missing features in our DumpRenderTree implementation
29# - failing editing/input tests
30# - Failing SVG tests
31# - failing animations tests
joepeck@webkit.orgb9481232010-08-04 02:29:16 +000032# - failing application cache quota tests
robert@webkit.org051adf82010-06-08 19:44:15 +000033# - Failing CSS Tests
34# - Failing dom/xhtml tests
35# - Failing editing/deleting tests
36# - Failing editing/selection tests.
37# - Failing editing/spelling tests
38# - failing editing/style tests
39# - failing undo tests
40# - failing unsupported-content tests
41# - failing fast tests
42# - failing fonts tests
robert@webkit.org051adf82010-06-08 19:44:15 +000043# - failing security tests
44# - failing tables tests
45# - Failed canvas tests from http://philip.html5.org/tests/canvas/suite/tests/
46# - failing transforms tests
47# - failing printing tests
robert@webkit.org051adf82010-06-08 19:44:15 +000048# - failing websocket tests
49# - new tests without expected results
ossy@webkit.org7f2f2222010-11-30 08:56:46 +000050# - Qt 4.7 related bugs
robert@webkit.org051adf82010-06-08 19:44:15 +000051# - new skipped tests yet to be sorted
52
53
54# =========================================================================== #
robert@webkit.org188a1262010-06-07 14:43:15 +000055# Permanently Skipped Tests. #
56# =========================================================================== #
57
58# ----- tests that use Objective-C so can never be supported
robert@webkit.org188a1262010-06-07 14:43:15 +000059editing/pasteboard/paste-RTFD.html
60editing/pasteboard/paste-TIFF.html
61
62# Skip mac API specific tests
63fast/loader/stop-provisional-loads.html
64
65# =========================================================================== #
laszlo.1.gombos@nokia.com81aefba2011-06-03 08:22:42 +000066# Disabled features. #
robert@webkit.org188a1262010-06-07 14:43:15 +000067# =========================================================================== #
laszlo.1.gombos@nokia.com81aefba2011-06-03 08:22:42 +000068
69# ENABLE(FULLSCREEN_API) is disabled.
70fullscreen
71
72# ENABLE(INPUT_COLOR) is disabled.
73fast/forms/color
74
75# ENABLE(INPUT_SPEECH) is disabled.
76fast/speech
77
78# ENABLE(MEDIA_STREAM) is disabled.
79fast/dom/MediaStream
80
81# ENABLE(DIRECTORY_UPLOAD) is disabled.
82fast/forms/input-file-directory-upload.html
83
84# ENABLE(INDEXED_DATABASE) is disabled.
85storage/indexeddb
86
87# ENABLE(REQUEST_ANIMATION_FRAME) is disabled.
88fast/animation
89
90# ENABLE(ANIMATION_API) is disabled.
91animations/animation-api-1.html
92
93# ENABLE(WEB_ARCHIVE) is disabled.
robert@webkit.org188a1262010-06-07 14:43:15 +000094svg/custom/image-with-prefix-in-webarchive.svg
95http/tests/webarchive
96webarchive
97svg/webarchive
98
laszlo.1.gombos@nokia.com81aefba2011-06-03 08:22:42 +000099# ENABLE(FILE_SYSTEM) is disabled.
100fast/filesystem
101http/tests/filesystem
102http/tests/security/filesystem-iframe-from-remote.html
103
104# ENABLE(QUOTA) is disabled.
105storage/storageinfo-query-usage.html
106storage/storageinfo-request-quota.html
107storage/storageinfo-no-callbacks.html
108
109# ENABLE(WEBGL) is disabled.
110http/tests/canvas/webgl
111compositing/webgl
112
113# ENABLE(LINK_PREFETCH) is disabled.
114fast/dom/HTMLLinkElement/link-and-subresource-test.html
115fast/dom/HTMLLinkElement/prefetch.html
116fast/dom/HTMLLinkElement/prefetch-beforeload.html
117fast/dom/HTMLLinkElement/prefetch-onerror.html
118fast/dom/HTMLLinkElement/prefetch-onload.html
119fast/dom/HTMLLinkElement/prefetch-too-many-clients.html
120fast/dom/HTMLLinkElement/prerender.html
121fast/dom/HTMLLinkElement/subresource.html
122http/tests/misc/link-rel-prefetch-and-subresource.html
123http/tests/misc/prefetch-purpose.html
124
125# ENABLE(DASHBOARD_SUPPORT) is disabled
126http/tests/xmlhttprequest/default-content-type-dashboard.html
127http/tests/xmlhttprequest/svg-created-by-xhr-disallowed-in-dashboard.html
128svg/custom/embedded-svg-disallowed-in-dashboard.xml
129svg/custom/manually-parsed-embedded-svg-disallowed-in-dashboard.html
130svg/custom/manually-parsed-svg-disallowed-in-dashboard.html
131svg/custom/svg-disallowed-in-dashboard-object.html
132
133# USE(V8)
134
135# v8 i18n extension.
136fast/js/i18n-bindings-locale.html
137
138# JSC does not support setIsolatedWorldSecurityOrigin, (http://webkit.org/b/61540)
139http/tests/security/isolatedWorld/cross-origin-xhr.html
140
adele@apple.comb9d22b12010-07-09 01:01:14 +0000141# This test is for clients that choose to make the missing plugin indicator a button
142plugins/clicking-missing-plugin-fires-delegate.html
143
commit-queue@webkit.orgc8368ca2011-03-12 05:38:13 +0000144# StorageTracker is not enabled.
145storage/domstorage/localstorage/storagetracker
146
robert@webkit.org188a1262010-06-07 14:43:15 +0000147# ----- No User Scripts
148userscripts
bweinstein@apple.comba391932010-09-30 06:26:13 +0000149plugins/plugin-document-load-prevented-userscript.html
robert@webkit.org188a1262010-06-07 14:43:15 +0000150
151# ------ Doesn't support WOFF yet.
152fast/css/font-face-woff.html
153
154# accessibility support
155accessibility
156
157# Tests requiring 3D_RENDERING and ACCELERATED_COMPOSITING support
158transforms/3d
159compositing
160
161fast/loader/subframe-navigate-during-main-frame-load.html
162
mitz@apple.comb2107652010-06-21 16:54:52 +0000163# Hyphenation is not implemented yet.
164fast/text/hyphenate-character.html
165fast/text/hyphens.html
ossy@webkit.orgccf3f742011-03-16 15:49:17 +0000166fast/text/soft-hyphen-4.html
vestbo@webkit.org6fa13582009-09-29 14:25:21 +0000167
commit-queue@webkit.org92c9cfa2010-08-23 09:49:29 +0000168# https://bugs.webkit.org/show_bug.cgi?id=43332
pfeldman@chromium.org003e6012011-02-15 10:55:28 +0000169inspector/debugger/dom-breakpoints.html
podivilov@chromium.orgeabad082011-03-17 15:46:27 +0000170inspector/debugger/event-listener-breakpoints.html
podivilov@chromium.org4fb37d12011-03-15 15:12:14 +0000171inspector/debugger/xhr-breakpoints.html
commit-queue@webkit.org92c9cfa2010-08-23 09:49:29 +0000172
podivilov@chromium.orgebf9d3a2011-02-28 18:23:06 +0000173# https://bugs.webkit.org/show_bug.cgi?id=40300
174inspector/debugger/live-edit.html
175
qi.2.zhang@nokia.com6d4b51c2011-06-06 23:31:52 +0000176# Needs rebaseline
bdakin@apple.com04df6372011-04-07 04:39:55 +0000177fast/repaint/scale-page-shrink.html
bdakin@apple.comde722882011-04-02 23:46:28 +0000178
kenneth@webkit.orge365ada2009-10-01 18:14:24 +0000179# =========================================================================== #
robert@webkit.orgb97bd2a2011-01-19 21:25:05 +0000180# Drag and Drop Support in DRT. #
181# =========================================================================== #
182# Drag n drop support on DRT cannot work at the moment because Qt's drag'n'drop
183# relies on an X event getting to the main window. In the absence of being able
184# to receive this event, running windowless, DRT cannot tell what is being dropped and where.
185# Bug: https://bugs.webkit.org/show_bug.cgi?id=31332
186
187http/tests/misc/bubble-drag-events.html
188http/tests/security/drag-over-remote-content-iframe.html
189http/tests/local/drag-over-remote-content.html
190http/tests/local/fileapi
191http/tests/security/drag-drop-same-unique-origin.html
commit-queue@webkit.org222d6cc2011-05-26 04:16:36 +0000192http/tests/misc/drag-not-loaded-image.html
robert@webkit.orgb97bd2a2011-01-19 21:25:05 +0000193# CONSOLE MESSAGE: line 72: TypeError: Result of expression 'eventSender.beginDragWithFiles' [undefined] is not a function.
194http/tests/local/blob/send-hybrid-blob.html
195http/tests/local/blob/send-sliced-data-blob.html
196http/tests/local/formdata
197
laszlo.1.gombos@nokia.com7a39f242011-06-04 11:35:00 +0000198fast/files/apply-blob-url-to-img.html
199fast/files/apply-blob-url-to-xhr.html
200fast/files/file-reader-abort.html
201fast/files/read-blob-async.html
202fast/files/read-file-async.html
203fast/files/workers/worker-apply-blob-url-to-xhr.html
204fast/files/workers/worker-read-blob-async.html
205fast/files/workers/worker-read-blob-sync.html
206fast/files/workers/worker-read-file-async.html
207fast/files/workers/worker-read-file-sync.html
208
robert@webkit.orgb97bd2a2011-01-19 21:25:05 +0000209editing/pasteboard/drag-image-in-about-blank-frame.html
210editing/pasteboard/files-during-page-drags.html
ossy@webkit.orgfa85c292011-06-01 11:03:05 +0000211editing/pasteboard/drag-drop-list.html
robert@webkit.orgb97bd2a2011-01-19 21:25:05 +0000212editing/pasteboard/4947130.html
213editing/pasteboard/copy-standalone-image.html
214editing/pasteboard/drag-drop-dead-frame.html
215editing/pasteboard/drag-drop-input-textarea.html
leo.yang@torchmobile.com.cn08a9c222011-05-25 01:26:53 +0000216editing/pasteboard/drag-drop-input-in-svg.svg
robert@webkit.orgb97bd2a2011-01-19 21:25:05 +0000217editing/pasteboard/drag-drop-iframe-refresh-crash.html
218editing/pasteboard/drag-drop-modifies-page.html
219editing/pasteboard/drag-drop-url-text.html
morrita@google.comccce70a2011-03-15 05:50:57 +0000220editing/pasteboard/drop-file-svg.html
robert@webkit.orgb97bd2a2011-01-19 21:25:05 +0000221editing/pasteboard/drag-image-to-contenteditable-in-iframe.html
222editing/pasteboard/drag-selected-image-to-contenteditable.html
223editing/pasteboard/drop-link.html
224editing/pasteboard/drop-text-without-selection.html
225editing/pasteboard/emacs-ctrl-a-k-y.html
226editing/pasteboard/emacs-ctrl-k-y-001.html
227editing/pasteboard/smart-drag-drop.html
228editing/pasteboard/subframe-dragndrop-1.html
229editing/pasteboard/get-data-text-plain-drop.html
230editing/pasteboard/drop-text-events.html
231editing/pasteboard/drop-text-events-sideeffect.html
232
ossy@webkit.org8424d092011-05-03 22:16:47 +0000233# data-transfer-items is not a default build option
234# See bug https://bugs.webkit.org/show_bug.cgi?id=60068
235editing/pasteboard/data-transfer-items.html
236
robert@webkit.orgb97bd2a2011-01-19 21:25:05 +0000237# Missing drag & drop functionality in DRT
238editing/pasteboard/drop-inputtext-acquires-style.html
239fast/css/user-drag-none.html
zimmermann@webkit.orgfc6a2362011-06-01 08:02:19 +0000240svg/as-image/drag-svg-as-image.html
robert@webkit.orgb97bd2a2011-01-19 21:25:05 +0000241fast/forms/slider-delete-while-dragging-thumb.html
242
dcheng@chromium.org122eceb2011-06-01 21:13:06 +0000243# EventSender::dumpFilenameBeingDragged not implemented.
244# https://bugs.webkit.org/show_bug.cgi?id=61828
245fast/events/drag-image-filename.html
246
robert@webkit.orgb97bd2a2011-01-19 21:25:05 +0000247# ------- missing drag-and-drop support
248# See bug https://bugs.webkit.org/show_bug.cgi?id=31332
249fast/events/drag-parent-node.html
250fast/events/drag-and-drop.html
251fast/events/drag-and-drop-dataTransfer-types-nocrash.html
252fast/events/drag-and-drop-fire-drag-dragover.html
253fast/events/ondrop-text-html.html
yael.aharon@nokia.com757e8e02011-05-27 12:48:21 +0000254fast/events/dropzone-001.html
255fast/events/dropzone-002.html
256fast/events/dropzone-003.html
257fast/events/dropzone-004.html
258
robert@webkit.orgb97bd2a2011-01-19 21:25:05 +0000259# caused by: http://trac.webkit.org/changeset/52192
260http/tests/misc/drag-over-iframe-invalid-source-crash.html
261
262# Missing eventSender.beginDragWithFiles()
263fast/dom/Window/window-postmessage-clone-frames.html
264
265# ------- missing eventSender.beginDragWithFiles
266editing/pasteboard/dataTransfer-setData-getData.html
267editing/pasteboard/file-drag-to-editable.html
268editing/pasteboard/file-input-files-access.html
269fast/dom/Window/window-postmessage-clone.html
270fast/events/drag-to-navigate.html
271fast/events/prevent-drag-to-navigate.html
272fast/forms/get-file-upload.html
273fast/forms/input-file-re-render.html
274fast/events/drag-file-crash.html
275http/tests/security/clipboard/clipboard-file-access.html
276
277# =========================================================================== #
robert@webkit.org4d3bffd2010-07-04 13:38:30 +0000278# Failing HTTP tests. #
279# =========================================================================== #
280
281# no expected results
robert@webkit.org188a1262010-06-07 14:43:15 +0000282http/tests/misc/favicon-as-image.html
robert@webkit.org4d3bffd2010-07-04 13:38:30 +0000283
robert@webkit.org188a1262010-06-07 14:43:15 +0000284# https://bugs.webkit.org/show_bug.cgi?id=34004
285# [Qt] http/tests/misc/slow-loading-mask.html timed out.
286http/tests/misc/slow-loading-mask.html
287
robert@webkit.orgb97bd2a2011-01-19 21:25:05 +0000288# https://bugs.webkit.org/show_bug.cgi?id=45455
robert@webkit.org188a1262010-06-07 14:43:15 +0000289http/tests/cookies/third-party-cookie-relaxing.html
290
robert@webkit.org188a1262010-06-07 14:43:15 +0000291# No authentication challenge handling
292http/tests/loading/basic-credentials-sent-automatically.html
293http/tests/loading/basic-auth-resend-wrong-credentials.html
294
robert@webkit.orgb97bd2a2011-01-19 21:25:05 +0000295# This needs more attention!
robert@webkit.org188a1262010-06-07 14:43:15 +0000296http/tests/misc/acid3.html
robert@webkit.org4d3bffd2010-07-04 13:38:30 +0000297
robert@webkit.orgb97bd2a2011-01-19 21:25:05 +0000298# Page reload does not send any cache control headers.
299# https://bugs.webkit.org/show_bug.cgi?id=45598
300# Fixed in Qt 4.8
robert@webkit.org188a1262010-06-07 14:43:15 +0000301http/tests/misc/refresh-headers.php
robert@webkit.org188a1262010-06-07 14:43:15 +0000302
robert@webkit.orgb97bd2a2011-01-19 21:25:05 +0000303# Benign pixel differences except for:
304# +selection start: position 0 of child 5 {IMG} of body
305# +selection end: position 1 of child 5 {IMG} of body
306# at end.
robert@webkit.org188a1262010-06-07 14:43:15 +0000307http/tests/security/dataTransfer-set-data-file-url.html
robert@webkit.orgb97bd2a2011-01-19 21:25:05 +0000308
309# Fails with a mysterious unrelated whitespace difference
310# We should find out what dumpAsText() is doing wrong
robert@webkit.org4d3bffd2010-07-04 13:38:30 +0000311http/tests/security/cross-frame-access-callback-explicit-domain-ALLOW.html
robert@webkit.orgb97bd2a2011-01-19 21:25:05 +0000312
robert@webkit.org4d3bffd2010-07-04 13:38:30 +0000313# - FAIL: Subframe did not finish loading.
robert@webkit.org188a1262010-06-07 14:43:15 +0000314http/tests/security/dataURL/xss-DENIED-to-data-url-sub-frame-uppercase.html
robert@webkit.org051adf82010-06-08 19:44:15 +0000315
kenneth@webkit.orge365ada2009-10-01 18:14:24 +0000316# Disabled HTTP subdirs for now, needs investigation.
kenneth@webkit.orge365ada2009-10-01 18:14:24 +0000317http/tests/media
kenneth@webkit.orge365ada2009-10-01 18:14:24 +0000318
robert@webkit.orgddd9ea52010-07-03 10:00:40 +0000319# --- Failing navigation tests
320#CONSOLE MESSAGE: line 1: ReferenceError: Can't find variable: fillTestForm
321#CONSOLE MESSAGE: line 1: ReferenceError: Can't find variable: scrollDocDown
322http/tests/navigation/javascriptlink-goback.html
323http/tests/navigation/metaredirect-goback.html
324http/tests/navigation/timerredirect-goback.html
325
robert@webkit.orgb97bd2a2011-01-19 21:25:05 +0000326# QtWebKit has no multipart support
327# https://bugs.webkit.org/show_bug.cgi?id=47059
328# https://webkit.org/b/47060
tony@chromium.orgc2d88fd2010-06-24 03:25:54 +0000329http/tests/multipart/invalid-image-data.html
ossy@webkit.orgb9765c12009-10-19 14:42:56 +0000330http/tests/multipart/invalid-image-data-standalone.html
robert@webkit.orge1934c62011-01-19 22:14:45 +0000331http/tests/misc/timer-vs-loading.html
tony@chromium.orgc2d88fd2010-06-24 03:25:54 +0000332http/tests/multipart/policy-ignore-crash.php
ossy@webkit.orgb9765c12009-10-19 14:42:56 +0000333
robert@webkit.org188a1262010-06-07 14:43:15 +0000334# =========================================================================== #
robert@webkit.org051adf82010-06-08 19:44:15 +0000335# Failing xmlhttprequest tests #
robert@webkit.org188a1262010-06-07 14:43:15 +0000336# =========================================================================== #
hausmann@webkit.orgfc43c8d2009-07-17 14:44:11 +0000337
robert@webkit.org051adf82010-06-08 19:44:15 +0000338# DRT sideeffect - this test make http/tests/xmlhttprequest/null-auth.php fail:
339# https://bugs.webkit.org/show_bug.cgi?id=32961
robert@webkit.orgf22ff112011-04-20 20:28:49 +0000340# Passes against Qt trunk (4e2d549e8b2e34c5bd4c77a4a6eba99ed0912168) but not 4.7.2
robert@webkit.org051adf82010-06-08 19:44:15 +0000341http/tests/xmlhttprequest/basic-auth-default.html
342
robert@webkit.org188a1262010-06-07 14:43:15 +0000343# Skip xmlhttprequest tests - NETWORK_ERR: XMLHttpRequest Exception 101: A network error occured in synchronous requests.
344http/tests/xmlhttprequest/logout.html
345http/tests/xmlhttprequest/methods-async.html
346http/tests/xmlhttprequest/workers/shared-worker-methods.html
larsaa8a9ac12007-10-24 12:33:19 +0000347
robert@webkit.org188a1262010-06-07 14:43:15 +0000348# Caused by the way Qt caches network connections using user@hostname as the key
349# See https://bugs.webkit.org/show_bug.cgi?id=37084 and http://bugreports.qt.nokia.com/browse/QTBUG-9619
robert@webkit.orgb97bd2a2011-01-19 21:25:05 +0000350# Fixed in Qt 4.8
robert@webkit.org188a1262010-06-07 14:43:15 +0000351http/tests/xmlhttprequest/re-login-async.html
352http/tests/xmlhttprequest/re-login.html
353
354# DRT sideeffect - this test make http/tests/xmlhttprequest/null-auth.php fail:
355# https://bugs.webkit.org/show_bug.cgi?id=32961
robert@webkit.orgf22ff112011-04-20 20:28:49 +0000356# Passes against Qt trunk (4e2d549e8b2e34c5bd4c77a4a6eba99ed0912168) but not 4.7.2
robert@webkit.org188a1262010-06-07 14:43:15 +0000357http/tests/xmlhttprequest/failed-auth.html
358
robert@webkit.org188a1262010-06-07 14:43:15 +0000359# Missing DRT ability to set accept cookie policy
robert@webkit.orgb97bd2a2011-01-19 21:25:05 +0000360# https://bugs.webkit.org/show_bug.cgi?id=45455
robert@webkit.org188a1262010-06-07 14:43:15 +0000361http/tests/xmlhttprequest/cross-origin-cookie-storage.html
362
ossy@webkit.org7f2f2222010-11-30 08:56:46 +0000363# Still fail with Qt 4.7.1
364http/tests/xmlhttprequest/cache-override.html
365http/tests/xmlhttprequest/cross-origin-authorization.html
366http/tests/xmlhttprequest/cross-origin-no-authorization.html
367http/tests/xmlhttprequest/methods-lower-case.html
368http/tests/xmlhttprequest/methods.html
369http/tests/xmlhttprequest/redirect-cross-origin-tripmine.html
370http/tests/xmlhttprequest/workers/methods-async.html
371http/tests/xmlhttprequest/workers/methods.html
372http/tests/xmlhttprequest/workers/shared-worker-methods-async.html
373
robert@webkit.org188a1262010-06-07 14:43:15 +0000374# =========================================================================== #
375# Failing inserting tests. #
376# =========================================================================== #
377# ---- rendertree results OK but suspicious diffs.
378editing/inserting/4960120-1.html
robert@webkit.org188a1262010-06-07 14:43:15 +0000379editing/inserting/before-after-input-element.html
380
381# ---- rendertree results OK but diff in editing delegate msgs.
382editing/inserting/insert-tab-003.html
383editing/inserting/insert-text-with-newlines.html
384# Missing textInputController.firstRectForCharacterRange()
385editing/inserting/caret-position.html
xji@chromium.org5fa610d2010-11-30 00:12:47 +0000386fast/dom/tab-in-right-alignment.html
justin.garcia@apple.com0ce73912011-01-10 05:46:56 +0000387svg/text/caret-in-svg-text.xhtml
robert@webkit.org188a1262010-06-07 14:43:15 +0000388
robert@webkit.org188a1262010-06-07 14:43:15 +0000389editing/inserting/5994480-2.html
commit-queue@webkit.org8a4754e2011-05-12 17:35:34 +0000390editing/inserting/typing-at-end-of-line.html
robert@webkit.org188a1262010-06-07 14:43:15 +0000391
ariya@webkit.orge2166ec2010-12-24 04:06:26 +0000392# http://bugreports.qt.nokia.com/browse/QTBUG-15566
393http/tests/xmlhttprequest/basic-auth-nouser.html
394
robert@webkit.org188a1262010-06-07 14:43:15 +0000395# =========================================================================== #
396# Failing pasteboard tests. #
397# =========================================================================== #
robert@webkit.org188a1262010-06-07 14:43:15 +0000398#------ safe to skip. Qt results same as chromium's. Mac drops the 'b' in the final bar,
399#------ that looks like a bug.
400editing/pasteboard/interchange-newline-2.html
robert@webkit.org188a1262010-06-07 14:43:15 +0000401# ----- Results appear correct but have suspicious rendertree differences.
402editing/pasteboard/pasting-tabs.html
robert@webkit.org188a1262010-06-07 14:43:15 +0000403# ----- Rendertree results OK but differences in editing delegate message due to rendering.
404# ----- This looks safe to unskip.
405editing/pasteboard/paste-xml.xhtml
dcheng@chromium.orge5c807a2011-03-08 04:49:37 +0000406
robert@webkit.org188a1262010-06-07 14:43:15 +0000407# =========================================================================== #
408# Failing plugins tests. #
409# =========================================================================== #
410
robert@webkit.org188a1262010-06-07 14:43:15 +0000411# ---- https://bugs.webkit.org/show_bug.cgi?id=36721
412plugins/get-url-with-blank-target.html
robert@webkit.org8b52a232010-06-13 13:29:34 +0000413
robert@webkit.orgce6930a2011-05-20 11:35:24 +0000414# ---- plugins rendered in incorrect position ?
robert@webkit.org188a1262010-06-07 14:43:15 +0000415plugins/embed-attributes-style.html
robert@webkit.orgce6930a2011-05-20 11:35:24 +0000416
robert@webkit.orgce6930a2011-05-20 11:35:24 +0000417# https://bugs.webkit.org/show_bug.cgi?id=60722
commit-queue@webkit.org21c56c12011-05-15 14:07:35 +0000418http/tests/plugins/plugin-document-has-focus.html
robert@webkit.org188a1262010-06-07 14:43:15 +0000419
robert@webkit.orgce6930a2011-05-20 11:35:24 +0000420# [Qt] wrong ref count of npobject
421# https://bugs.webkit.org/show_bug.cgi?id=49749
422plugins/refcount-leaks.html
423
424# https://bugs.webkit.org/show_bug.cgi?id=45455
425http/tests/plugins/third-party-cookie-accept-policy.html
robert@webkit.org188a1262010-06-07 14:43:15 +0000426
427# =========================================================================== #
428# Failing Sputnik tests #
429# =========================================================================== #
jamesr@google.com9476e9b2011-02-08 03:55:13 +0000430sputnik/Conformance/15_Native_Objects/15.4_Array/15.4.4/15.4.4.12_Array_prototype_splice/S15.4.4.12_A2.1_T3.html
431sputnik/Conformance/15_Native_Objects/15.9_Date/15.9.3/S15.9.3.1_A5_T1.html
432sputnik/Conformance/15_Native_Objects/15.9_Date/15.9.3/S15.9.3.1_A5_T2.html
433sputnik/Conformance/15_Native_Objects/15.9_Date/15.9.3/S15.9.3.1_A5_T3.html
434sputnik/Conformance/15_Native_Objects/15.9_Date/15.9.3/S15.9.3.1_A5_T4.html
435sputnik/Conformance/15_Native_Objects/15.9_Date/15.9.3/S15.9.3.1_A5_T5.html
436sputnik/Conformance/15_Native_Objects/15.9_Date/15.9.3/S15.9.3.1_A5_T6.html
437sputnik/Unicode/Unicode_500/S7.6_A3.1.html
438sputnik/Unicode/Unicode_500/S7.6_A3.2.html
439sputnik/Unicode/Unicode_500/S7.6_A5.3_T1.html
440sputnik/Unicode/Unicode_500/S7.6_A5.3_T2.html
441sputnik/Unicode/Unicode_510/S15.5.4.16_A1.html
442sputnik/Unicode/Unicode_510/S15.5.4.18_A1.html
443sputnik/Unicode/Unicode_510/S7.6_A1.1_T1.html
444sputnik/Unicode/Unicode_510/S7.6_A1.1_T2.html
445sputnik/Unicode/Unicode_510/S7.6_A1.1_T4.html
446sputnik/Unicode/Unicode_510/S7.6_A2.2_T1.html
447sputnik/Unicode/Unicode_510/S7.6_A2.2_T2.html
448sputnik/Unicode/Unicode_510/S7.6_A2.3.html
449sputnik/Unicode/Unicode_510/S7.6_A3.1.html
450sputnik/Unicode/Unicode_510/S7.6_A3.2.html
451sputnik/Unicode/Unicode_510/S7.6_A5.2_T1.html
452sputnik/Unicode/Unicode_510/S7.6_A5.2_T2.html
453sputnik/Unicode/Unicode_510/S7.6_A5.2_T4.html
454sputnik/Unicode/Unicode_510/S7.6_A5.2_T7.html
455sputnik/Unicode/Unicode_510/S7.6_A5.2_T8.html
456sputnik/Unicode/Unicode_510/S7.6_A5.2_T9.html
457sputnik/Unicode/Unicode_510/S7.6_A5.3_T1.html
458sputnik/Unicode/Unicode_510/S7.6_A5.3_T2.html
robert@webkit.org188a1262010-06-07 14:43:15 +0000459
460# Failing Sputnik tests on 32 bit
jamesr@google.com9476e9b2011-02-08 03:55:13 +0000461sputnik/Conformance/15_Native_Objects/15.8_Math/15.8.2/15.8.2.16_sin/S15.8.2.16_A7.html
462sputnik/Conformance/15_Native_Objects/15.8_Math/15.8.2/15.8.2.18_tan/S15.8.2.18_A7.html
robert@webkit.org188a1262010-06-07 14:43:15 +0000463
464# Failing Sputnik test on 64 bit
jamesr@google.com9476e9b2011-02-08 03:55:13 +0000465sputnik/Conformance/11_Expressions/11.5_Multiplicative_Operators/11.5.3_Percent/S11.5.3_A4_T2.html
robert@webkit.org188a1262010-06-07 14:43:15 +0000466
467# Timed out Sputnik tests on ARM
jamesr@google.com9476e9b2011-02-08 03:55:13 +0000468sputnik/Unicode/Unicode_218/S7.6_A3.1.html
469sputnik/Unicode/Unicode_218/S7.6_A3.2.html
470sputnik/Unicode/Unicode_218/S7.6_A5.3_T1.html
471sputnik/Unicode/Unicode_218/S7.6_A5.3_T2.html
robert@webkit.org188a1262010-06-07 14:43:15 +0000472
473# =========================================================================== #
ossy@webkit.org0627c412009-10-26 12:32:10 +0000474# Fluctuating/flakey tests
robert@webkit.org188a1262010-06-07 14:43:15 +0000475# =========================================================================== #
ossy@webkit.org5c835582010-01-04 10:05:07 +0000476animations/3d/transform-origin-vs-functions.html
hausmann@webkit.orge66110c2009-09-22 13:16:17 +0000477animations/change-one-anim.html
ossy@webkit.org2d266ea2009-12-08 00:59:30 +0000478fast/frames/sandboxed-iframe-plugins.html
ossy@webkit.org94880d32009-12-10 07:29:40 +0000479fast/frames/sandboxed-iframe-scripting.html
ossy@webkit.org3c47f422009-12-11 17:30:08 +0000480fast/frames/sandboxed-iframe-storage.html
ossy@webkit.org0627c412009-10-26 12:32:10 +0000481http/tests/cookies/simple-cookies-max-age.html
ossy@webkit.orgee20b072009-12-26 09:40:23 +0000482http/tests/cookies/simple-cookies-expired.html
ossy@webkit.org0627c412009-10-26 12:32:10 +0000483http/tests/xmlhttprequest/workers/close.html
ossy@webkit.org6b34fc02009-10-26 17:54:28 +0000484http/tests/xmlhttprequest/workers/shared-worker-close.html
ossy@webkit.org3da4ced2010-02-16 23:55:05 +0000485
ossy@webkit.org576ee872009-10-26 17:10:26 +0000486transitions/change-values-during-transition.html
vestbo@webkit.orgce2d8662009-09-03 16:09:54 +0000487
abecsi@webkit.orge8b53b52010-07-13 13:43:06 +0000488# http/tests/inspector/resource-har-conversion.html is failing on the release bot after r63191
489# webkit.org/b/42162
490http/tests/inspector/resource-har-conversion.html
491
yurys@chromium.org6db63822011-03-16 08:18:29 +0000492# [Qt] Some inspector test fail intermittently
493# https://bugs.webkit.org/show_bug.cgi?id=42090
494http/tests/inspector/network/network-size.html
495# This test consistently fails if run with --singly flag
496inspector/timeline/timeline-paint.html
497
498# https://bugs.webkit.org/show_bug.cgi?id=56453
499# This test will fail if it's the first inspector test to run.
500inspector/styles/styles-add-blank-property.html
501
502# [Qt] New fails caused by change(s) between r79317-r79320.
yurys@chromium.org6db63822011-03-16 08:18:29 +0000503http/tests/inspector/change-iframe-src.html
podivilov@chromium.orgf4d0ae12011-03-30 13:53:58 +0000504inspector/debugger/open-close-open.html
yurys@chromium.org6db63822011-03-16 08:18:29 +0000505
yurys@chromium.org8b852cc2011-05-20 16:15:08 +0000506# [Qt] This tests' fails probably has same reason as test inspector/debugger/open-close-open.html.
507http/tests/inspector/network/network-open-load-reopen.html
508http/tests/inspector/network/network-close-load-open.html
509http/tests/inspector/network/network-clear-after-disabled.html
510
robert@webkit.org188a1262010-06-07 14:43:15 +0000511# [Qt] fast/frames/flattening/frameset-flattening-subframesets.html fails intermittently on Qt bot
512# Fails caused by layoutTestController.display() in fast/frames/flattening/frameset-flattening-subframe-resize.html
513# https://bugs.webkit.org/show_bug.cgi?id=37334
514
robert@webkit.org188a1262010-06-07 14:43:15 +0000515# Tests that currently fail but perhaps used to work at some point.
516fast/dom/open-and-close-by-DOM.html
517fast/dom/Window/new-window-opener.html
518fast/forms/001.html
519fast/forms/focus2.html
robert@webkit.org188a1262010-06-07 14:43:15 +0000520fast/frames/001.html
521fast/text/monospace-width-cache.html
522
523# Tests that fail randomly. Is this style related?
524fast/forms/listbox-width-change.html
525fast/forms/plaintext-mode-2.html
526fast/forms/menulist-width-change.html
527
ossy@webkit.org33fb4ee2011-04-08 07:21:32 +0000528# Flaky Test: fast/events/tabindex-focus-blur-all.html
529# https://bugs.webkit.org/show_bug.cgi?id=52115
530fast/events/tabindex-focus-blur-all.html
531
robert@webkit.org188a1262010-06-07 14:43:15 +0000532# =========================================================================== #
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000533# failing media tests
robert@webkit.org188a1262010-06-07 14:43:15 +0000534# =========================================================================== #
robert@webkit.org051adf82010-06-08 19:44:15 +0000535
ossy@webkit.org22df4672011-04-06 21:31:55 +0000536# [Qt] media tests are flakey
537# https://bugs.webkit.org/show_bug.cgi?id=57983
538media
539
robert@webkit.org051adf82010-06-08 19:44:15 +0000540# https://bugs.webkit.org/show_bug.cgi?id=38376
541media/media-document-audio-size.html
542
543media/invalid-media-url-crash.html
544
545# [Qt] media/media-can-play-ogg.html crashes intermittently on the bot
546# https://bugs.webkit.org/show_bug.cgi?id=39481
547media/audio-only-video-intrinsic-size.html
548
ossy@webkit.org4fb14282011-02-23 11:05:43 +0000549# [Qt] media/controls-without-preload.html is flakey
550# https://bugs.webkit.org/show_bug.cgi?id=55028
551media/controls-without-preload.html
552
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000553media/audio-controls-rendering.html
alexis.menard@openbossa.org54ce7432011-04-06 18:50:06 +0000554media/video-currentTime.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000555media/audio-data-url.html
alexis.menard@openbossa.org54ce7432011-04-06 18:50:06 +0000556media/audio-delete-while-slider-thumb-clicked.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000557media/audio-delete-while-step-button-clicked.html
alexis.menard@openbossa.org54ce7432011-04-06 18:50:06 +0000558media/audio-mpeg-supported.html
559media/audio-mpeg4-supported.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000560media/audio-no-installed-engines.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000561media/controls-after-reload.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000562media/controls-drag-timebar.html
563media/controls-right-click-on-timebar.html
564media/controls-strict.html
565media/controls-styling.html
566media/event-attributes.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000567media/media-captions.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000568media/media-fullscreen-inline.html
569media/media-fullscreen-not-in-document.html
570media/media-load-event.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000571media/unsupported-rtsp.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000572media/video-aspect-ratio.html
573media/video-autoplay.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000574media/video-canvas-source.html
andreas.kling@nokia.com6d0d3ff2010-10-29 23:44:29 +0000575media/video-canvas-alpha.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000576media/video-click-dblckick-standalone.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000577media/video-controls-rendering.html
578media/video-controls-transformed.html
579media/video-controls-visible-audio-only.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000580media/video-controls-zoomed.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000581media/video-currentTime-set.html
582media/video-display-aspect-ratio.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000583media/video-display-toggle.html
584media/video-document-types.html
philn@webkit.org5fe02362010-05-03 15:18:31 +0000585media/video-duration-known-after-eos.html
inferno@chromium.org5f2ea742010-12-30 08:29:04 +0000586media/video-element-other-namespace-crash.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000587media/video-empty-source.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000588media/video-layer-crash.html
589media/video-load-networkState.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000590media/video-loop.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000591media/video-no-audio.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000592media/video-pause-empty-events.html
alexis.menard@openbossa.org54ce7432011-04-06 18:50:06 +0000593media/video-pause-immediately.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000594media/video-played-collapse.html
595media/video-played-ranges-1.html
596media/video-played-reset.html
597media/video-play-empty-events.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000598media/video-replaces-poster.html
599media/video-reverse-play-duration.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000600media/video-seeking.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000601media/video-seek-past-end-paused.html
602media/video-seek-past-end-playing.html
603media/video-size.html
604media/video-size-intrinsic-scale.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000605media/video-source-error.html
606media/video-source-error-no-candidate.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000607media/video-source-type.html
608media/video-source-type-params.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000609media/video-timeupdate-during-playback.html
610media/video-timeupdate-reverse-play.html
611media/video-transformed.html
jwieczorek@webkit.org35dfeff2010-03-22 18:40:58 +0000612media/video-volume-slider.html
613media/video-width-height.html
614media/video-zoom-controls.html
615media/video-zoom.html
616
vestbo@webkit.org27e2a152010-08-17 21:36:26 +0000617# Video size reported as 0,0 due to how size-hints are reported by QtMultimedia
618media/video-poster-delayed.html
619
eric.carlson@apple.come28be342010-08-30 17:18:32 +0000620# Test specific to QuickTime media engine
621media/video-does-not-loop.html
622
philn@webkit.org8212a4f2010-09-02 08:25:45 +0000623# https://bugs.webkit.org/show_bug.cgi?id=45093
624media/media-can-play-mpeg4-video.html
625
eric.carlson@apple.com501c3c92010-11-01 18:18:43 +0000626# https://bugs.webkit.org/show_bug.cgi?id=48617
627media/video-seek-by-small-increment.html
628
philn@webkit.org6b4764e2010-12-07 20:47:00 +0000629# requires video.buffered to be able to return multiple timeranges
630http/tests/media/video-buffered.html
631
robert@webkit.org188a1262010-06-07 14:43:15 +0000632# ============================================================================= #
633# Crashing tests due to re-enabled Phonon support in Buildbot's Qt #
634# Skip these until a proper solution for the Phonon related crashes found. #
635# ============================================================================= #
ossy@webkit.orga7b93ac2009-12-04 10:37:26 +0000636#reproducible command: WebKitTools/Scripts/run-webkit-tests fast/runin/nonblock-runin.html fast/table/
637#crashed: fast/table/"random_test"
638#crasher:
639fast/runin/nonblock-runin.html
640
641#reproducible command: WebKitTools/Scripts/run-webkit-tests http/tests/security/local-video-source-from-remote.html http/tests/security/local-video-src-from-remote.html
642#crashed: http/tests/security/local-video-src-from-remote.html
643#crasher:
644http/tests/security/local-video-source-from-remote.html
645
vestbo@webkit.orgafc50122009-09-04 15:34:44 +0000646# ============================================================================= #
647# Missing features in our DumpRenderTree implementation #
648# ============================================================================= #
649
robert@webkit.org188a1262010-06-07 14:43:15 +0000650# DumpRenderTree code to enable Java is currently a no-op
651java
652
653# Missing DRT ability to override 'standard' preferences.
654fast/dom/Window/timer-resume-on-navigation-back.html
655loader/go-back-to-different-window-size.html
656
aroben@apple.com9a725132010-11-30 15:25:59 +0000657# Missing layoutTestController.findString() http://webkit.org/b/50236
mitz@apple.comb642f7c2010-11-30 07:25:39 +0000658editing/text-iterator/findString.html
659
ossy@webkit.orgdc9d7332009-10-20 14:25:31 +0000660# Missing layoutTestController.setAlwaysAcceptCookies()
ossy@webkit.org17aff382009-10-26 11:58:58 +0000661http/tests/xmlhttprequest/access-control-basic-allow-preflight-cache-timeout.html
ossy@webkit.orgdc9d7332009-10-20 14:25:31 +0000662
ossy@webkit.org4032abd2010-12-08 11:23:34 +0000663# Missing layoutTestController.testRepaint()
664fast/repaint/table-writing-modes-h.html
665fast/repaint/table-writing-modes-v.html
ossy@webkit.orgc22c2772010-12-20 09:23:58 +0000666fast/repaint/text-emphasis-h.html
667fast/repaint/text-emphasis-v.html
ossy@webkit.org4032abd2010-12-08 11:23:34 +0000668
robert@webkit.orgd1b70442010-06-19 11:02:54 +0000669# This requires didClearWindowObjectForFrameInIsolatedWorld foo in FrameLoaderClient
670http/tests/security/isolatedWorld/didClearWindowObject.html
671# This needs more investigation
672http/tests/security/isolatedWorld/world-reuse.html
ossy@webkit.org420f04c2010-01-22 12:56:31 +0000673
ossy@webkit.org2df68bd2010-04-19 16:41:05 +0000674# Missing layoutTestController.dumpWillCacheResponse
675http/tests/misc/willCacheResponse-delegate-callback.html
vestbo@webkit.orgafc50122009-09-04 15:34:44 +0000676
ossy@webkit.orgfd8bb222010-12-15 08:10:13 +0000677# Missing layoutTestController.setHandlesAuthenticationChallenges()
678http/tests/misc/authentication-sent-to-redirect.html
679
ossy@webkit.orgb9765c12009-10-19 14:42:56 +0000680# ------- broken ICO file decoding
681fast/images/favicon-as-image.html
682fast/images/icon-0colors.html
683fast/images/icon-decoding.html
684
ossy@webkit.org5de99582009-11-09 11:08:58 +0000685# ------- missing ruby annotation support for japanese fonts
rolandsteiner@chromium.org131f3582010-10-13 07:25:57 +0000686fast/ruby/ruby-beforeafter.html
ossy@webkit.org5de99582009-11-09 11:08:58 +0000687fast/ruby/ruby-empty-rt.html
688fast/ruby/ruby-length.html
689fast/ruby/ruby-run-break.html
690fast/ruby/ruby-runs-spans.html
691fast/ruby/ruby-runs.html
692fast/ruby/ruby-simple-rp.html
693fast/ruby/ruby-simple.html
694fast/ruby/ruby-trailing.html
695fast/ruby/rubyDOM-insert-rt.html
696fast/ruby/rubyDOM-insert-text1.html
697fast/ruby/rubyDOM-insert-text2.html
698fast/ruby/rubyDOM-insert-text3.html
699fast/ruby/rubyDOM-remove-rt1.html
700fast/ruby/rubyDOM-remove-rt2.html
701fast/ruby/rubyDOM-remove-text1.html
702fast/ruby/rubyDOM-remove-text2.html
703
ossy@webkit.orga5d0ad02011-04-13 00:18:04 +0000704# [Qt] http/tests/misc/favicon-loads-with-icon-loading-override.html fails
705# https://bugs.webkit.org/show_bug.cgi?id=58396
706http/tests/misc/favicon-loads-with-icon-loading-override.html
707
robert@webkit.org188a1262010-06-07 14:43:15 +0000708# ============================================================================= #
robert@webkit.org188a1262010-06-07 14:43:15 +0000709# Failing SVG tests
710# ============================================================================= #
robert@webkit.org051adf82010-06-08 19:44:15 +0000711
712svg/batik/filters/feTile.svg
713
robert@webkit.org188a1262010-06-07 14:43:15 +0000714svg/dom/length-list-parser.html
715svg/css/group-with-shadow.svg
716svg/filters/big-sized-filter-2.svg
717svg/filters/big-sized-filter.svg
718svg/filters/feDisplacementMap.svg
719svg/filters/filterRes.svg
720svg/css/composite-shadow-example.html
721svg/css/composite-shadow-with-opacity.html
larsfe7751b2007-10-05 08:57:06 +0000722
robert@webkit.org188a1262010-06-07 14:43:15 +0000723# --- to be reviewed
724svg/batik/filters/filterRegions.svg
725svg/batik/masking/maskRegions.svg
726svg/batik/paints/gradientLimit.svg
727svg/batik/paints/patternPreserveAspectRatioA.svg
728svg/batik/paints/patternRegionA.svg
729svg/batik/paints/patternRegions.svg
730svg/batik/text/longTextOnPath.svg
731svg/batik/text/smallFonts.svg
732svg/batik/text/textAnchor2.svg
733svg/batik/text/textAnchor3.svg
734svg/batik/text/textAnchor.svg
735svg/batik/text/textDecoration2.svg
736svg/batik/text/textEffect2.svg
737svg/batik/text/textEffect3.svg
738svg/batik/text/textEffect.svg
739svg/batik/text/textFeatures.svg
740svg/batik/text/textGlyphOrientationHorizontal.svg
741svg/batik/text/textLayout2.svg
742svg/batik/text/textLayout.svg
743svg/batik/text/textLength.svg
744svg/batik/text/textOnPath2.svg
745svg/batik/text/textOnPath3.svg
746svg/batik/text/textOnPathSpaces.svg
747svg/batik/text/textOnPath.svg
748svg/batik/text/textPCDATA.svg
749svg/batik/text/textPosition2.svg
750svg/batik/text/textPosition.svg
751svg/batik/text/textProperties2.svg
752svg/batik/text/textProperties.svg
753svg/batik/text/textStyles.svg
754svg/batik/text/verticalTextOnPath.svg
755svg/batik/text/verticalText.svg
756svg/batik/text/xmlSpace.svg
robert@webkit.org188a1262010-06-07 14:43:15 +0000757svg/custom/group-opacity.svg
robert@webkit.org188a1262010-06-07 14:43:15 +0000758svg/custom/hit-test-with-br.xhtml
robert@webkit.org188a1262010-06-07 14:43:15 +0000759svg/custom/text-linking.svg
ossy@webkit.org05ae9dd2011-02-18 23:42:03 +0000760svg/custom/feComponentTransfer-Discrete.svg
761svg/custom/feComponentTransfer-Gamma.svg
762svg/custom/feComponentTransfer-Linear.svg
763svg/custom/feComponentTransfer-Table.svg
764svg/custom/feDisplacementMap-01.svg
765svg/custom/foreign-object-skew.svg
766svg/custom/grayscale-gradient-mask.svg
767svg/custom/js-late-clipPath-and-object-creation.svg
768svg/custom/js-late-clipPath-creation.svg
769svg/custom/js-late-pattern-and-object-creation.svg
770svg/custom/js-late-pattern-creation.svg
771svg/custom/junk-data.svg
ossy@webkit.org05ae9dd2011-02-18 23:42:03 +0000772svg/custom/missing-xlink.svg
773svg/custom/path-bad-data.svg
774svg/custom/percentage-rect.svg
775svg/custom/pointer-events-image.svg
ossy@webkit.org05ae9dd2011-02-18 23:42:03 +0000776svg/custom/visibility-override-filter.svg
777svg/custom/stroke-width-click.svg
778svg/css/css-box-min-width.html
robert@webkit.org188a1262010-06-07 14:43:15 +0000779svg/hixie/dynamic/005.xml
robert@webkit.org188a1262010-06-07 14:43:15 +0000780svg/hixie/error/013.xml
781svg/hixie/processing-model/003.xml
782svg/hixie/processing-model/004.xml
robert@webkit.org188a1262010-06-07 14:43:15 +0000783svg/text/text-fonts-01-t.svg
robert@webkit.org188a1262010-06-07 14:43:15 +0000784svg/text/text-intro-05-t.svg
robert@webkit.org188a1262010-06-07 14:43:15 +0000785svg/text/text-tselect-02-f.svg
lars8a548c82007-10-02 14:04:42 +0000786svg/W3C-SVG-1.1/animate-elem-08-t.svg
lars8a548c82007-10-02 14:04:42 +0000787svg/W3C-SVG-1.1/animate-elem-80-t.svg
lars8a548c82007-10-02 14:04:42 +0000788svg/W3C-SVG-1.1/coords-viewattr-01-b.svg
789svg/W3C-SVG-1.1/coords-viewattr-02-b.svg
lars8a548c82007-10-02 14:04:42 +0000790svg/W3C-SVG-1.1/filters-image-01-b.svg
lars8a548c82007-10-02 14:04:42 +0000791svg/W3C-SVG-1.1/filters-offset-01-b.svg
lars8a548c82007-10-02 14:04:42 +0000792svg/W3C-SVG-1.1/fonts-desc-02-t.svg
lars8a548c82007-10-02 14:04:42 +0000793svg/W3C-SVG-1.1/fonts-glyph-04-t.svg
lars8a548c82007-10-02 14:04:42 +0000794svg/W3C-SVG-1.1/linking-a-03-b.svg
lars8a548c82007-10-02 14:04:42 +0000795svg/W3C-SVG-1.1/masking-path-04-b.svg
lars8a548c82007-10-02 14:04:42 +0000796svg/W3C-SVG-1.1/metadata-example-01-b.svg
lars8a548c82007-10-02 14:04:42 +0000797svg/W3C-SVG-1.1/paths-data-10-t.svg
lars8a548c82007-10-02 14:04:42 +0000798svg/W3C-SVG-1.1/shapes-polyline-01-t.svg
lars8a548c82007-10-02 14:04:42 +0000799svg/W3C-SVG-1.1/struct-cond-02-t.svg
lars8a548c82007-10-02 14:04:42 +0000800svg/W3C-SVG-1.1/struct-use-01-t.svg
lars8a548c82007-10-02 14:04:42 +0000801svg/W3C-SVG-1.1/text-fonts-01-t.svg
lars8a548c82007-10-02 14:04:42 +0000802svg/W3C-SVG-1.1/text-intro-05-t.svg
lars8a548c82007-10-02 14:04:42 +0000803svg/W3C-SVG-1.1/text-tselect-02-f.svg
lars8a548c82007-10-02 14:04:42 +0000804svg/carto.net/button.svg
805svg/carto.net/colourpicker.svg
806svg/carto.net/combobox.svg
807svg/carto.net/scrollbar.svg
808svg/carto.net/selectionlist.svg
809svg/carto.net/slider.svg
810svg/carto.net/tabgroup.svg
811svg/carto.net/textbox.svg
812svg/carto.net/window.svg
lars8a548c82007-10-02 14:04:42 +0000813svg/hixie/cascade/001-broken.xml
814svg/hixie/cascade/002.xml
815svg/hixie/data-types/001.xml
816svg/hixie/data-types/002.xhtml
lars8a548c82007-10-02 14:04:42 +0000817svg/hixie/dynamic/003.xml
818svg/hixie/dynamic/004.xml
lars8a548c82007-10-02 14:04:42 +0000819svg/hixie/dynamic/006.xml
820svg/hixie/error/001.xml
821svg/hixie/error/002.xml
822svg/hixie/error/003.xml
lars8a548c82007-10-02 14:04:42 +0000823svg/hixie/error/007.xml
824svg/hixie/error/008.xml
825svg/hixie/error/009.xml
826svg/hixie/error/010.xml
827svg/hixie/error/011.xml
828svg/hixie/error/012.xml
lars8a548c82007-10-02 14:04:42 +0000829svg/hixie/error/014-test.xml
830svg/hixie/error/014.xml
831svg/hixie/error/015.xml
832svg/hixie/error/016.xml
833svg/hixie/error/017.xml
834svg/hixie/links/001.xml
835svg/hixie/links/002.xml
lars8a548c82007-10-02 14:04:42 +0000836svg/hixie/mixed/003.xml
837svg/hixie/mixed/004.xml
838svg/hixie/mixed/005.xml
839svg/hixie/mixed/006.xml
840svg/hixie/mixed/008.xml
841svg/hixie/mixed/009.xml
842svg/hixie/mixed/010.xml
843svg/hixie/mixed/011.xml
844svg/hixie/painting/001.xml
845svg/hixie/perf/001.xml
846svg/hixie/perf/002.xml
847svg/hixie/perf/003.xml
848svg/hixie/perf/004.xml
849svg/hixie/perf/005.xml
850svg/hixie/perf/006.xml
851svg/hixie/perf/007.xml
lars8a548c82007-10-02 14:04:42 +0000852svg/hixie/processing-model/005.xml
853svg/hixie/rendering-model/001.xml
854svg/hixie/rendering-model/002.xml
855svg/hixie/rendering-model/003.xhtml
856svg/hixie/rendering-model/003a.xml
857svg/hixie/rendering-model/004.xhtml
858svg/hixie/shapes/path/001.xml
lars8a548c82007-10-02 14:04:42 +0000859svg/hixie/text/002.xml
860svg/hixie/text/003.html
861svg/hixie/text/003a.xml
862svg/hixie/text/003b.xml
863svg/hixie/transform/001.xml
864svg/hixie/use/001.xml
865svg/hixie/use/002-test.xml
866svg/hixie/use/002.xml
867svg/hixie/viewbox/001.xml
868svg/hixie/viewbox/002.xml
869svg/hixie/viewbox/003.xml
870svg/hixie/viewbox/004.xml
871svg/hixie/viewbox/preserveAspectRatio/001.xml
872svg/hixie/viewbox/preserveAspectRatio/002.xml
hausmann@webkit.orga1814872008-05-07 14:21:40 +0000873svg/W3C-SVG-1.1/struct-frag-01-t.svg
874svg/css/getComputedStyle-basic.xhtml
hausmann@webkit.orga1814872008-05-07 14:21:40 +0000875svg/dom/SVGRectElement/rect-modify-rx.svg
876svg/hixie/dynamic/002.xml
877svg/hixie/mixed/007.xml
hausmann@webkit.org9f6c2932008-05-26 12:29:11 +0000878
ossy@webkit.org91b5de12011-03-16 16:52:49 +0000879# --- missing test fonts
880svg/W3C-I18N/g-dirLTR-ubNone.svg
881svg/W3C-I18N/g-dirLTR-ubOverride.svg
882svg/W3C-I18N/g-dirRTL-ubNone.svg
883svg/W3C-I18N/g-dirRTL-ubOverride.svg
884svg/W3C-I18N/text-anchor-dirLTR-anchorEnd.svg
885svg/W3C-I18N/text-anchor-dirLTR-anchorMiddle.svg
886svg/W3C-I18N/text-anchor-dirLTR-anchorStart.svg
887svg/W3C-I18N/text-anchor-dirNone-anchorEnd.svg
888svg/W3C-I18N/text-anchor-dirNone-anchorMiddle.svg
889svg/W3C-I18N/text-anchor-dirNone-anchorStart.svg
890svg/W3C-I18N/text-anchor-dirRTL-anchorEnd.svg
891svg/W3C-I18N/text-anchor-dirRTL-anchorMiddle.svg
892svg/W3C-I18N/text-anchor-dirRTL-anchorStart.svg
893svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorEnd.svg
894svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorMiddle.svg
895svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorStart.svg
896svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorEnd.svg
897svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorMiddle.svg
898svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorStart.svg
899svg/W3C-I18N/text-anchor-no-markup.svg
900svg/W3C-I18N/text-dirLTR-ubNone.svg
901svg/W3C-I18N/text-dirLTR-ubOverride.svg
902svg/W3C-I18N/text-dirRTL-ubNone.svg
903svg/W3C-I18N/text-dirRTL-ubOverride.svg
904svg/W3C-I18N/tspan-dirLTR-ubEmbed-in-rtl-context.svg
905svg/W3C-I18N/tspan-dirLTR-ubNone-in-rtl-context.svg
906svg/W3C-I18N/tspan-dirLTR-ubOverride-in-default-context.svg
907svg/W3C-I18N/tspan-dirLTR-ubOverride-in-ltr-context.svg
908svg/W3C-I18N/tspan-dirLTR-ubOverride-in-rtl-context.svg
909svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context.svg
910svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context.svg
911svg/W3C-I18N/tspan-dirNone-ubOverride-in-rtl-context.svg
912svg/W3C-I18N/tspan-dirRTL-ubEmbed-in-default-context.svg
913svg/W3C-I18N/tspan-dirRTL-ubEmbed-in-ltr-context.svg
914svg/W3C-I18N/tspan-dirRTL-ubNone-in-default-context.svg
915svg/W3C-I18N/tspan-dirRTL-ubNone-in-ltr-context.svg
916svg/W3C-I18N/tspan-dirRTL-ubOverride-in-default-context.svg
917svg/W3C-I18N/tspan-dirRTL-ubOverride-in-ltr-context.svg
918svg/W3C-I18N/tspan-dirRTL-ubOverride-in-rtl-context.svg
919svg/W3C-I18N/tspan-direction-ltr.svg
920svg/W3C-I18N/tspan-direction-rtl.svg
ossy@webkit.org752f6482011-03-16 17:22:50 +0000921svg/W3C-SVG-1.1/text-fonts-01-t.svg
922svg/W3C-SVG-1.1/text-intro-05-t.svg
923svg/W3C-SVG-1.1/text-tselect-02-f.svg
ossy@webkit.org91b5de12011-03-16 16:52:49 +0000924svg/W3C-SVG-1.1-SE/text-intro-02-b.svg
925svg/W3C-SVG-1.1-SE/text-intro-05-t.svg
926svg/W3C-SVG-1.1-SE/text-intro-09-b.svg
927svg/text/bidi-reorder-value-lists.svg
928svg/text/bidi-text-anchor-direction.svg
929svg/text/bidi-text-query.svg
930svg/text/bidi-tspans.svg
ossy@webkit.org752f6482011-03-16 17:22:50 +0000931svg/text/text-fonts-01-t.svg
932svg/text/text-intro-05-t.svg
933svg/text/text-tselect-02-f.svg
ossy@webkit.org91b5de12011-03-16 16:52:49 +0000934
robert@webkit.org188a1262010-06-07 14:43:15 +0000935# ============================================================================= #
936# failing animations tests
937# ============================================================================= #
robert@webkit.org051adf82010-06-08 19:44:15 +0000938# Needs expected results
hausmann@webkit.org47333ae2009-05-22 14:26:39 +0000939animations/animation-drt-api.html
940animations/animation-drt-api-multiple-keyframes.html
robert@webkit.org188a1262010-06-07 14:43:15 +0000941
robert@webkit.org188a1262010-06-07 14:43:15 +0000942# ============================================================================= #
943# Failing CSS Tests
944# ============================================================================= #
robert@webkit.org188a1262010-06-07 14:43:15 +0000945# REGRESSION (r53450) - skipped until fix
946# https://bugs.webkit.org/show_bug.cgi?id=33834
947css1/box_properties/acid_test.html
robert@webkit.org188a1262010-06-07 14:43:15 +0000948
hausmann@webkit.org178c0532008-12-12 20:44:51 +0000949css2.1/t010403-shand-font-02-b.html
950css2.1/t010403-shand-font-03-b.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +0000951css2.1/t0511-c21-pseud-link-02-e.html
952css2.1/t0511-c21-pseud-link-03-e.html
953css2.1/t051201-c23-first-line-00-b.html
954css2.1/t051202-c24-first-lttr-00-b.html
955css2.1/t051202-c26-psudo-nest-00-c.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +0000956css2.1/t0602-c13-inh-underlin-00-e.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +0000957css2.1/t0804-c5507-ipadn-r-02-b-ag.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +0000958css2.1/t0805-c5522-brdr-02-e.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +0000959css2.1/t0905-c414-flt-fit-01-d-g.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +0000960css2.1/t0905-c5525-flthw-00-c-g.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +0000961css2.1/t0905-c5526-flthw-00-c-g.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +0000962css2.1/t1004-c43-rpl-ibx-00-d-ag.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +0000963css2.1/t100801-c42-ibx-ht-00-d-a.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +0000964css2.1/t100801-c544-valgn-01-d-ag.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +0000965css2.1/t100801-c548-ln-ht-02-b-ag.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +0000966css2.1/t1008-c44-ln-box-00-d-ag.html
967css2.1/t1008-c44-ln-box-01-d-ag.html
968css2.1/t1008-c44-ln-box-02-d-ag.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +0000969css2.1/t1202-counters-04-b.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +0000970css2.1/t1601-c547-indent-00-b-a.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +0000971css2.1/t1602-c43-center-00-d-ag.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +0000972css2.1/t1604-c541-word-sp-00-b-a.html
973css2.1/t1604-c541-word-sp-01-b-a.html
974css2.1/t1604-c542-letter-sp-00-b-a.html
975css2.1/t1604-c542-letter-sp-01-b-a.html
976css2.1/t1605-c545-txttrans-00-b-ag.html
hausmann@webkit.orga4200b642009-09-30 12:16:33 +0000977css2.1/t140201-c534-bgreps-00-c-ag.html
978css2.1/t140201-c534-bgreps-01-c-ag.html
979css2.1/t140201-c534-bgreps-02-c-ag.html
980css2.1/t140201-c534-bgreps-03-c-ag.html
981css2.1/t140201-c534-bgreps-04-c-ag.html
982css2.1/t140201-c534-bgreps-05-c-ag.html
hausmann@webkit.orga4200b642009-09-30 12:16:33 +0000983css2.1/t140201-c537-bgfxps-00-c-ag.html
robert@webkit.org188a1262010-06-07 14:43:15 +0000984
985# ============================================================================= #
986# Failing dom/xhtml tests
987# ============================================================================= #
988dom/xhtml/level3/core/canonicalform08.xhtml
989dom/xhtml/level3/core/canonicalform09.xhtml
hausmann@webkit.org178c0532008-12-12 20:44:51 +0000990dom/xhtml/level3/core/documentgetinputencoding03.xhtml
991dom/xhtml/level3/core/entitygetinputencoding02.xhtml
992dom/xhtml/level3/core/entitygetxmlversion02.xhtml
993dom/xhtml/level3/core/nodegetbaseuri05.xhtml
994dom/xhtml/level3/core/nodegetbaseuri07.xhtml
995dom/xhtml/level3/core/nodegetbaseuri09.xhtml
996dom/xhtml/level3/core/nodegetbaseuri10.xhtml
997dom/xhtml/level3/core/nodegetbaseuri11.xhtml
998dom/xhtml/level3/core/nodegetbaseuri15.xhtml
999dom/xhtml/level3/core/nodegetbaseuri17.xhtml
1000dom/xhtml/level3/core/nodegetbaseuri18.xhtml
1001dom/xhtml/level3/core/nodelookupnamespaceuri01.xhtml
1002dom/xhtml/level3/core/nodelookupprefix19.xhtml
robert@webkit.org188a1262010-06-07 14:43:15 +00001003
1004# ============================================================================= #
1005# Failing editing/deleting tests
1006# ============================================================================= #
1007
1008# -- fail with --platform mac --ignore-metrics
1009editing/deleting/delete-ligature-001.html
1010editing/deleting/delete-ligature-002.html
1011editing/deleting/delete-ligature-003.html
1012editing/deleting/delete-block-table.html
1013editing/deleting/delete-line-end-ws-002.html
1014editing/deleting/deletionUI-single-instance.html
1015editing/deleting/collapse-whitespace-3587601-fix.html
1016editing/deleting/delete-3608430-fix.html
1017editing/deleting/delete-3608462-fix.html
1018editing/deleting/delete-3800834-fix.html
1019editing/deleting/delete-4083333-fix.html
1020editing/deleting/delete-and-undo.html
1021editing/deleting/delete-at-paragraph-boundaries-008.html
1022editing/deleting/delete-block-merge-contents-018.html
1023editing/deleting/delete-block-merge-contents-021.html
1024editing/deleting/delete-block-merge-contents-022.html
1025editing/deleting/delete-br-007.html
1026editing/deleting/delete-contiguous-ws-001.html
1027editing/deleting/delete-leading-ws-001.html
1028editing/deleting/delete-listitem-001.html
1029editing/deleting/delete-listitem-002.html
1030editing/deleting/delete-tab-001.html
1031editing/deleting/delete-tab-002.html
1032editing/deleting/delete-tab-003.html
1033editing/deleting/delete-tab-004.html
1034editing/deleting/delete-ws-fixup-001.html
1035editing/deleting/delete-ws-fixup-002.html
1036editing/deleting/delete-ws-fixup-003.html
1037editing/deleting/delete-ws-fixup-004.html
1038editing/deleting/forward-delete.html
1039editing/deleting/smart-delete-002.html
1040
robert@webkit.org15857942010-05-03 15:39:54 +00001041# =========================================================================== #
1042# Failing editing/selection tests. #
1043# =========================================================================== #
robert@webkit.org188a1262010-06-07 14:43:15 +00001044
robert@webkit.org051adf82010-06-08 19:44:15 +00001045# This seems to pass now!
1046editing/selection/extend-selection-after-double-click.html
1047
robert@webkit.org188a1262010-06-07 14:43:15 +00001048# -- fail with --platform mac --ignore-metrics
robert@webkit.org051adf82010-06-08 19:44:15 +00001049editing/selection/doubleclick-beside-cr-span.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001050editing/selection/drag-start-event-client-x-y.html
1051editing/selection/hit-test-anonymous.html
1052editing/selection/4895428-1.html
1053editing/selection/4895428-4.html
1054editing/selection/5057506-2.html
1055editing/selection/5057506.html
1056editing/selection/5232159.html
1057editing/selection/5333725.html
1058editing/selection/click-start-of-line.html
1059editing/selection/contains-boundaries.html
1060editing/selection/designmode-no-caret.html
1061editing/selection/drag-to-contenteditable-iframe.html
1062editing/selection/fake-drag.html
1063editing/selection/inline-closest-leaf-child.html
1064editing/selection/mixed-editability-1.html
1065editing/selection/select-from-textfield-outwards.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001066editing/selection/4983858.html
1067editing/selection/end-of-document.html
1068editing/selection/move-left-right.html
1069editing/selection/select-all-001.html
1070editing/selection/select-all-002.html
1071editing/selection/select-all-003.html
1072editing/selection/5081257-1.html
1073editing/selection/5081257-2.html
1074editing/selection/5234383-1.html
1075editing/selection/5234383-2.html
1076editing/selection/7152-1.html
1077editing/selection/7152-2.html
1078editing/selection/drag-in-iframe.html
1079editing/selection/editable-html-element.html
1080editing/selection/editable-non-editable-crash.html
1081editing/selection/move-between-blocks-no-001.html
1082editing/selection/move-past-trailing-space.html
1083editing/selection/replace-selection-1.html
1084editing/selection/select-all-005.html
1085editing/selection/select-all-006.html
1086editing/selection/select-box.html
1087
ossy@webkit.org7a5a5b62011-01-21 12:16:20 +00001088# https://bugs.webkit.org/show_bug.cgi?id=52883
1089editing/selection/rtl-move-selection-right-left.html
1090
commit-queue@webkit.orgddd8f6d2010-08-17 01:19:45 +00001091# [Qt] editing tests fails after r54980
1092# https://bugs.webkit.org/show_bug.cgi?id=35145
commit-queue@webkit.orgddd8f6d2010-08-17 01:19:45 +00001093editing/selection/extend-after-mouse-selection.html
1094
robert@webkit.org188a1262010-06-07 14:43:15 +00001095# stderr
1096editing/selection/editable-links.html
1097editing/selection/drag-text-delay.html
1098
1099# https://bugs.webkit.org/show_bug.cgi?id=38656
1100editing/selection/shift-click.html
1101
1102# -- pass with --platform mac --ignore-metrics
robert@webkit.org188a1262010-06-07 14:43:15 +00001103editing/selection/extend-selection-bidi.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001104editing/selection/selection-background.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001105editing/selection/4397952.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001106editing/selection/4932260-1.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001107editing/selection/5007143-2.html
1108editing/selection/5007143.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001109editing/selection/caret-rtl-2.html
1110editing/selection/caret-rtl.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001111editing/selection/iframe.html
1112editing/selection/image-before-linebreak.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001113editing/selection/mixed-editability-2.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001114editing/selection/move-by-character-6.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001115editing/selection/select-element-paragraph-boundary.html
robert@webkit.org15857942010-05-03 15:39:54 +00001116
ojan@chromium.org1ce008c2010-07-08 23:51:58 +00001117# https://bugs.webkit.org/show_bug.cgi?id=41918
1118editing/selection/5195166-1.html
robert@webkit.org15857942010-05-03 15:39:54 +00001119
philn@webkit.orgfd504282010-09-21 06:54:09 +00001120# and https://bugs.webkit.org/show_bug.cgi?id=45021
1121media/context-menu-actions.html
philn@webkit.org88a209f2010-09-16 16:06:46 +00001122
ossy@webkit.org1deabf22011-01-24 14:24:10 +00001123# RTL: selection.modify("move", "forward", "line") when cursor is at start of a line does not move down a line
1124# https://bugs.webkit.org/show_bug.cgi?id=51517
1125editing/selection/extend-to-line-boundary.html
1126
robert@webkit.org188a1262010-06-07 14:43:15 +00001127# ============================================================================= #
1128# Failing editing/spelling tests
1129# ============================================================================= #
robert@webkit.org051adf82010-06-08 19:44:15 +00001130# Need to dump context menu items on eventSender.contextClick(true).
1131# https://bugs.webkit.org/show_bug.cgi?id=39103
1132editing/spelling/context-menu-suggestions.html
1133
robert@webkit.org188a1262010-06-07 14:43:15 +00001134# -- fail with --platform mac --ignore-metrics
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001135editing/spelling/inline_spelling_markers.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001136editing/spelling/spelling-linebreak.html
1137
1138# -- pass with --platform mac --ignore-metrics
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001139editing/spelling/spellcheck-attribute.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001140editing/spelling/spelling.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001141
ossy@webkit.org5a7bf752011-03-02 14:45:44 +00001142# textInputController.hasMarkedText() is not implemented.
1143editing/input/setting-input-value-cancel-ime-composition.html
1144
commit-queue@webkit.org77ba1452010-09-03 10:36:04 +00001145# textInputController.hasSpellingMarkers() is not implemented.
morrita@google.com3cb95c72010-11-05 04:58:51 +00001146editing/spelling/spelling-hasspellingmarker.html
commit-queue@webkit.org77ba1452010-09-03 10:36:04 +00001147
adele@apple.comaeeb7f12011-03-28 21:48:28 +00001148# textInputController.hasGrammarMarkers() is not implemented.
1149editing/spelling/grammar.html
1150
morrita@google.com00b3f0f2010-09-09 03:26:17 +00001151# https://bugs.webkit.org/show_bug.cgi?id=45435
1152editing/spelling/spelling-backspace-between-lines.html
1153
morrita@google.comd165d1d2010-10-28 10:41:58 +00001154editing/spelling/spelling-attribute-change.html
morrita@google.com447109a2010-11-02 06:34:26 +00001155editing/spelling/spelling-attribute-at-child.html
morrita@google.comd165d1d2010-10-28 10:41:58 +00001156
morrita@google.com7a18fee2010-12-13 06:06:19 +00001157# EditorClient::requestCheckingOfString() is not implemented
1158editing/spelling/spellcheck-paste.html
1159
robert@webkit.org188a1262010-06-07 14:43:15 +00001160# ============================================================================= #
1161# failing editing/style tests
1162# ============================================================================= #
1163
robert@webkit.org188a1262010-06-07 14:43:15 +00001164editing/style/style-3681552-fix-002.html
1165editing/style/apple-style-editable-mix.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001166editing/style/style-3681552-fix-001.html
1167editing/style/typing-style-001.html
1168editing/style/typing-style-002.html
1169editing/style/unbold-in-bold.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001170editing/style/4916887.html
1171editing/style/5017613-1.html
1172editing/style/5017613-2.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001173editing/style/5228141.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001174editing/style/block-style-001.html
1175editing/style/block-style-002.html
1176editing/style/block-style-003.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001177editing/style/block-styles-007.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001178editing/style/designmode.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001179editing/style/highlight.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001180editing/style/style-boundary-002.html
1181editing/style/style-boundary-003.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001182editing/style/style-boundary-005.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001183
1184# ============================================================================= #
1185# failing undo tests
1186# ============================================================================= #
1187
1188# -- pass with --platform mac --ignore-metrics
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001189editing/undo/5378473.html
1190editing/undo/redo-typing-001.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001191editing/undo/undo-misspellings.html
1192editing/undo/undo-typing-001.html
1193
1194# -- fail with --platform mac --ignore-metrics
1195editing/undo/4063751.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001196editing/undo/undo-combined-delete-boundary.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001197editing/undo/undo-combined-delete.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001198editing/undo/undo-delete-boundary.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001199editing/undo/undo-delete.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001200editing/undo/undo-forward-delete-boundary.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001201editing/undo/undo-forward-delete.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001202
1203# ============================================================================= #
1204# failing unsupported-content tests
1205# ============================================================================= #
1206# -- pass with --platform mac --ignore-metrics
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001207editing/unsupported-content/list-delete-001.html
1208editing/unsupported-content/list-delete-003.html
1209editing/unsupported-content/list-type-after.html
1210editing/unsupported-content/list-type-before.html
1211editing/unsupported-content/table-delete-001.html
1212editing/unsupported-content/table-delete-002.html
1213editing/unsupported-content/table-delete-003.html
1214editing/unsupported-content/table-type-after.html
1215editing/unsupported-content/table-type-before.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001216
1217
1218# ============================================================================= #
1219# failing fast tests
1220# ============================================================================= #
robert@webkit.org051adf82010-06-08 19:44:15 +00001221
ossy@webkit.org70d3e782011-04-05 10:35:36 +00001222# [Qt] fast/ruby/overhang* tests fail
1223# https://bugs.webkit.org/show_bug.cgi?id=57824
1224fast/ruby/overhang-horizontal.html
1225fast/ruby/overhang-vertical.html
1226
ossy@webkit.org71bb4c52010-06-14 20:05:21 +00001227# [Qt] fast/text/justify-padding-distribution.html fails
1228# https://bugs.webkit.org/show_bug.cgi?id=40584
1229fast/text/justify-padding-distribution.html
1230
robert@webkit.org051adf82010-06-08 19:44:15 +00001231# Failing tests introduced by changing the default font sizes to
1232# conform other platforms. Probably caused by previously hidden bugs.
robert@webkit.org051adf82010-06-08 19:44:15 +00001233fast/history/history_reload.html
1234
robert@webkit.org188a1262010-06-07 14:43:15 +00001235# This test fails because Qt does not support conditionals in unicode special casing.
1236# See also http://trolltech.com/developer/task-tracker/index_html?id=212870&method=entry
1237fast/css/case-transform.html
1238
robert@webkit.org051adf82010-06-08 19:44:15 +00001239# New test hangs QT bot
1240# Discussed in https://bugs.webkit.org/show_bug.cgi?id=38928
1241fast/loader/recursive-before-unload-crash.html
1242
robert@webkit.org188a1262010-06-07 14:43:15 +00001243# REGRESSION (r53450) - skipped until fix
1244# https://bugs.webkit.org/show_bug.cgi?id=33834
1245fast/forms/textarea-scrollbar-height.html
1246# Final four tests before Qt buildbot is green
1247# https://bugs.webkit.org/show_bug.cgi?id=27914
1248fast/css/positioned-overflow-scroll.html
1249fast/dom/prototype-inheritance-2.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001250# This port doesn't support detecting slow unload handlers.
1251fast/dom/Window/slow-unload-handler.html
1252fast/dom/Window/slow-unload-handler-only-frame-is-stopped.html
1253# Need rebaseline: https://bugs.webkit.org/show_bug.cgi?id=26830
1254fast/multicol/single-line.html
1255# validationMessage: https://bugs.webkit.org/show_bug.cgi?id=27959
1256fast/forms/validationMessage.html
1257fast/css/color-correction-backgrounds-and-text.html
1258fast/css/color-correction-on-background-image.html
1259fast/css/color-correction-on-backgrounds.html
1260fast/css/color-correction-on-box-shadow.html
1261fast/css/color-correction-on-text-shadow.html
1262fast/css/color-correction-on-text.html
1263fast/css/color-correction-untagged-images.html
1264fast/css/color-correction.html
1265
1266fast/block/positioning/relative-positioned-inline-container.html
1267fast/repaint/block-selection-gap-in-composited-layer.html
1268fast/repaint/block-selection-gap-in-table-cell.html
1269fast/repaint/block-selection-gap-stale-cache-2.html
1270fast/repaint/block-selection-gap-stale-cache.html
1271fast/repaint/inline-overflow.html
1272fast/repaint/inline-relative-positioned.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001273# eventSender missing touchCancel() and cancelTouchPoint()
1274fast/events/touch/send-oncancel-event.html
1275
robert@webkit.org188a1262010-06-07 14:43:15 +00001276# Relies on WebKit API [WebView _loadBackForwardListFromOtherView:]
1277fast/loader/crash-copying-backforwardlist.html
1278
robert@webkit.org188a1262010-06-07 14:43:15 +00001279# Needs platform specific API implemented in DRT, maybe not relevant for non-Mac and non-Windows ports
1280fast/loader/api-test-new-window-data-load-base-url.html
1281fast/loader/api-test-go-to-current-back-forward-item.html
1282
1283# Slider tests that need new results
1284fast/forms/slider-padding.html
1285fast/forms/slider-thumb-shared-style.html
1286fast/forms/slider-thumb-stylability.html
1287fast/forms/slider-zoomed.html
1288fast/forms/slider-mouse-events.html
1289
robert@webkit.org188a1262010-06-07 14:43:15 +00001290# For some reason crashes when run with all tests. Passes individually.
1291fast/forms/multiple-form-submission-protection-mouse.html
1292
robert@webkit.org188a1262010-06-07 14:43:15 +00001293# https://bugs.webkit.org/show_bug.cgi?id=35973
1294fast/multicol/hit-test-above-or-below.html
1295
robert@webkit.org188a1262010-06-07 14:43:15 +00001296# Not sure why this is failing on Qt.
1297# https://bugs.webkit.org/show_bug.cgi?id=37697
1298fast/url/host.html
1299
1300# -- fail with --platform mac --ignore-metrics
1301fast/box-sizing/percentage-height.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001302fast/dom/focus-contenteditable.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001303fast/dom/isindex-002.html
1304# seems to trigger some bugs/missing features in QTextCodec
1305fast/encoding/char-encoding.html
1306# QUrl::from/toACE seems to be stricter than what ICU does.
1307fast/encoding/idn-security.html
1308fast/encoding/xmacroman-encoding-test.html
1309fast/encoding/GBK/EUC-CN.html
1310fast/encoding/GBK/chinese.html
1311fast/encoding/GBK/cn-gb.html
1312fast/encoding/GBK/csgb2312.html
1313fast/encoding/GBK/csgb231280.html
1314fast/encoding/GBK/gb2312.html
1315fast/encoding/GBK/gb_2312-80.html
1316fast/encoding/GBK/gbk.html
1317fast/encoding/GBK/iso-ir-58.html
1318fast/encoding/GBK/x-euc-cn.html
1319fast/encoding/GBK/x-gbk.html
1320fast/events/autoscroll.html
1321fast/events/click-count.html
1322fast/events/content-changed-during-drop.html
1323fast/events/js-keyboard-event-creation.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001324fast/events/keypress-insert-tab.html
1325fast/events/ondragenter.html
1326fast/events/reveal-link-when-focused.html
1327fast/events/standalone-image-drag-to-editable.html
1328fast/events/updateLayoutForHitTest.html
1329fast/forms/input-selectedoption.html
1330fast/forms/drag-into-textarea.html
1331fast/forms/input-readonly-autoscroll.html
1332fast/forms/input-text-click-outside.html
1333fast/forms/input-text-drag-down.html
1334fast/forms/input-text-scroll-left-on-blur.html
1335fast/forms/listbox-onchange.html
1336fast/forms/listbox-selection-2.html
1337fast/forms/listbox-selection.html
1338fast/forms/onselect-textarea.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001339fast/forms/select-writing-direction-natural.html
1340fast/forms/tabbing-input-iframe.html
1341fast/forms/textAreaLineHeight.html
1342fast/forms/textarea-scroll-height.html
1343fast/forms/textarea-scrollbar.html
1344fast/forms/textarea-scrolled-type.html
1345fast/frames/iframe-window-focus.html
1346fast/html/keygen.html
1347fast/invalid/missing-end-tag.xhtml
1348fast/invalid/residual-style.html
1349fast/js/string-capitalization.html
1350fast/lists/drag-into-marker.html
1351fast/overflow/clip-rects-fixed-ancestor.html
1352fast/overflow/overflow-rtl.html
1353fast/overflow/overflow-x-y.html
1354fast/overflow/scroll-nested-positioned-layer-in-overflow.html
1355fast/overflow/scrollRevealButton.html
1356fast/parser/external-entities.xml
1357fast/parser/xhtml-alternate-entities.xml
1358fast/repaint/box-shadow-h.html
1359fast/repaint/box-shadow-v.html
1360fast/repaint/fixed.html
1361fast/repaint/flexible-box-overflow-horizontal.html
1362fast/repaint/flexible-box-overflow.html
1363fast/repaint/inline-block-overflow.html
1364fast/repaint/layer-child-outline.html
1365fast/repaint/layer-outline-horizontal.html
1366fast/repaint/layer-outline.html
1367fast/repaint/list-marker.html
1368fast/repaint/overflow-outline-repaint.html
1369fast/repaint/selection-gap-overflow-scroll.html
1370fast/repaint/table-cell-vertical-overflow.html
1371fast/repaint/text-selection-rect-in-overflow-2.html
1372fast/repaint/text-selection-rect-in-overflow.html
1373fast/repaint/text-shadow-horizontal.html
1374fast/repaint/text-shadow.html
1375fast/replaced/width100percent-textarea.html
1376fast/table/giantCellspacing.html
1377fast/text/atsui-pointtooffset-calls-cg.html
1378fast/text/atsui-rtl-override-selection.html
1379fast/text/in-rendered-text-rtl.html
1380fast/text/large-text-composed-char-dos.html
1381fast/text/international/002.html
1382fast/block/positioning/absolute-in-inline-rtl-4.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001383fast/canvas/canvas-gradient-addStop-error.html
1384fast/css/zoom-body-scroll.html
1385fast/dom/Element/getBoundingClientRect.html
1386fast/dom/Element/getClientRects.html
1387fast/dom/Range/getBoundingClientRect.html
1388fast/dom/Range/getClientRects.html
1389fast/dom/tabindex-clamp.html
1390fast/dom/HTMLScriptElement/nested-execution.html
1391fast/dom/Window/webkitConvertPoint.html
1392fast/encoding/char-encoding-mac.html
1393fast/encoding/hebrew/8859-8-e.html
1394fast/encoding/hebrew/8859-8-i.html
1395fast/encoding/hebrew/logical.html
1396fast/events/crash-on-mutate-during-drop.html
1397fast/forms/option-mouseevents.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001398fast/forms/text-control-intrinsic-widths.html
1399fast/forms/textarea-metrics.html
1400fast/history/window-open.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001401fast/dom/HTMLDocument/hasFocus.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001402fast/dom/Range/range-expand.html
1403fast/encoding/char-decoding.html
1404fast/encoding/frame-default-enc.html
1405fast/encoding/invalid-xml.html
1406fast/events/attempt-scroll-with-no-scrollbars.html
1407fast/events/key-events-in-input-button.html
1408fast/forms/input-radio-checked-tab.html
1409fast/frames/onlyCommentInIFrame.html
1410fast/invalid/junk-data.xml
1411fast/loader/text-document-wrapping.html
1412fast/overflow/005.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001413fast/repaint/inline-outline-repaint.html
1414fast/text/find-case-folding.html
1415fast/text/large-text-composed-char.html
1416fast/text/basic/014.html
xji@chromium.orge66fb082011-01-25 00:58:57 +00001417fast/text/international/cjk-segmentation.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001418fast/text/international/rtl-white-space-pre-wrap.html
1419fast/text/whitespace/pre-wrap-overflow-selection.html
1420fast/block/basic/text-indent-rtl.html
1421fast/block/float/026.html
1422fast/block/float/028.html
1423fast/block/float/editable-text-overlapping-float.html
1424fast/block/margin-collapse/103.html
1425fast/block/positioning/auto/006.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001426fast/css/text-overflow-ellipsis-bidi.html
1427fast/css/text-overflow-ellipsis.html
1428fast/css/text-overflow-ellipsis-strict.html
1429fast/dom/HTMLTextAreaElement/reset-textarea.html
1430fast/dom/icon-url-property.html
1431fast/dynamic/008.html
1432fast/encoding/char-decoding-mac.html
1433fast/encoding/hebrew/csISO88598I.html
1434fast/events/offsetX-offsetY.html
1435fast/forms/basic-textareas.html
1436fast/forms/box-shadow-override.html
1437fast/forms/button-white-space.html
1438fast/forms/disabled-select-change-index.html
1439fast/forms/file-input-direction.html
1440fast/forms/file-input-disabled.html
1441fast/forms/form-element-geometry.html
1442fast/forms/hidden-input-file.html
1443fast/forms/input-appearance-height.html
1444fast/forms/input-appearance-width.html
1445fast/forms/input-disabled-color.html
1446fast/forms/input-table.html
1447fast/forms/input-value.html
1448fast/forms/listbox-deselect-scroll.html
1449fast/forms/listbox-hit-test-zoomed.html
1450fast/forms/negativeLineHeight.html
1451fast/forms/placeholder-pseudo-style.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001452fast/forms/textarea-align.html
1453fast/forms/textarea-setinnerhtml.html
1454fast/forms/textarea-width.html
1455fast/inline/inline-borders-with-bidi-override.html
1456fast/layers/scroll-rect-to-visible.html
1457fast/layers/video-layer.html
1458fast/media/mq-transform-02.html
1459fast/media/mq-transform-03.html
1460fast/overflow/image-selection-highlight.html
1461fast/overflow/infiniteRecursionGuard.html
1462fast/overflow/overflow_hidden.html
1463fast/overflow/overflow-text-hit-testing.html
1464fast/overflow/unreachable-overflow-rtl-bug.html
1465fast/parser/entity-comment-in-textarea.html
1466fast/parser/open-comment-in-textarea.html
1467fast/repaint/focus-ring.html
1468fast/repaint/selection-after-delete.html
1469fast/repaint/selection-after-remove.html
1470fast/repaint/shadow-multiple-horizontal.html
1471fast/repaint/shadow-multiple-strict-horizontal.html
1472fast/repaint/shadow-multiple-strict-vertical.html
1473fast/repaint/shadow-multiple-vertical.html
1474fast/replaced/border-radius-clip.html
1475fast/table/003.html
1476fast/table/cell-pref-width-invalidation.html
1477fast/text/atsui-spacing-features.html
tony@chromium.org7ca6bde2010-11-17 23:41:36 +00001478fast/text/atsui-negative-spacing-features.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001479fast/text/basic/015.html
1480fast/text/capitalize-boundaries.html
1481fast/text/complex-text-opacity.html
1482fast/text/embed-at-end-of-pre-wrap-line.html
1483fast/text/international/003.html
1484fast/text/international/bidi-AN-after-empty-run.html
1485fast/text/international/bidi-layout-across-linebreak.html
1486fast/text/international/bidi-LDB-2-formatting-characters.html
1487fast/text/international/bidi-LDB-2-HTML.html
1488fast/text/international/bidi-listbox-atsui.html
1489fast/text/international/bidi-listbox.html
1490fast/text/international/bidi-override.html
1491fast/text/line-breaks-after-white-space.html
1492fast/text/trailing-white-space-2.html
1493fast/text/trailing-white-space.html
1494fast/text/whitespace/normal-after-nowrap-breaking.html
1495fast/text/whitespace/pre-break-word.html
1496fast/text/whitespace/pre-wrap-line-test.html
1497fast/text/whitespace/pre-wrap-spaces-after-newline.html
1498fast/text/whitespace/tab-character-basics.html
1499fast/text/word-break.html
1500fast/text/word-break-run-rounding.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001501
1502# -- timedout with --platform mac --ignore-metrics
1503fast/events/5056619.html
1504fast/events/drag-in-frames.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001505fast/text/international/thai-line-breaks.html
1506
1507# --crashed with --platform mac --ignore-metrics
1508fast/text/midword-break-after-breakable-char.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001509
1510
1511# -- pass with --platform mac --ignore-metrics
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001512fast/backgrounds/animated-gif-as-background.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001513fast/backgrounds/opacity-on-document-element.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001514fast/block/basic/010.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001515fast/block/float/004.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001516fast/block/float/010.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001517fast/block/float/017.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001518fast/block/float/021.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001519fast/block/float/032.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001520fast/block/float/br-with-clear.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001521fast/block/float/float-in-float-hit-testing.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001522fast/block/float/independent-align-positioning.html
1523fast/block/float/multiple-float-positioning.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001524fast/block/margin-collapse/006.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001525fast/block/margin-collapse/055.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001526fast/block/positioning/001.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001527fast/block/positioning/047.html
1528fast/block/positioning/051.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001529fast/block/positioning/056.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001530fast/block/positioning/061.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001531fast/block/positioning/absolute-in-inline-ltr-2.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001532fast/block/positioning/absolute-in-inline-ltr.html
1533fast/block/positioning/absolute-in-inline-rtl-2.html
1534fast/block/positioning/absolute-in-inline-rtl-3.html
1535fast/block/positioning/absolute-in-inline-rtl.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001536fast/block/positioning/move-with-auto-width.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001537fast/borders/border-image-omit-right-slice.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001538fast/borders/borderRadiusAllStylesAllCorners.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001539fast/borders/borderRadiusDashed01.html
1540fast/borders/borderRadiusDashed02.html
1541fast/borders/borderRadiusDashed03.html
1542fast/borders/borderRadiusDotted01.html
1543fast/borders/borderRadiusDotted02.html
1544fast/borders/borderRadiusDotted03.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001545fast/borders/svg-as-border-image-2.html
1546fast/borders/svg-as-border-image.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001547fast/compact/001.html
1548fast/compact/002.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001549fast/css/apple-prefix.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001550fast/css/beforeSelectorOnCodeElement.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001551fast/css/ex-after-font-variant.html
yuzo@google.com98fae232010-07-20 06:23:03 +00001552fast/css/font-face-download-error.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001553fast/css/font-face-locally-installed.html
yuzo@google.com62a37c22010-07-06 08:27:08 +00001554fast/css/font-face-multiple-ranges-for-unicode-range.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001555fast/css/font-face-unicode-range.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001556fast/css/font-weight-1.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001557fast/css/percentage-non-integer.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001558fast/css/rtl-ordering.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001559fast/css/text-security.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001560fast/dom/Document/CaretRangeFromPoint/hittest-relative-to-viewport.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001561fast/dom/HTMLImageElement/image-alt-text.html
morrita@google.com6294b7b2010-06-18 05:48:31 +00001562# meter-element.html is temporally disabled.We need to rebaseline.
morrita@google.com9622191b2010-06-18 06:11:23 +00001563fast/dom/HTMLMeterElement/meter-element.html
morrita@google.comabc3f552010-06-28 13:07:44 +00001564# progress-bar-value-pseudo-element.html and progress-element.html is temporally disabled.
1565# We need to rebaseline.
robert@webkit.org188a1262010-06-07 14:43:15 +00001566fast/dom/Window/btoa-pnglet.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001567fast/dynamic/containing-block-change.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001568fast/dynamic/floating-to-positioned-2.html
1569fast/dynamic/floating-to-positioned.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001570fast/encoding/denormalised-voiced-japanese-chars.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001571fast/encoding/invalid-UTF-8.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001572fast/events/focusingUnloadedFrame.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001573fast/flexbox/002.html
1574fast/flexbox/003.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001575fast/forms/focus-selection-input.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001576fast/forms/input-type-text-min-width.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001577fast/forms/listbox-clip.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001578fast/forms/menulist-clip.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001579fast/forms/menulist-narrow-width.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001580fast/forms/menulist-restrict-line-height.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001581fast/forms/minWidthPercent.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001582fast/forms/onchange-enter-submit.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001583fast/forms/searchfield-heights.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001584fast/forms/select-visual-hebrew.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001585fast/forms/visual-hebrew-text-field.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001586fast/gradients/background-clipped.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001587fast/gradients/generated-gradients.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001588fast/gradients/simple-gradients.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001589fast/images/pdf-as-background.html
1590fast/images/pdf-as-image-landscape.html
1591fast/images/pdf-as-tiled-background.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001592fast/inline-block/001.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001593fast/inline/continuation-outlines-with-layers.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001594fast/inline/continuation-outlines.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001595fast/inline/drawStyledEmptyInlinesWithWS.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001596fast/invalid/016.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001597fast/invalid/019.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001598fast/layers/add-layer-with-nested-stacking.html
1599fast/layers/inline-dirty-z-order-lists.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001600fast/layers/remove-layer-with-nested-stacking.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001601fast/layers/self-painting-outline.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001602fast/lists/003.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001603fast/media/mq-animation.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001604fast/media/mq-js-media-except-01.html
1605fast/media/mq-js-media-except-02.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001606fast/overflow/table-overflow-float.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001607fast/parser/fonts.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001608fast/repaint/4774354.html
1609fast/repaint/4776765.html
1610fast/repaint/backgroundSizeRepaint.html
1611fast/repaint/body-background-image.html
1612fast/repaint/border-fit-lines.html
1613fast/repaint/border-radius-repaint.html
1614fast/repaint/border-repaint-glitch.html
1615fast/repaint/box-shadow-dynamic.html
1616fast/repaint/bugzilla-3509.html
1617fast/repaint/bugzilla-5699.html
1618fast/repaint/bugzilla-6278.html
1619fast/repaint/bugzilla-6388.html
1620fast/repaint/bugzilla-6473.html
1621fast/repaint/bugzilla-7235.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001622fast/repaint/button-spurious-layout-hint.html
1623fast/repaint/caret-outside-block.html
1624fast/repaint/change-transform.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001625fast/repaint/clip-with-layout-delta.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001626fast/repaint/clipped-relative.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001627fast/repaint/containing-block-position-change.html
1628fast/repaint/continuation-after-outline.html
1629fast/repaint/control-clip.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001630fast/repaint/create-layer-repaint.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001631fast/repaint/delete-into-nested-block.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001632fast/repaint/dynamic-table-vertical-alignment-change.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001633fast/repaint/float-move-during-layout.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001634fast/repaint/float-overflow-right.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001635fast/repaint/float-overflow.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001636fast/repaint/focus-layers.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001637fast/repaint/inline-color-change.html
1638fast/repaint/invisible-objects.html
1639fast/repaint/layout-state-only-positioned.html
1640fast/repaint/layout-state-relative.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001641fast/repaint/line-flow-with-floats-1.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001642fast/repaint/line-flow-with-floats-10.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001643fast/repaint/line-flow-with-floats-2.html
1644fast/repaint/line-flow-with-floats-3.html
1645fast/repaint/line-flow-with-floats-4.html
1646fast/repaint/line-flow-with-floats-5.html
1647fast/repaint/line-flow-with-floats-6.html
1648fast/repaint/line-flow-with-floats-7.html
1649fast/repaint/line-flow-with-floats-8.html
1650fast/repaint/line-flow-with-floats-9.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001651fast/repaint/line-overflow.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001652fast/repaint/lines-with-layout-delta.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001653fast/repaint/list-marker-2.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001654fast/repaint/make-children-non-inline.html
1655fast/repaint/opacity-change-on-overflow-float.html
1656fast/repaint/outline-child-repaint.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001657fast/repaint/outline-inset.html
1658fast/repaint/outline-repaint-glitch.html
1659fast/repaint/outline-shrinking.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001660fast/repaint/overflow-clip-subtree-layout.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001661fast/repaint/overflow-delete-line.html
hamaji@chromium.orga8012642010-03-30 06:15:21 +00001662fast/repaint/overflow-scroll-body-appear.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001663fast/repaint/overflow-scroll-delete.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001664fast/repaint/reflection-redraw.html
1665fast/repaint/reflection-repaint-test.html
1666fast/repaint/renderer-destruction-by-invalidateSelection-crash.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001667fast/repaint/repaint-resized-overflow.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001668fast/repaint/selected-replaced.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001669fast/repaint/selection-clear.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001670fast/repaint/static-to-positioned.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001671fast/repaint/subtree-root-clip-2.html
1672fast/repaint/subtree-root-clip-3.html
1673fast/repaint/subtree-root-clip.html
1674fast/repaint/subtree-root-skipped.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001675fast/repaint/table-cell-collapsed-border.html
1676fast/repaint/table-cell-move.html
1677fast/repaint/table-collapsed-border.html
1678fast/repaint/table-extra-bottom-grow.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001679fast/repaint/table-two-pass-layout-overpaint.html
1680fast/repaint/text-append-dirty-lines.html
1681fast/repaint/transform-absolute-child.html
1682fast/repaint/transform-absolute-in-positioned-container.html
1683fast/repaint/transform-disable-layoutstate.html
1684fast/repaint/transform-layout-repaint.html
1685fast/repaint/transform-relative-position.html
1686fast/repaint/transform-repaint-descendants.html
1687fast/repaint/transform-replaced-shadows.html
1688fast/repaint/transform-translate.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001689fast/replaced/image-solid-color-with-alpha.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001690fast/replaced/pdf-as-image.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001691fast/replaced/width100percent-menulist.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001692fast/text/apply-start-width-after-skipped-text.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001693fast/text/atsui-multiple-renderers.html
1694fast/text/atsui-partial-selection.html
1695fast/text/atsui-small-caps-punctuation-size.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001696fast/text/basic/003.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001697fast/text/basic/013.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001698fast/text/basic/generic-family-reset.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001699fast/text/bidi-embedding-pop-and-push-same.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001700fast/text/cg-fallback-bolding.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001701fast/text/cg-vs-atsui.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001702fast/text/drawBidiText.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001703fast/text/fixed-pitch-control-characters.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001704fast/text/international/001.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001705fast/text/international/bidi-AN-after-L.html
1706fast/text/international/bidi-CS-after-AN.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001707fast/text/international/bidi-L2-run-reordering.html
1708fast/text/international/bidi-LDB-2-CSS.html
1709fast/text/international/bidi-control-chars-treated-as-ZWS.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001710fast/text/international/bidi-european-terminators.html
1711fast/text/international/bidi-explicit-embedding.html
1712fast/text/international/bidi-ignored-for-first-child-inline.html
1713fast/text/international/bidi-innertext.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001714fast/text/international/bidi-linebreak-001.html
1715fast/text/international/bidi-linebreak-002.html
1716fast/text/international/bidi-linebreak-003.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001717fast/text/international/bidi-neutral-directionality-paragraph-start.html
1718fast/text/international/bidi-neutral-run.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001719fast/text/international/complex-character-based-fallback.html
1720fast/text/international/danda-space.html
1721fast/text/international/hindi-spacing.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001722fast/text/international/rtl-caret.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001723fast/text/international/thai-baht-space.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001724fast/text/letter-spacing-negative-opacity.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001725fast/text/line-breaks.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001726fast/text/selection-painted-separately.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001727fast/text/soft-hyphen-2.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001728fast/text/whitespace/001.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001729fast/text/whitespace/002.html
1730fast/text/whitespace/003.html
1731fast/text/whitespace/004.html
1732fast/text/whitespace/005.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001733fast/text/whitespace/010.html
1734fast/text/whitespace/011.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001735fast/text/whitespace/015.html
1736fast/text/whitespace/016.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001737fast/text/whitespace/024.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001738fast/text/wide-zero-width-space.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001739fast/text/word-break-soft-hyphen.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001740fast/text/word-space.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001741
1742# ------- failures due to missing support for particular XSLT features
1743# xsl:output
1744fast/xsl/xslt-doc-enc.xml
1745fast/xsl/xslt-url.xml
1746fast/xsl/default-html.html
1747fast/xsl/xslt-text.html
1748fast/xsl/xslt-entity.xml
1749fast/xsl/xslt-extra-content-at-end.xml
1750# external entities support
1751fast/xsl/dtd-in-source-document.xml
1752fast/xsl/xslt-second-level-import.xml
1753fast/parser/external-entities-in-xslt.xml
1754# exslt:node-set() function
1755fast/xsl/exslt-node-set.xml
1756# xsl:import
1757fast/xsl/import-after-comment.xml
1758fast/xsl/xslt-import-depth.xml
1759fast/xsl/xslt-nested-stylesheets.xml
1760# xsl:attribute-set
1761fast/xsl/mozilla-tests.xml
1762# xsl:sort: lang and case-order
1763fast/xsl/sort-locale.xml
1764fast/xsl/sort-unicode.xml
1765# output formatting issues (might be related to the lack of xsl:output support)
1766fast/xsl/xslt-processor.html
1767# to be investigated
1768fast/xsl/xslt-enc16.xml
1769fast/xsl/xslt-enc16to16.xml
1770fast/xsl/xslt-enc-cyr.xml
1771fast/xsl/xslt-enc.xml
1772fast/xsl/xslt-relative-path.xml
1773fast/xsl/xslt-missing-namespace-in-xslt.xml
1774fast/xsl/xslt_unicode.xml
1775
ap@apple.com97b01182010-11-18 18:31:17 +00001776# https://bugs.webkit.org/show_bug.cgi?id=49743
1777fast/xsl/import-non-document-node.xhtml
1778
robert@webkit.org188a1262010-06-07 14:43:15 +00001779fast/forms/drag-out-of-textarea.html
1780fast/frames/frame-src-attribute.html
1781fast/overflow/003.xml
1782fast/text/international/bidi-menulist.html
xji@chromium.org8de4b3f2011-02-08 18:37:15 +00001783fast/text/international/pop-up-button-text-alignment-and-direction.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001784fast/text/international/wrap-CJK-001.html
1785fast/xpath/string-value.html
1786
ossy@webkit.org752f6482011-03-16 17:22:50 +00001787# --- missing test fonts
1788fast/blockflow/japanese-ruby-horizontal-bt.html
1789fast/blockflow/japanese-ruby-vertical-lr.html
1790fast/blockflow/japanese-ruby-vertical-rl.html
1791fast/blockflow/japanese-lr-selection.html
1792fast/blockflow/japanese-lr-text.html
1793fast/blockflow/japanese-rl-selection.html
1794fast/blockflow/japanese-rl-text.html
1795fast/blockflow/japanese-ruby-horizontal-bt.html
1796fast/blockflow/japanese-ruby-vertical-lr.html
1797fast/blockflow/japanese-ruby-vertical-rl.html
1798fast/repaint/japanese-rl-selection-clear.html
1799fast/repaint/japanese-rl-selection-repaint.html
1800fast/text/international/bidi-mirror-he-ar.html
1801fast/text/international/bold-bengali.html
1802fast/text/international/hebrew-vowels.html
1803fast/text/international/plane2.html
1804fast/text/international/vertical-text-glyph-test.html
1805fast/text/international/vertical-text-metrics-test.html
1806
robert@webkit.org188a1262010-06-07 14:43:15 +00001807# ============================================================================= #
1808# failing fonts tests
1809# ============================================================================= #
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001810fonts/cursive.html
1811fonts/default.html
1812fonts/fantasy.html
1813fonts/monospace.html
1814fonts/sans-serif.html
1815fonts/serif.html
yuzo@google.com0cdcbbe2010-03-15 08:33:18 +00001816printing/return-from-printing-mode.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001817
1818# ============================================================================= #
robert@webkit.org188a1262010-06-07 14:43:15 +00001819# failing security tests
1820# ============================================================================= #
robert@webkit.org051adf82010-06-08 19:44:15 +00001821# https://bugs.webkit.org/show_bug.cgi?id=39160
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001822security/block-test-no-port.html
robert@webkit.org188a1262010-06-07 14:43:15 +00001823security/block-test.html
1824
1825# ============================================================================= #
1826# failing tables tests
1827# ============================================================================= #
1828
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001829tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom.html
1830tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden.html
1831tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table.html
hausmann@webkit.org47333ae2009-05-22 14:26:39 +00001832tables/mozilla_expected_failures/marvin/table_overflow_caption.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001833tables/mozilla_expected_failures/marvin/table_overflow_caption_left.html
1834tables/mozilla_expected_failures/marvin/table_overflow_caption_right.html
1835tables/mozilla_expected_failures/marvin/table_overflow_caption_top.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001836tables/mozilla_expected_failures/marvin/table_overflow_hidden_table.html
1837tables/mozilla_expected_failures/marvin/table_overflow_hidden_tbody.html
1838tables/mozilla_expected_failures/marvin/table_overflow_hidden_tr.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001839tables/mozilla/marvin/colgroup_width_pct.html
hausmann@webkit.org178c0532008-12-12 20:44:51 +00001840tables/mozilla/marvin/table_overflow_hidden_td.html
ossy@webkit.orgbada65d2011-02-21 19:33:23 +00001841tables/mozilla_expected_failures/bugs/bug178855.xml
1842tables/mozilla_expected_failures/bugs/bug2479-5.html
ossy@webkit.org8ebb1a22011-02-22 12:12:52 +00001843tables/mozilla/bugs/bug12384.html
1844tables/mozilla/bugs/bug99948.html
aroben@apple.com73e87622009-04-03 21:21:23 +00001845
robert@webkit.org188a1262010-06-07 14:43:15 +00001846# ============================================================================= #
chang.shu@nokia.com81d7f5c2010-05-28 18:43:49 +00001847# Failed canvas tests from http://philip.html5.org/tests/canvas/suite/tests/
robert@webkit.org051adf82010-06-08 19:44:15 +00001848# ============================================================================= #
chang.shu@nokia.com81d7f5c2010-05-28 18:43:49 +00001849canvas/philip/tests/2d.composite.operation.clear.html
1850canvas/philip/tests/2d.composite.operation.darker.html
chang.shu@nokia.com81d7f5c2010-05-28 18:43:49 +00001851canvas/philip/tests/2d.composite.uncovered.fill.copy.html
1852canvas/philip/tests/2d.composite.uncovered.fill.destination-atop.html
1853canvas/philip/tests/2d.composite.uncovered.fill.destination-in.html
chang.shu@nokia.com81d7f5c2010-05-28 18:43:49 +00001854canvas/philip/tests/2d.composite.uncovered.image.copy.html
1855canvas/philip/tests/2d.composite.uncovered.image.destination-atop.html
1856canvas/philip/tests/2d.composite.uncovered.image.destination-in.html
1857canvas/philip/tests/2d.composite.uncovered.image.source-in.html
1858canvas/philip/tests/2d.composite.uncovered.image.source-out.html
1859canvas/philip/tests/2d.composite.uncovered.pattern.copy.html
1860canvas/philip/tests/2d.composite.uncovered.pattern.destination-atop.html
1861canvas/philip/tests/2d.composite.uncovered.pattern.destination-in.html
chang.shu@nokia.com81d7f5c2010-05-28 18:43:49 +00001862canvas/philip/tests/2d.drawImage.broken.html
chang.shu@nokia.com81d7f5c2010-05-28 18:43:49 +00001863canvas/philip/tests/2d.gradient.radial.cone.behind.html
1864canvas/philip/tests/2d.gradient.radial.cone.beside.html
1865canvas/philip/tests/2d.gradient.radial.cone.bottom.html
1866canvas/philip/tests/2d.gradient.radial.cone.cylinder.html
chang.shu@nokia.com81d7f5c2010-05-28 18:43:49 +00001867canvas/philip/tests/2d.gradient.radial.cone.shape2.html
1868canvas/philip/tests/2d.gradient.radial.cone.top.html
chang.shu@nokia.com81d7f5c2010-05-28 18:43:49 +00001869canvas/philip/tests/2d.gradient.radial.touch1.html
1870canvas/philip/tests/2d.gradient.radial.touch2.html
1871canvas/philip/tests/2d.gradient.radial.touch3.html
1872canvas/philip/tests/2d.imageData.create1.type.html
1873canvas/philip/tests/2d.imageData.create2.type.html
chang.shu@nokia.com81d7f5c2010-05-28 18:43:49 +00001874canvas/philip/tests/2d.imageData.get.type.html
oliver@apple.com6da1c312011-02-24 00:04:41 +00001875canvas/philip/tests/2d.imageData.object.round.html
1876canvas/philip/tests/2d.imageData.object.wrap.html
chang.shu@nokia.com81d7f5c2010-05-28 18:43:49 +00001877canvas/philip/tests/2d.imageData.put.unchanged.html
chang.shu@nokia.com81d7f5c2010-05-28 18:43:49 +00001878canvas/philip/tests/2d.line.cap.open.html
1879canvas/philip/tests/2d.line.join.open.html
chang.shu@nokia.com81d7f5c2010-05-28 18:43:49 +00001880canvas/philip/tests/2d.missingargs.html
chang.shu@nokia.com81d7f5c2010-05-28 18:43:49 +00001881canvas/philip/tests/2d.path.quadraticCurveTo.shape.html
andreas.kling@nokia.comf67d5962010-07-18 00:11:35 +00001882canvas/philip/tests/2d.path.quadraticCurveTo.scaled.html
chang.shu@nokia.com81d7f5c2010-05-28 18:43:49 +00001883canvas/philip/tests/2d.path.stroke.scale2.html
chang.shu@nokia.com81d7f5c2010-05-28 18:43:49 +00001884canvas/philip/tests/2d.pattern.image.broken.html
chang.shu@nokia.com81d7f5c2010-05-28 18:43:49 +00001885canvas/philip/tests/2d.text.draw.baseline.bottom.html
1886canvas/philip/tests/2d.text.draw.baseline.hanging.html
1887canvas/philip/tests/2d.text.draw.baseline.ideographic.html
1888canvas/philip/tests/2d.text.draw.baseline.middle.html
1889canvas/philip/tests/2d.text.draw.baseline.top.html
1890canvas/philip/tests/2d.text.draw.fill.maxWidth.fontface.html
1891canvas/philip/tests/2d.text.draw.fontface.notinpage.html
chang.shu@nokia.com81d7f5c2010-05-28 18:43:49 +00001892canvas/philip/tests/2d.text.draw.space.collapse.end.html
1893canvas/philip/tests/2d.text.draw.space.collapse.nonspace.html
1894canvas/philip/tests/2d.text.draw.space.collapse.other.html
1895canvas/philip/tests/2d.text.draw.space.collapse.space.html
1896canvas/philip/tests/2d.text.draw.space.collapse.start.html
1897canvas/philip/tests/2d.text.font.parse.basic.html
1898canvas/philip/tests/2d.text.font.parse.complex.html
1899canvas/philip/tests/2d.text.font.parse.invalid.html
1900canvas/philip/tests/2d.text.font.parse.size.percentage.default.html
1901canvas/philip/tests/2d.text.font.parse.size.percentage.html
1902canvas/philip/tests/2d.text.font.parse.system.html
1903canvas/philip/tests/2d.text.measure.width.space.html
1904canvas/philip/tests/2d.transformation.setTransform.skewed.html
1905canvas/philip/tests/2d.transformation.transform.skewed.html
chang.shu@nokia.com81d7f5c2010-05-28 18:43:49 +00001906canvas/philip/tests/type.prototype.html
robert@webkit.org051adf82010-06-08 19:44:15 +00001907
ossy@webkit.org07c4a802010-06-09 14:33:28 +00001908# [Qt] canvas/philip/tests/2d.path.stroke.overlap.html fails with Qt-4.6.2 or higher
1909# https://bugs.webkit.org/show_bug.cgi?id=40362
1910canvas/philip/tests/2d.path.stroke.overlap.html
1911
andreas.kling@nokia.come82d1682010-08-25 20:08:20 +00001912
andreas.kling@nokia.com7817c162010-11-07 13:49:39 +00001913# Failing tests after sync with Philip Taylor's upstream tests
1914canvas/philip/tests/2d.drawImage.image.incomplete.omitted.html
1915canvas/philip/tests/2d.fillStyle.parse.invalid.rgba-6.html
1916canvas/philip/tests/2d.fillStyle.parse.rgb-eof.html
1917canvas/philip/tests/2d.fillStyle.parse.rgba-eof.html
1918canvas/philip/tests/2d.imageData.put.wrongtype.html
1919canvas/philip/tests/2d.pattern.image.incomplete.empty.html
1920canvas/philip/tests/2d.pattern.image.incomplete.omitted.html
andreas.kling@nokia.com7817c162010-11-07 13:49:39 +00001921
robert@webkit.org051adf82010-06-08 19:44:15 +00001922# ============================================================================= #
1923# failing transforms tests
1924# ============================================================================= #
commit-queue@webkit.orgaa3fc332011-05-12 06:00:31 +00001925
robert@webkit.org051adf82010-06-08 19:44:15 +00001926# -- pass with --platform mac --ignore-metrics
robert@webkit.org051adf82010-06-08 19:44:15 +00001927transforms/2d/hindi-rotated.html
1928
1929# ============================================================================= #
1930# failing printing tests
1931# ============================================================================= #
1932printing/compositing-layer-printing.html
1933# Printing related layout test failure has no results, but obvious error message
1934# https://bugs.webkit.org/show_bug.cgi?id=27913
1935printing/media-queries-print.html
1936
1937# ============================================================================= #
robert@webkit.org051adf82010-06-08 19:44:15 +00001938# new tests without expected results
1939# ============================================================================= #
robert@webkit.org051adf82010-06-08 19:44:15 +00001940editing/selection/transformed-selection-rects.html
1941svg/W3C-SVG-1.1/filters-light-04-f.svg
1942
1943# ============================================================================= #
ossy@webkit.org7f2f2222010-11-30 08:56:46 +00001944# Qt 4.7 related bugs
1945# ============================================================================= #
1946
ossy@webkit.org7f2f2222010-11-30 08:56:46 +00001947# [Qt] editing/execCommand/move-selection-back-line.html fails with Qt 4.7.1
1948# https://bugs.webkit.org/show_bug.cgi?id=50144
1949editing/execCommand/move-selection-back-line.html
1950
1951# [Qt] fast/forms/textarea-appearance-wrap.html fails with Qt 4.7.1
1952# https://bugs.webkit.org/show_bug.cgi?id=50145
1953fast/forms/textarea-appearance-wrap.html
1954
1955# [Qt] 4 css2.1/t1202-counter tests fail with Qt 4.7.1
1956# https://bugs.webkit.org/show_bug.cgi?id=50146
1957css2.1/t1202-counter-09-b.html
1958css2.1/t1202-counter-15-b.html
1959css2.1/t1202-counters-09-b.html
1960css2.1/t1202-counters-15-b.html
1961
1962# [Qt] 4 fast/text tests fail with Qt 4.7.1
1963# https://bugs.webkit.org/show_bug.cgi?id=50147
1964fast/text/format-control.html
1965fast/text/justification-padding-mid-word.html
1966fast/text/zero-width-characters.html
1967fast/text/international/khmer-selection.html
1968
1969# 3 media tests fail with Qt version 4.6.3 and 4.7.0
1970# https://bugs.webkit.org/show_bug.cgi?id=46249
ossy@webkit.org7f2f2222010-11-30 08:56:46 +00001971media/video-can-play-type.html
1972media/video-delay-load-event.html
1973
1974# ============================================================================= #
robert@webkit.org051adf82010-06-08 19:44:15 +00001975# new skipped tests yet to be sorted
1976# ============================================================================= #
eric@webkit.org05a35f42010-06-16 09:12:04 +00001977
ossy@webkit.org9cf66492010-06-26 01:11:01 +00001978# [Qt] fast/text/bidi-explicit-embedding-past-end.html fails
1979# https://bugs.webkit.org/show_bug.cgi?id=41241
1980fast/text/bidi-explicit-embedding-past-end.html
commit-queue@webkit.org6501d602010-07-01 11:11:01 +00001981
tkent@chromium.org072de1d2010-07-14 07:43:12 +00001982# Need to implement inner-spin-button or outer-spin-button
1983fast/forms/input-appearance-spinbutton-disabled-readonly.html
tkent@chromium.orgeb14de02011-02-16 04:14:29 +00001984fast/forms/input-appearance-spinbutton-layer.html
tkent@chromium.org3d10af92010-07-23 00:32:24 +00001985fast/forms/input-number-events.html
tkent@chromium.org1e56d8c2010-08-25 09:37:35 +00001986fast/forms/input-spinbutton-capturing.html
tkent@chromium.org508868b2011-04-07 07:03:22 +00001987fast/forms/input-number-large-padding.html
tkent@chromium.org072de1d2010-07-14 07:43:12 +00001988
ossy@webkit.org1fdca602010-07-08 21:02:32 +00001989# [Qt] fast/dom/beforeload/script-before-load-dynamic.html is crashy-flakey
1990# https://bugs.webkit.org/show_bug.cgi?id=41452
1991fast/dom/beforeload/remove-video-in-beforeload-listener.html
ossy@webkit.orgbbc7a002010-07-12 17:28:07 +00001992
hamaji@chromium.orgd58d8e02010-07-16 06:25:48 +00001993# Need setPrinting. See https://bugs.webkit.org/show_bug.cgi?id=20011
1994printing/setPrinting.html
tonyg@chromium.org4562d5c2010-07-16 16:38:52 +00001995
ossy@webkit.org06765552010-12-17 13:07:20 +00001996# Web Timing related bugs
1997# https://bugs.webkit.org/show_bug.cgi?id=51245
tonyg@chromium.org4562d5c2010-07-16 16:38:52 +00001998fast/dom/webtiming.html
ossy@webkit.org06765552010-12-17 13:07:20 +00001999http/tests/misc/webtiming-ssl.php
ossy@webkit.org0f9c8202011-01-06 12:48:54 +00002000http/tests/misc/webtiming-origins.html
2001http/tests/misc/webtiming-slow-load.php
ap@apple.comce371392010-07-21 17:20:30 +00002002
2003# Advanced credential handling
2004http/tests/security/401-logout/401-logout.php
2005http/tests/xmlhttprequest/remember-bad-password.html
abarth@webkit.orgbfd99482010-07-21 22:46:47 +00002006
tkent@chromium.org70b62992011-05-11 09:11:36 +00002007# Need to call Settings::setInteractiveFormValidationEnabled(true).
tkent@chromium.orga2166462010-07-27 07:31:39 +00002008fast/forms/interactive-validation-prevented.html
tkent@chromium.org3db9c3d2011-03-02 07:04:18 +00002009fast/forms/interactive-validation-attach-assertion.html
tkent@chromium.orge625ce82011-03-10 23:32:54 +00002010fast/forms/interactive-validation-assertion-by-validate-twice.html
tkent@chromium.org32441d22011-03-15 00:53:53 +00002011fast/forms/interactive-validation-select-crash.html
tkent@chromium.org9a74a072011-03-24 03:48:22 +00002012fast/forms/interactive-validation-crash-by-style-override.html
tkent@chromium.org70b62992011-05-11 09:11:36 +00002013# Need to call Settings::setValidationMessageTimerMagnification(-1) in DRT.
tkent@chromium.org6f499f02011-03-30 04:14:46 +00002014fast/forms/validation-message-appearance.html
tkent@chromium.org70b62992011-05-11 09:11:36 +00002015fast/forms/validation-message-on-checkbox.html
2016fast/forms/validation-message-on-listbox.html
2017fast/forms/validation-message-on-menulist.html
2018fast/forms/validation-message-on-radio.html
2019fast/forms/validation-message-on-textarea.html
tkent@chromium.orga2166462010-07-27 07:31:39 +00002020
ossy@webkit.orge9265b62010-07-22 14:26:45 +00002021# [Qt] REGRESSION(63862): animations/play-state.html fails intermittently
2022# https://bugs.webkit.org/show_bug.cgi?id=42821
2023animations/play-state.html
ossy@webkit.org15e4f1e2010-07-23 11:24:22 +00002024
ossy@webkit.orge1b8b022010-11-05 22:34:00 +00002025# [Qt] animations tests fails which uses suspend/resume
ossy@webkit.org1c91c612010-08-12 12:00:06 +00002026# https://bugs.webkit.org/show_bug.cgi?id=43905
2027animations/suspend-resume-animation.html
ossy@webkit.orge1b8b022010-11-05 22:34:00 +00002028animations/suspend-resume-animation-events.html
2029animations/stop-animation-on-suspend.html
ossy@webkit.org1c91c612010-08-12 12:00:06 +00002030
vestbo@webkit.org1c701982010-07-27 10:05:22 +00002031# Assumes spesific metrics
2032# See http://code.google.com/p/chromium/issues/detail?id=19897
2033svg/custom/getscreenctm-in-mixed-content2.xhtml
mrobinson@webkit.orgb2e8fca2010-08-02 17:28:23 +00002034
ojan@chromium.org6d277a42010-08-18 20:51:44 +00002035# Still working out flakiness issues with the perf tests.
2036# https://bugs.webkit.org/show_bug.cgi?id=44199
2037perf/
2038
jianli@chromium.org35cdf142010-08-05 18:19:13 +00002039# BlodBuilder is not enabled
2040http/tests/local/blob/send-data-blob.html
commit-queue@webkit.org5c314242010-08-21 10:11:19 +00002041
mitz@apple.com963e24a2010-09-03 19:33:05 +00002042# https://bugs.webkit.org/show_bug.cgi?id=45194
2043fast/text/decomposed-after-stacked-diacritics.html
andreas.kling@nokia.come17b50c2010-09-12 18:35:58 +00002044
kenneth@webkit.org8a9df012010-09-13 10:37:28 +00002045# viewport meta tag tests that differ from the Opera results
2046fast/viewport/viewport-65.html
2047fast/viewport/viewport-82.html
2048fast/viewport/viewport-84.html
2049fast/viewport/viewport-87.html
2050fast/viewport/viewport-126.html
2051fast/viewport/viewport-127.html
andreas.kling@nokia.comdcd34242010-09-13 11:35:48 +00002052
2053# viewport meta tag tests that fail on the bot for yet unknown reasons
2054fast/viewport/viewport-6.html
andreas.kling@nokia.comdcd34242010-09-13 11:35:48 +00002055fast/viewport/viewport-58.html
ossy@webkit.org9e9989b2010-09-20 15:18:17 +00002056
2057# [Qt]REGRESSION? (r67762): 23 layout tests fail
2058# https://bugs.webkit.org/show_bug.cgi?id=46093
2059svg/custom/use-font-face-crash.svg
2060svg/zoom/text/zoom-coords-viewattr-01-b.svg
ossy@webkit.org9e9989b2010-09-20 15:18:17 +00002061http/tests/misc/slow-loading-image-in-pattern.html
aestes@apple.com7fb43f62010-09-20 23:01:12 +00002062
2063# Pre-HMTL5 parser quirks only apply to the mac port for now.
2064fast/parser/pre-html5-parser-quirks.html
2065
ossy@webkit.org754f0b52010-10-01 08:21:08 +00002066# https://bugs.webkit.org/show_bug.cgi?id=46966
2067# [Qt] fast/media/color-does-not-include-alpha.html fails
2068fast/media/color-does-not-include-alpha.html
abarth@webkit.orgf7a10872010-10-18 07:53:10 +00002069
2070# Requires WebP support.
2071fast/images/webp-image-decoding.html
ossy@webkit.org7d75cd32010-11-01 15:27:33 +00002072
ossy@webkit.org2ff28be2010-11-04 11:17:40 +00002073# [Qt] svg/animations/animate-path-nested-transforms.html fails
2074# https://bugs.webkit.org/show_bug.cgi?id=48987
2075svg/animations/animate-path-nested-transforms.html
ossy@webkit.orga06fcfd2010-11-10 11:03:01 +00002076svg/animations/animate-text-nested-transforms.html
ossy@webkit.org33f53322010-11-08 09:12:49 +00002077
2078# [Qt] REGRESSION (r71465): editing/selection/after-line-break.html fails
2079# https://bugs.webkit.org/show_bug.cgi?id=49127
2080editing/selection/after-line-break.html
ossy@webkit.orgda5108e2010-11-09 10:39:04 +00002081
2082# [Qt] REGRESSION (r71582): Two editing tests fail
2083# https://bugs.webkit.org/show_bug.cgi?id=49243
2084editing/deleting/delete-line-011.html
2085editing/pasteboard/paste-4039777-fix.html
tony@chromium.org25124ac2010-11-18 19:00:14 +00002086
rniwa@webkit.orgb6ce5012010-11-30 04:31:35 +00002087# REGRESSION(r72861): editing/selection/click-left-of-rtl-wrapping-text.html and modify-up-on-rtl-wrapping-text.html fail on all but Mac platform
2088# https://bugs.webkit.org/show_bug.cgi?id=50204
2089editing/selection/click-left-of-rtl-wrapping-text.html
2090editing/selection/modify-up-on-rtl-wrapping-text.html
ossy@webkit.org1a619712010-12-01 17:04:29 +00002091
antti@apple.coma48e9362010-12-13 20:30:49 +00002092# For https://bugs.webkit.org/show_bug.cgi?id=50758
2093# These require DRT setSerializeHTTPLoads implementation to be reliable.
2094http/tests/local/link-stylesheet-load-order.html
2095http/tests/local/link-stylesheet-load-order-preload.html
antti@apple.com5080b132011-03-31 23:32:34 +00002096fast/preloader/document-write.html
2097fast/preloader/document-write-2.html
ossy@webkit.org1346f8a2010-12-20 09:55:23 +00002098
2099# [Qt] fast/text/emphasis-overlap.html fails
2100# https://bugs.webkit.org/show_bug.cgi?id=51324
2101fast/text/emphasis-overlap.html
laszlo.1.gombos@nokia.comc40ff5f2011-01-03 18:12:54 +00002102
rniwa@webkit.orgd70045e2011-01-04 19:04:07 +00002103# REGRESSION(r74971): [Qt] /editing/selection/caret-bidi-first-and-last-letters.html fails
2104# https://bugs.webkit.org/show_bug.cgi?id=51884
ossy@webkit.orge445a842011-01-04 20:34:49 +00002105editing/selection/caret-bidi-first-and-last-letters.html
ossy@webkit.org7d70c732011-01-10 14:49:09 +00002106
ossy@webkit.org8c6f5b82011-01-10 18:53:50 +00002107# [Qt] fast/text/emphasis-avoid-ruby.html fails
2108# https://bugs.webkit.org/show_bug.cgi?id=52155
2109fast/text/emphasis-avoid-ruby.html
ossy@webkit.org4fbb6bb2011-01-11 13:26:40 +00002110
2111# https://bugs.webkit.org/show_bug.cgi?id=42578
2112# [Qt] DRT sideeffect revealed by r63657 and r75305
2113fast/tokenizer/flush-characters-in-document-write-evil.html
2114fast/tokenizer/flush-characters-in-document-write.html
2115fast/viewport/viewport-128.html
ossy@webkit.org4fbb6bb2011-01-11 13:26:40 +00002116fast/xmlhttprequest/null-document-xmlhttprequest-open.html
2117fast/xmlhttprequest/xmlhttprequest-nonexistent-file.html
ossy@webkit.org146ded82011-01-18 08:43:30 +00002118
jer.noble@apple.comeb640582011-01-21 02:18:47 +00002119# [Qt] LayoutTests/media/video-currentTime-delay.html fails
2120# https://bugs.webkit.org/show_bug.cgi?id=52859
2121media/video-currentTime-delay.html
ossy@webkit.orga9949722011-02-03 13:43:39 +00002122
ossy@webkit.org0559c6d2011-02-03 23:54:10 +00002123# small text which is scaled to be large renders pixelated
2124# https://bugs.webkit.org/show_bug.cgi?id=12448
2125css3/zoom-coords.xhtml
2126svg/zoom/page/zoom-zoom-coords.xhtml
jer.noble@apple.com45787e12011-02-05 07:35:54 +00002127
2128# [Qt] media/video-frame-accurate-seek.html fails
2129# https://bugs.webkit.org/show_bug.cgi?id=53843
2130media/video-frame-accurate-seek.html
robert@webkit.orgf2792e12011-02-06 10:46:45 +00002131
morrita@google.com4c99e4f2011-02-07 02:20:27 +00002132# https://bugs.webkit.org/show_bug.cgi?id=53030
2133html5lib/runner.html
2134
robert@webkit.orgf2792e12011-02-06 10:46:45 +00002135# [Qt] fast/notifications/notifications-document-close-crash.html fails after r77738
2136# https://bugs.webkit.org/show_bug.cgi?id=53868
2137fast/notifications/notifications-document-close-crash.html
2138
ossy@webkit.org4c35d4b2011-02-18 07:30:08 +00002139# [Qt]REGRESSION(r78846): editing/selection/mixed-editability-10.html
2140# https://bugs.webkit.org/show_bug.cgi?id=54725
2141editing/selection/mixed-editability-10.html
ossy@webkit.orgd98f9802011-02-18 21:40:40 +00002142
jer.noble@apple.come6ff40d2011-02-22 20:40:28 +00002143# [Qt] Generate results for media/audio-repaint.html and media/media-document-audio-repaint.html
2144# https://bugs.webkit.org/show_bug.cgi?id=54984
2145media/audio-repaint.html
ossy@webkit.org76e5fa92011-02-22 22:00:43 +00002146media/media-document-audio-repaint.html
2147
pfeldman@chromium.org81b45e52011-02-28 15:26:44 +00002148# [Qt] XML Viewer fails due to specifics in the parser implementation
2149# https://bugs.webkit.org/show_bug.cgi?id=55302
commit-queue@webkit.org7e3b8ab2011-03-31 19:27:30 +00002150http/tests/xmlviewer/extensions-api.html
pfeldman@chromium.org81b45e52011-02-28 15:26:44 +00002151http/tests/xmlviewer/dumpAsText/svg.xml
pfeldman@chromium.org81b45e52011-02-28 15:26:44 +00002152http/tests/xmlviewer/dumpAsText/xlink.xml
2153http/tests/xmlviewer/dumpAsText/xmlviewer-charset-cp1251.xml
2154http/tests/xmlviewer/dumpAsText/xmlviewer-charset-utf8.xml
2155http/tests/xmlviewer/dumpAsText/xmlviewer.xml
2156http/tests/xmlviewer/dumpAsText/xsl-stylesheet.xml
2157http/tests/xmlviewer/dumpAsText/xul.xml
commit-queue@webkit.org283a0162011-03-04 05:13:10 +00002158
ossy@webkit.org00e7c362011-03-04 12:37:04 +00002159# [Qt] Two http auth tests fail with Qt 4.7.2
2160# https://bugs.webkit.org/show_bug.cgi?id=55767
2161http/tests/appcache/auth.html
2162http/tests/xmlhttprequest/basic-auth.html
commit-queue@webkit.orgbad43c02011-03-19 21:28:57 +00002163
2164# LayoutTestController::clearApplicationCacheForOrigin is not implemented
2165http/tests/appcache/origin-delete.html
commit-queue@webkit.org13f1be62011-03-23 00:57:31 +00002166# LayoutTestController::getOriginsWithApplicationCache is not implemented
2167http/tests/appcache/origins-with-appcache.html
commit-queue@webkit.org4168acc2011-05-11 01:47:03 +00002168# LayoutTestController::applicationCacheDiskUsageForOrigin isn't implemented - https://bugs.webkit.org/show_bug.cgi?id=57127
2169http/tests/appcache/origin-usage.html
commit-queue@webkit.org895428d2011-03-21 14:40:33 +00002170
morrita@google.com72c85b82011-04-01 15:59:19 +00002171# Needs rebaseline
2172fast/dom/HTMLMeterElement/meter-element.html
2173fast/dom/HTMLMeterElement/meter-boundary-values.html
2174fast/dom/HTMLMeterElement/meter-optimums.html
2175fast/dom/HTMLMeterElement/meter-styles-changing-pseudo.html
2176fast/dom/HTMLMeterElement/meter-styles.html
2177
commit-queue@webkit.org895428d2011-03-21 14:40:33 +00002178# https://bugs.webkit.org/show_bug.cgi?id=56691
2179http/tests/inspector/network/network-size-chunked.html
commit-queue@webkit.orgfc684af2011-03-24 21:17:58 +00002180http/tests/inspector/network/network-size-sync.html
aestes@apple.combb90bb62011-03-29 04:36:28 +00002181
ossy@webkit.org768a8bb2011-03-30 18:23:11 +00002182# [Qt] media/video-playbackrate.html fails
2183# https://bugs.webkit.org/show_bug.cgi?id=57476
ossy@webkit.org427f2ad2011-03-29 22:59:41 +00002184media/video-playbackrate.html
ossy@webkit.org768a8bb2011-03-30 18:23:11 +00002185
ossy@webkit.orgf09f5142011-04-09 17:24:32 +00002186# New tests without Qt specific expected files. Need investigation.
2187animations/3d/matrix-transform-type-animation.html
2188fast/backgrounds/background-position-parsing.html
2189fast/backgrounds/positioned-root.html
2190fast/backgrounds/table-root.html
2191fast/block/basic/percent-height-inside-anonymous-block.html
2192fast/block/float/float-forced-below-other-floats.html
2193fast/block/lineboxcontain/block-font.html
2194fast/block/lineboxcontain/block-glyphs-replaced.html
2195fast/block/lineboxcontain/block-glyphs.html
2196fast/block/lineboxcontain/block-replaced.html
2197fast/block/lineboxcontain/block.html
2198fast/block/lineboxcontain/font-replaced.html
2199fast/block/lineboxcontain/font.html
2200fast/block/lineboxcontain/glyphs.html
2201fast/block/lineboxcontain/inline-box-replaced.html
2202fast/block/lineboxcontain/inline-box-vertical.html
2203fast/block/lineboxcontain/inline-box.html
2204fast/block/lineboxcontain/inline-replaced.html
2205fast/block/lineboxcontain/inline.html
2206fast/block/lineboxcontain/none.html
2207fast/block/lineboxcontain/parsing-invalid.html
2208fast/block/lineboxcontain/replaced.html
2209fast/block/positioning/complex-positioned-movement.html
2210fast/block/positioning/differing-writing-modes-replaced.html
2211fast/block/positioning/differing-writing-modes.html
2212fast/block/positioning/rtl-static-positioning-inline-block.html
2213fast/block/positioning/rtl-static-positioning.html
2214fast/block/positioning/static-distance-with-positioned-ancestor.html
2215fast/block/positioning/static-inline-position-dynamic.html
2216fast/block/positioning/table-cell-static-position.html
2217fast/block/positioning/trailing-space-test.html
2218fast/block/positioning/auto/vertical-lr/001.html
2219fast/block/positioning/auto/vertical-lr/002.html
2220fast/block/positioning/auto/vertical-lr/003.html
2221fast/block/positioning/auto/vertical-lr/004.html
2222fast/block/positioning/auto/vertical-lr/005.html
2223fast/block/positioning/auto/vertical-lr/006.html
2224fast/block/positioning/auto/vertical-lr/007.html
2225fast/block/positioning/auto/vertical-rl/001.html
2226fast/block/positioning/auto/vertical-rl/002.html
2227fast/block/positioning/auto/vertical-rl/003.html
2228fast/block/positioning/auto/vertical-rl/004.html
2229fast/block/positioning/auto/vertical-rl/005.html
2230fast/block/positioning/auto/vertical-rl/006.html
2231fast/block/positioning/auto/vertical-rl/007.html
2232fast/block/positioning/vertical-lr/001.html
2233fast/block/positioning/vertical-lr/002.html
2234fast/block/positioning/vertical-lr/003.html
2235fast/block/positioning/vertical-lr/004.html
2236fast/block/positioning/vertical-lr/005.html
2237fast/block/positioning/vertical-lr/006.html
2238fast/block/positioning/vertical-rl/001.html
2239fast/block/positioning/vertical-rl/002.html
2240fast/block/positioning/vertical-rl/003.html
2241fast/block/positioning/vertical-rl/004.html
2242fast/block/positioning/vertical-rl/005.html
2243fast/block/positioning/vertical-rl/006.html
2244fast/blockflow/Kusa-Makura-background-canvas.html
2245fast/blockflow/border-image-horizontal-bt.html
2246fast/blockflow/border-image-vertical-lr.html
2247fast/blockflow/border-image-vertical-rl.html
2248fast/blockflow/border-vertical-lr.html
2249fast/blockflow/broken-ideograph-small-caps.html
2250fast/blockflow/broken-ideographic-font.html
2251fast/blockflow/fallback-orientation.html
2252fast/blockflow/japanese-rl-text-with-broken-font.html
2253fast/blockflow/text-orientation-basic.html
2254fast/blockflow/vertical-align-table-baseline.html
2255fast/blockflow/vertical-baseline-alignment.html
2256fast/blockflow/vertical-font-fallback.html
2257fast/borders/rtl-border-01.html
2258fast/borders/rtl-border-02.html
2259fast/borders/rtl-border-03.html
2260fast/borders/rtl-border-04.html
2261fast/borders/rtl-border-05.html
2262fast/box-shadow/box-shadow-radius.html
2263fast/box-shadow/box-shadow-transformed.html
2264fast/box-shadow/inset-box-shadow-radius.html
2265fast/box-shadow/inset-box-shadows.html
2266fast/box-shadow/inset-with-extraordinary-radii-and-border.html
2267fast/box-shadow/shadow-buffer-partial.html
2268fast/box-shadow/shadow-tiling-artifact.html
2269fast/css-generated-content/table-row-before-after.html
2270fast/css/font-face-in-shadow-DOM.html
2271fast/css/h1-in-section-elements.html
2272fast/css/input-search-padding.html
2273fast/css/line-height-determined-by-primary-font.html
2274fast/css/transformed-mask.html
2275fast/dom/34176.html
2276fast/dom/52776.html
2277fast/dom/HTMLInputElement/input-slider-update.html
2278fast/dom/HTMLMeterElement/meter-appearances-capacity.html
2279fast/dom/HTMLMeterElement/meter-appearances-rating-relevancy.html
2280fast/dynamic/text-combine.html
2281fast/forms/basic-textareas-quirks.html
2282fast/forms/input-appearance-spinbutton-visibility.html
2283fast/forms/input-placeholder-visibility-1.html
2284fast/forms/input-placeholder-visibility-2.html
2285fast/forms/input-placeholder-visibility-3.html
2286fast/forms/listbox-bidi-align.html
2287fast/forms/placeholder-position.html
2288fast/forms/select-listbox-multiple-no-focusring.html
2289fast/forms/textarea-placeholder-visibility-1.html
2290fast/forms/textarea-placeholder-visibility-2.html
2291fast/forms/textfield-focus-ring.html
2292fast/history/visited-link-background-color.html
2293fast/images/gray-scale-jpeg-with-color-profile.html
2294fast/images/gray-scale-png-with-color-profile.html
2295fast/images/imagemap-circle-focus-ring.html
2296fast/images/imagemap-focus-ring-zero-outline-width.html
2297fast/images/imagemap-polygon-focus-ring.html
2298fast/images/pixel-crack-image-background-webkit-transform-scale.html
2299fast/images/support-broken-image-delegate.html
2300fast/inline/continuation-outlines-with-layers-2.html
2301fast/inline/inline-box-background-long-image.html
2302fast/inline/inline-box-background-repeat-x.html
2303fast/inline/inline-box-background-repeat-y.html
2304fast/inline/inline-box-background.html
2305fast/multicol/max-height-columns-block.html
2306fast/multicol/positioned-split.html
2307fast/multicol/scrolling-overflow.html
2308fast/multicol/vertical-lr/column-count-with-rules.html
2309fast/multicol/vertical-rl/column-count-with-rules.html
2310fast/overflow/overflow-update-transform.html
2311fast/repaint/block-layout-inline-children-float-positioned.html
2312fast/repaint/gradients-em-stops-repaint.html
2313fast/repaint/iframe-scroll-repaint.html
2314fast/repaint/inline-horizontal-bt-overflow.html
2315fast/repaint/inline-vertical-lr-overflow.html
2316fast/repaint/inline-vertical-rl-overflow.html
2317fast/repaint/repaint-across-writing-mode-boundary.html
2318fast/repaint/search-field-cancel.html
2319fast/repaint/select-option-background-color.html
2320fast/repaint/selection-rl.html
2321fast/repaint/slider-thumb-drag-release.html
2322fast/replaced/vertical-lr/absolute-position-percentage-width.html
2323fast/replaced/vertical-lr/absolute-position-with-auto-height-and-top-and-bottom.html
2324fast/replaced/vertical-lr/absolute-position-with-auto-width-and-left-and-right.html
2325fast/replaced/vertical-rl/absolute-position-percentage-width.html
2326fast/replaced/vertical-rl/absolute-position-with-auto-height-and-top-and-bottom.html
2327fast/replaced/vertical-rl/absolute-position-with-auto-width-and-left-and-right.html
2328fast/ruby/base-shorter-than-text.html
2329fast/ruby/nested-ruby.html
2330fast/table/colspanMinWidth-vertical.html
2331fast/table/dynamic-descendant-percentage-height.html
2332fast/table/relative-position-containment.html
2333fast/table/relative-position-offsets.html
2334fast/table/relative-position-stacking.html
2335fast/table/table-and-parts-outline.html
2336fast/table/table-continuation-outline-paint-crash.html
2337fast/text/decorations-transformed.html
2338fast/text/emphasis-combined-text.html
2339fast/text/emphasis-vertical.html
2340fast/text/emphasis.html
2341fast/text/hyphenate-first-word.html
2342fast/text/hyphenate-limit-before-after.html
2343fast/text/hyphenate-locale.html
2344fast/text/justify-ideograph-complex.html
2345fast/text/justify-ideograph-leading-expansion.html
2346fast/text/justify-ideograph-simple.html
2347fast/text/justify-ideograph-vertical.html
2348fast/text/international/text-combine-image-test.html
2349printing/simultaneous-position-float-change.html
2350svg/W3C-SVG-1.1-SE/text-tspan-02-b.svg
2351svg/css/path-gradient-stroke-shadow.svg
2352svg/css/shadow-changes.svg
2353svg/css/text-shadow-multiple.xhtml
2354svg/custom/SVGPaint-mutate-attribute.svg
2355svg/custom/SVGPaint-mutate-inline-style.svg
2356svg/custom/animate-target-id-changed.svg
2357svg/custom/animate-target-removed-from-document.svg
2358svg/custom/image-rescale-clip.html
2359svg/custom/mask-colorspace.svg
2360svg/custom/nested-pattern-boundingBoxModeContent.svg
2361svg/custom/path-zero-strokewidth.svg
2362svg/custom/pattern-referencing-preserve-aspect-ratio.svg
2363svg/custom/svg-curve-with-relative-cordinates.html
2364svg/custom/use-invalid-pattern.svg
2365svg/filters/feColorMatrix-offset.svg
2366svg/filters/filterRes1.svg
2367svg/filters/filterRes2.svg
2368svg/filters/filterRes3.svg
2369svg/filters/parent-children-with-same-filter.svg
2370svg/repaint/filter-repaint.svg
2371svg/text/bidi-embedded-direction.svg
2372svg/text/font-size-below-point-five-2.svg
2373svg/text/font-size-below-point-five.svg
2374svg/text/scaled-font.svg
2375svg/text/select-textLength-spacingAndGlyphs-squeeze-1.svg
2376svg/text/select-textLength-spacingAndGlyphs-squeeze-2.svg
2377svg/text/select-textLength-spacingAndGlyphs-squeeze-3.svg
2378svg/text/select-textLength-spacingAndGlyphs-squeeze-4.svg
2379svg/text/select-textLength-spacingAndGlyphs-stretch-1.svg
2380svg/text/select-textLength-spacingAndGlyphs-stretch-2.svg
2381svg/text/select-textLength-spacingAndGlyphs-stretch-3.svg
2382svg/text/small-fonts-2.svg
2383svg/text/small-fonts-3.svg
2384svg/text/small-fonts-in-html5.html
2385svg/text/small-fonts.svg
2386svg/text/text-midpoint-split-bug.svg
2387svg/text/text-path-middle-align.svg
ossy@webkit.orgf09f5142011-04-09 17:24:32 +00002388transitions/default-timing-function.html
2389http/tests/inspector/console-websocket-error.html
ossy@webkit.orgaaeaf4e2011-04-12 08:39:34 +00002390
2391# [Qt] 9 tests have different results on 64 bit and/or in debug mode compared to 32 bit and/or release mode
2392# [Qt] 6 tests have different results on 64 bit compared to 32 bit
2393# https://bugs.webkit.org/show_bug.cgi?id=52810
2394# https://bugs.webkit.org/show_bug.cgi?id=52812
2395fast/repaint/moving-shadow-on-container.html
2396fast/repaint/moving-shadow-on-path.html
ossy@webkit.orgaaeaf4e2011-04-12 08:39:34 +00002397svg/clip-path/deep-nested-clip-in-mask-different-unitTypes.svg
2398svg/css/stars-with-shadow.html
2399svg/custom/circular-marker-reference-1.svg
2400svg/custom/circular-marker-reference-2.svg
2401svg/custom/circular-marker-reference-3.svg
2402svg/custom/circular-marker-reference-4.svg
ossy@webkit.org4512b592011-06-06 14:57:30 +00002403svg/custom/embedding-external-svgs.xhtml
ossy@webkit.orgaaeaf4e2011-04-12 08:39:34 +00002404svg/custom/empty-merge.svg
2405svg/custom/non-circular-marker-reference.svg
2406svg/custom/non-scaling-stroke-markers.svg
ossy@webkit.org6cd3a602011-06-06 12:23:09 +00002407svg/custom/object-sizing-explicit-width-height.xhtml
ossy@webkit.orgaaeaf4e2011-04-12 08:39:34 +00002408svg/custom/recursive-filter.svg
2409svg/custom/relative-sized-inner-svg.xhtml
2410svg/custom/relative-sized-use-on-symbol.xhtml
2411svg/custom/relative-sized-use-without-attributes-on-symbol.xhtml
2412svg/custom/resource-invalidate-on-target-update.svg
2413svg/custom/stroked-pattern.svg
2414svg/custom/text-rotated-gradient.svg
2415svg/custom/use-css-events.svg
2416svg/custom/use-detach.svg
2417svg/custom/use-on-symbol-inside-pattern.svg
2418svg/filters/feColorMatrix-values.svg
2419svg/filters/filteredImage.svg
2420svg/overflow/overflow-on-inner-svg-element.svg
ossy@webkit.orgadd524a2011-04-14 20:24:20 +00002421svg/text/text-align-05-b.svg
ossy@webkit.orgaaeaf4e2011-04-12 08:39:34 +00002422svg/W3C-SVG-1.1/animate-elem-06-t.svg
2423svg/W3C-SVG-1.1/extend-namespace-01-f.svg
2424svg/W3C-SVG-1.1/painting-marker-03-f.svg
2425svg/W3C-SVG-1.1/paths-data-03-f.svg
2426svg/W3C-SVG-1.1-SE/types-dom-05-b.svg
2427svg/W3C-SVG-1.1/struct-frag-02-t.svg
2428svg/W3C-SVG-1.1/struct-frag-03-t.svg
2429svg/W3C-SVG-1.1/text-align-04-b.svg
2430svg/zoom/page/zoom-mask-with-percentages.svg
ossy@webkit.org997847f2011-04-12 11:09:05 +00002431
2432# [Qt] inspector/styles/styles-disable-then-enable.html make inspector/styles/styles-iframe.html fail in debug mode
2433# https://bugs.webkit.org/show_bug.cgi?id=58313
2434inspector/styles/styles-disable-then-enable.html
ossy@webkit.org9267fe62011-04-14 09:56:25 +00002435
ossy@webkit.org1f3c2b52011-04-14 18:33:24 +00002436# [Qt] fast/transforms/scrollIntoView-transformed.html fails
2437# https://bugs.webkit.org/show_bug.cgi?id=58559
2438fast/transforms/scrollIntoView-transformed.html
andreas.kling@nokia.com1d825bc2011-04-15 20:56:18 +00002439
2440# Stuff Kling broke while happy-hacking DRT (r84010, r84012)
2441fast/css/font-face-repeated-url.html
andreas.kling@nokia.comd8690d62011-05-09 14:06:43 +00002442
2443# We cannot implement FrameLoaderClient::canHandleRequest() since QNAM doesn't know
2444# whether or not a given scheme is supported prior to createRequest().
2445# This means we will never reach FrameLoaderClient::dispatchUnableToImplementPolicy()
2446# due to spaceballs:// being an unhandled scheme, and thus the expected warning
2447# will not be in the output.
andreas.kling@nokia.com1d825bc2011-04-15 20:56:18 +00002448http/tests/misc/redirect-to-external-url.html
kinuko@chromium.org66e0cf72011-04-15 23:58:43 +00002449
evan@chromium.org9c3b5042011-04-18 22:58:38 +00002450# Expose title direction in WebKit API
2451# https://bugs.webkit.org/show_bug.cgi?id=58845
2452fast/dom/title-directionality.html
rniwa@webkit.org2c8b9b42011-04-19 21:15:18 +00002453
2454# fast/text/zero-width-characters-complex-script fails on Chrome and Qt on Linux
2455# https://bugs.webkit.org/show_bug.cgi?id=58741
2456fast/text/zero-width-characters-complex-script.html
ossy@webkit.orgb19bdf02011-04-20 10:57:51 +00002457
ossy@webkit.org64071672011-04-22 11:24:29 +00002458# [Qt]fast/url/idna tests fail
2459# https://bugs.webkit.org/show_bug.cgi?id=59187
2460fast/url/idna2003.html
2461fast/url/idna2008.html
xji@chromium.orgeca41002011-04-23 01:09:28 +00002462
2463# https://bugs.webkit.org/show_bug.cgi?id=59265
2464editing/selection/move-by-word-visually.html
ossy@webkit.org837f11a2011-04-25 17:47:28 +00002465
2466# [Qt] New tests introduced in r84742 fail
2467# https://bugs.webkit.org/show_bug.cgi?id=59334
2468http/tests/misc/will-send-request-returns-null-on-redirect.html
2469http/tests/security/XFrameOptions/x-frame-options-deny.html
2470http/tests/security/XFrameOptions/x-frame-options-parent-same-origin-deny.html
ossy@webkit.orgbf23db92011-04-27 15:44:29 +00002471
2472# [Qt] Migrate to Debian Squeeze
2473# https://bugs.webkit.org/show_bug.cgi?id=59609
2474fast/workers/storage/use-same-database-in-page-and-workers.html
2475svg/W3C-SVG-1.1/struct-image-06-t.svg
2476http/tests/loading/preload-slow-loading.php
2477http/tests/security/contentSecurityPolicy/media-src-allowed.html
2478http/tests/security/contentSecurityPolicy/media-src-blocked.html
dino@apple.com9173d972011-04-29 18:15:06 +00002479
commit-queue@webkit.org084ff962011-05-09 11:00:47 +00002480# This platform does not support the Page Visibility API.
2481fast/events/page-visibility-iframe-delete-test.html
2482fast/events/page-visibility-iframe-move-test.html
2483fast/events/page-visibility-iframe-propagation-test.html
2484fast/events/page-visibility-transition-test.html
andreas.kling@nokia.com3b5690e2011-05-09 15:23:01 +00002485
2486# Fails with Qt 4.7.3.
2487http/tests/inspector/network/download.html
2488http/tests/inspector/network/x-frame-options-deny.html
ossy@webkit.org88951fd2011-05-10 12:30:44 +00002489
commit-queue@webkit.orgef45a5d2011-05-17 00:50:20 +00002490# Unskip after implementing LayoutTestController::setDefersLoading and ::goBack.
2491loader/navigation-while-deferring-loads.html
2492
ossy@webkit.org88951fd2011-05-10 12:30:44 +00002493# [Qt] fast/events/backspace-nagivates-back fails on Qt bots (Mac and Linux)
2494# https://bugs.webkit.org/show_bug.cgi?id=60311
2495fast/events/backspace-navigates-back.html
ossy@webkit.org5a202012011-05-14 08:48:19 +00002496
2497# [Qt]fast/events/remove-target-in-mouseup* tests fail
2498# https://bugs.webkit.org/show_bug.cgi?id=60833
2499fast/events/remove-target-in-mouseup-deep.html
2500fast/events/remove-target-in-mouseup-insertback.html
2501fast/events/remove-target-in-mouseup-twice.html
2502fast/events/remove-target-in-mouseup.html
2503
rniwa@webkit.orgb60f9a22011-05-24 19:51:54 +00002504# [Qt] Selectstart event tests added by r87096 are failing on Qt
2505# https://bugs.webkit.org/show_bug.cgi?id=61322
2506fast/events/selectstart-by-double-triple-clicks.html
2507fast/events/selectstart-by-drag.html
mihaip@chromium.org7ef8e032011-05-26 19:53:00 +00002508
morrita@google.comed0e0162011-06-01 02:25:47 +00002509# LayoutTestController::setTextDirection is not implemented.
2510fast/html/set-text-direction.html
2511
mihaip@chromium.org7ef8e032011-05-26 19:53:00 +00002512# JSC does not support setIsolatedWorldSecurityOrigin (http://webkit.org/b/61540)
2513http/tests/security/isolatedWorld/cross-origin-xhr.html
dglazkov@chromium.orgb4a80372011-06-02 20:15:34 +00002514
2515# https://bugs.webkit.org/show_bug.cgi?id=61074
2516fast/harness/internals-object.html
ossy@webkit.org24990772011-06-06 11:12:21 +00002517
2518# failing new tests
2519fast/block/float/overhanging-tall-block.html
2520fast/backgrounds/border-radius-split-background-image.html
2521fast/backgrounds/border-radius-split-background.html
2522fast/blockflow/border-styles-vertical-lr.html
2523fast/blockflow/border-styles-vertical-rl.html
2524fast/borders/border-antialiasing.html
2525fast/borders/border-styles-split.html
2526fast/borders/mixed-border-styles-radius2.html
2527fast/box-shadow/scaled-box-shadow.html
2528fast/box-shadow/single-pixel-shadow.html
2529fast/text/selection-rect-rounding.html
ossy@webkit.org4c825ae2011-06-06 13:33:22 +00002530svg/as-object/object-box-sizing-no-width-height.html
ossy@webkit.org24990772011-06-06 11:12:21 +00002531svg/custom/object-sizing-explicit-height.xhtml
2532svg/custom/object-sizing-explicit-width.xhtml
2533svg/zoom/page/zoom-svg-through-object-with-absolute-size.xhtml
2534svg/zoom/page/zoom-svg-through-object-with-huge-size.xhtml
2535svg/zoom/page/zoom-svg-through-object-with-override-size.html
2536svg/zoom/page/zoom-svg-through-object-with-percentage-size.xhtml
2537svg/zoom/page/zoom-svg-through-object-with-text.xhtml
2538svg/custom/object-no-size-attributes.xhtml
2539svg/custom/painting-marker-07-f-inherit.svg
2540svg/custom/small-rect-scale.svg
2541svg/filters/feConvolveFilter-y-bounds.svg
2542svg/zoom/page/zoom-svg-through-object-with-absolute-size-2.xhtml
ossy@webkit.org4c825ae2011-06-06 13:33:22 +00002543svg/zoom/page/zoom-svg-through-object-with-auto-size.html
ossy@webkit.org24990772011-06-06 11:12:21 +00002544http/tests/misc/object-embedding-svg-delayed-size-negotiation.xhtml
ossy@webkit.org534882d2011-06-08 06:13:06 +00002545
2546# New tests introduced in r88307, but fail on Qt
2547# https://bugs.webkit.org/show_bug.cgi?id=54417
2548fast/events/touch/touch-gesture-click.html
2549fast/events/touch/touch-gesture-scroll.html