Rename metadata directories

This renames:
 - `tests/wpt/metadata` → `tests/wpt/meta-legacy-layout`
 - `tests/wpt/metadata-layout-2020` → `tests/wpt/meta`
 - `tests/wpt/mozilla/meta` → `tests/wpt/mozilla/meta-legacy-layout`
 - `tests/wpt/mozilla/meta-layout-2020` → `tests/wpt/mozilla/meta`
This commit is contained in:
Martin Robinson 2023-06-22 14:35:02 +02:00
parent cfd24f00bc
commit f4578afdfe
No known key found for this signature in database
GPG key ID: D56AA4FA55EFE6F8
23708 changed files with 772645 additions and 694 deletions

View file

@ -0,0 +1,4 @@
[2d.imageData.create1.basic.html]
[createImageData(imgdata) exists and returns something]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.create1.basic.worker.html]
[createImageData(imgdata) exists and returns something]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.create1.initial.html]
[createImageData(imgdata) returns transparent black data of the right size]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.create1.initial.worker.html]
[createImageData(imgdata) returns transparent black data of the right size]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.create1.zero.html]
[createImageData(null) throws TypeError]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.create1.zero.worker.html]
[createImageData(null) throws TypeError]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.create2.basic.html]
[createImageData(sw, sh) exists and returns something]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.create2.basic.worker.html]
[createImageData(sw, sh) exists and returns something]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.create2.initial.html]
[createImageData(sw, sh) returns transparent black data of the right size]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.create2.initial.worker.html]
[createImageData(sw, sh) returns transparent black data of the right size]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.create2.large.html]
[createImageData(sw, sh) works for sizes much larger than the canvas]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.create2.large.worker.html]
[createImageData(sw, sh) works for sizes much larger than the canvas]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.create2.negative.html]
[createImageData(sw, sh) takes the absolute magnitude of the size arguments]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.create2.negative.worker.html]
[createImageData(sw, sh) takes the absolute magnitude of the size arguments]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.create2.nonfinite.html]
[createImageData() throws TypeError if arguments are not finite]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.create2.nonfinite.worker.html]
[createImageData() throws TypeError if arguments are not finite]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.create2.round.html]
[createImageData(w, h) is rounded the same as getImageData(0, 0, w, h)]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.create2.round.worker.html]
[createImageData(w, h) is rounded the same as getImageData(0, 0, w, h)]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.create2.zero.html]
[createImageData(sw, sh) throws INDEX_SIZE_ERR if size is zero]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.create2.zero.worker.html]
[createImageData(sw, sh) throws INDEX_SIZE_ERR if size is zero]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.basic.html]
[getImageData() exists and returns something]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.basic.worker.html]
[getImageData() exists and returns something]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.clamp.html]
[getImageData() clamps colours to the range [0, 255\]]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.clamp.worker.html]
[getImageData() clamps colours to the range [0, 255\]]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.large.crash.html]
expected: TIMEOUT
[Test that canvas crash when image data cannot be allocated.]
expected: TIMEOUT

View file

@ -0,0 +1,4 @@
[2d.imageData.get.length.html]
[getImageData() returns a correctly-sized Uint8ClampedArray]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.length.worker.html]
[getImageData() returns a correctly-sized Uint8ClampedArray]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.nonfinite.html]
[getImageData() throws TypeError if arguments are not finite]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.nonfinite.worker.html]
[getImageData() throws TypeError if arguments are not finite]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.nonpremul.html]
[getImageData() returns non-premultiplied colours]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.nonpremul.worker.html]
[getImageData() returns non-premultiplied colours]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.order.alpha.html]
[getImageData() returns A in the fourth component]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.order.alpha.worker.html]
[getImageData() returns A in the fourth component]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.order.cols.html]
[getImageData() returns leftmost columns first]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.order.cols.worker.html]
[getImageData() returns leftmost columns first]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.order.rgb.html]
[getImageData() returns R then G then B]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.order.rgb.worker.html]
[getImageData() returns R then G then B]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.order.rows.html]
[getImageData() returns topmost rows first]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.order.rows.worker.html]
[getImageData() returns topmost rows first]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.range.html]
[getImageData() returns values in the range [0, 255\]]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.range.worker.html]
[getImageData() returns values in the range [0, 255\]]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.source.negative.html]
[getImageData() works with negative width and height, and returns top-to-bottom left-to-right]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.source.negative.worker.html]
[getImageData() works with negative width and height, and returns top-to-bottom left-to-right]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.source.outside.html]
[getImageData() returns transparent black outside the canvas]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.source.outside.worker.html]
[getImageData() returns transparent black outside the canvas]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.source.size.html]
[getImageData() returns bigger ImageData for bigger source rectangle]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.source.size.worker.html]
[getImageData() returns bigger ImageData for bigger source rectangle]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.tiny.html]
[getImageData() works for sizes smaller than one pixel]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.tiny.worker.html]
[getImageData() works for sizes smaller than one pixel]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.unaffected.html]
[getImageData() is not affected by context state]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.unaffected.worker.html]
[getImageData() is not affected by context state]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.zero.html]
[getImageData() throws INDEX_SIZE_ERR if size is zero]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.get.zero.worker.html]
[getImageData() throws INDEX_SIZE_ERR if size is zero]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.object.clamp.html]
[ImageData.data clamps numbers to [0, 255\]]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.object.clamp.worker.html]
[ImageData.data clamps numbers to [0, 255\]]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.object.nan.html]
[ImageData.data converts NaN to 0]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.object.nan.worker.html]
[ImageData.data converts NaN to 0]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.object.properties.html]
[ImageData objects have the right properties]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.object.properties.worker.html]
[ImageData objects have the right properties]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.object.readonly.html]
[ImageData objects properties are read-only]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.object.readonly.worker.html]
[ImageData objects properties are read-only]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.object.round.html]
[ImageData.data rounds numbers with round-to-zero]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.object.round.worker.html]
[ImageData.data rounds numbers with round-to-zero]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.object.set.html]
[ImageData.data can be modified]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.object.set.worker.html]
[ImageData.data can be modified]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.object.string.html]
[ImageData.data converts strings to numbers with ToNumber]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.object.string.worker.html]
[ImageData.data converts strings to numbers with ToNumber]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.object.undefined.html]
[ImageData.data converts undefined to 0]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.object.undefined.worker.html]
[ImageData.data converts undefined to 0]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.alpha.html]
[putImageData() puts non-solid image data correctly]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.alpha.worker.html]
[putImageData() puts non-solid image data correctly]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.basic.html]
[putImageData() puts image data from getImageData() onto the canvas]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.basic.worker.html]
[putImageData() puts image data from getImageData() onto the canvas]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.clip.html]
[putImageData() is not affected by clipping regions]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.clip.worker.html]
[putImageData() is not affected by clipping regions]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.created.html]
[putImageData() puts image data from createImageData() onto the canvas]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.created.worker.html]
[putImageData() puts image data from createImageData() onto the canvas]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.cross.html]
[putImageData() accepts image data got from a different canvas]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.cross.worker.html]
[putImageData() accepts image data got from a different canvas]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.dirty.negative.html]
[putImageData() handles negative-sized dirty rectangles correctly]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.dirty.negative.worker.html]
[putImageData() handles negative-sized dirty rectangles correctly]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.dirty.outside.html]
[putImageData() handles dirty rectangles outside the canvas correctly]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.dirty.outside.worker.html]
[putImageData() handles dirty rectangles outside the canvas correctly]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.dirty.rect1.html]
[putImageData() only modifies areas inside the dirty rectangle, using width and height]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.dirty.rect1.worker.html]
[putImageData() only modifies areas inside the dirty rectangle, using width and height]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.dirty.rect2.html]
[putImageData() only modifies areas inside the dirty rectangle, using x and y]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.dirty.rect2.worker.html]
[putImageData() only modifies areas inside the dirty rectangle, using x and y]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.dirty.zero.html]
[putImageData() with zero-sized dirty rectangle puts nothing]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.dirty.zero.worker.html]
[putImageData() with zero-sized dirty rectangle puts nothing]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.modified.html]
[putImageData() puts modified image data correctly]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.modified.worker.html]
[putImageData() puts modified image data correctly]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.nonfinite.html]
[putImageData() throws TypeError if arguments are not finite]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.nonfinite.worker.html]
[putImageData() throws TypeError if arguments are not finite]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.null.html]
[putImageData() with null imagedata throws TypeError]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.null.worker.html]
[putImageData() with null imagedata throws TypeError]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.path.html]
[putImageData() does not affect the current path]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.path.worker.html]
[putImageData() does not affect the current path]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.unaffected.html]
[putImageData() is not affected by context state]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.unaffected.worker.html]
[putImageData() is not affected by context state]
expected: FAIL

View file

@ -0,0 +1,4 @@
[2d.imageData.put.unchanged.html]
[putImageData(getImageData(...), ...) has no effect]
expected: FAIL

Some files were not shown because too many files have changed in this diff Show more