mirror of
https://github.com/servo/servo.git
synced 2025-09-11 23:48:21 +01:00
Update web-platform-tests to revision b'b73a0a32890ff293961eb55bb90ba57a5a711f48' (#32010)
This commit is contained in:
parent
1ffa61aabf
commit
05f1bbf0a9
765 changed files with 19221 additions and 3164 deletions
|
@ -0,0 +1,15 @@
|
|||
[grid-column-gap-computed.html]
|
||||
[Property grid-column-gap value 'normal']
|
||||
expected: FAIL
|
||||
|
||||
[Property grid-column-gap value 'calc(10px + 0.5em)']
|
||||
expected: FAIL
|
||||
|
||||
[Property grid-column-gap value 'calc(10px - 0.5em)']
|
||||
expected: FAIL
|
||||
|
||||
[Property grid-column-gap value '40%']
|
||||
expected: FAIL
|
||||
|
||||
[Property grid-column-gap value 'calc(50% + 60px)']
|
||||
expected: FAIL
|
|
@ -0,0 +1,18 @@
|
|||
[grid-column-gap-valid.html]
|
||||
[e.style['grid-column-gap'\] = "normal" should set the property value]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['grid-column-gap'\] = "0" should set the property value]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['grid-column-gap'\] = "1px" should set the property value]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['grid-column-gap'\] = "calc(2em + 3ex)" should set the property value]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['grid-column-gap'\] = "4%" should set the property value]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['grid-column-gap'\] = "5vmin" should set the property value]
|
||||
expected: FAIL
|
|
@ -0,0 +1,33 @@
|
|||
[grid-gap-computed.html]
|
||||
[Property grid-gap value 'normal']
|
||||
expected: FAIL
|
||||
|
||||
[Property grid-gap value '10px']
|
||||
expected: FAIL
|
||||
|
||||
[Property grid-gap value '20%']
|
||||
expected: FAIL
|
||||
|
||||
[Property grid-gap value 'calc(20% + 10px)']
|
||||
expected: FAIL
|
||||
|
||||
[Property grid-gap value 'calc(-0.5em + 10px)']
|
||||
expected: FAIL
|
||||
|
||||
[Property grid-gap value 'calc(0.5em + 10px)']
|
||||
expected: FAIL
|
||||
|
||||
[Property grid-gap value 'normal 10px']
|
||||
expected: FAIL
|
||||
|
||||
[Property grid-gap value '10px 20%']
|
||||
expected: FAIL
|
||||
|
||||
[Property grid-gap value '20% calc(20% + 10px)']
|
||||
expected: FAIL
|
||||
|
||||
[Property grid-gap value 'calc(20% + 10px) normal']
|
||||
expected: FAIL
|
||||
|
||||
[Property grid-gap value 'calc(-0.5em + 10px) calc(0.5em + 10px)']
|
||||
expected: FAIL
|
|
@ -0,0 +1,36 @@
|
|||
[grid-gap-shorthand.html]
|
||||
[e.style['gap'\] = "normal" should set column-gap]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['gap'\] = "normal" should set row-gap]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['gap'\] = "normal" should not set unrelated longhands]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['gap'\] = "10px 20%" should set column-gap]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['gap'\] = "10px 20%" should set row-gap]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['gap'\] = "10px 20%" should not set unrelated longhands]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['gap'\] = "10px normal" should set column-gap]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['gap'\] = "10px normal" should set row-gap]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['gap'\] = "10px normal" should not set unrelated longhands]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['gap'\] = "normal calc(20% + 10px)" should set grid-column-gap]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['gap'\] = "normal calc(20% + 10px)" should set grid-row-gap]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['gap'\] = "normal calc(20% + 10px)" should not set unrelated longhands]
|
||||
expected: FAIL
|
27
tests/wpt/meta/css/css-align/parsing/grid-gap-valid.html.ini
Normal file
27
tests/wpt/meta/css/css-align/parsing/grid-gap-valid.html.ini
Normal file
|
@ -0,0 +1,27 @@
|
|||
[grid-gap-valid.html]
|
||||
[e.style['grid-gap'\] = "normal normal" should set the property value]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['grid-gap'\] = "10px 10px" should set the property value]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['grid-gap'\] = "20% 20%" should set the property value]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['grid-gap'\] = "calc(20% + 10px) calc(20% + 10px)" should set the property value]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['grid-gap'\] = "normal 10px" should set the property value]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['grid-gap'\] = "10px 20%" should set the property value]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['grid-gap'\] = "20% calc(20% + 10px)" should set the property value]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['grid-gap'\] = "calc(20% + 10px) 0px" should set the property value]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['grid-gap'\] = "0px normal" should set the property value]
|
||||
expected: FAIL
|
|
@ -0,0 +1,18 @@
|
|||
[grid-row-gap-computed.html]
|
||||
[Property grid-row-gap value 'normal']
|
||||
expected: FAIL
|
||||
|
||||
[Property grid-row-gap value '10px']
|
||||
expected: FAIL
|
||||
|
||||
[Property grid-row-gap value '20%']
|
||||
expected: FAIL
|
||||
|
||||
[Property grid-row-gap value 'calc(20% + 10px)']
|
||||
expected: FAIL
|
||||
|
||||
[Property grid-row-gap value 'calc(-0.5em + 10px)']
|
||||
expected: FAIL
|
||||
|
||||
[Property grid-row-gap value 'calc(0.5em + 10px)']
|
||||
expected: FAIL
|
|
@ -0,0 +1,15 @@
|
|||
[grid-row-gap-valid.html]
|
||||
[e.style['grid-row-gap'\] = "normal" should set the property value]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['grid-row-gap'\] = "10px" should set the property value]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['grid-row-gap'\] = "20%" should set the property value]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['grid-row-gap'\] = "calc(20% + 10px)" should set the property value]
|
||||
expected: FAIL
|
||||
|
||||
[e.style['grid-row-gap'\] = "0" should set the property value]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[clip-opacity-out-of-flow.html]
|
||||
expected: FAIL
|
|
@ -3523,3 +3523,120 @@
|
|||
|
||||
[Property color value 'color(from color(from color(xyz-d65 0.99 0.88 0.77) xyz-d65 x y z) xyz-d65 x y z)']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'rgb(from rgb(from rebeccapurple r g b / calc(alpha + 0.5)) r g b / calc(alpha - 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'rgb(from rgb(from rebeccapurple r g b / calc(alpha - 1.5)) r g b / calc(alpha + 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color-mix(in srgb, rgb(from rebeccapurple none g b), rebeccapurple)']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'hsl(from hsl(from rebeccapurple h s l / calc(alpha + 0.5)) h s l / calc(alpha - 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'hsl(from hsl(from rebeccapurple h s l / calc(alpha - 1.5)) h s l / calc(alpha + 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color-mix(in hsl, hsl(from rebeccapurple none s l), rebeccapurple)']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'hwb(from hwb(from rebeccapurple h w b / calc(alpha + 0.5)) h w b / calc(alpha - 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'hwb(from hwb(from rebeccapurple h w b / calc(alpha - 1.5)) h w b / calc(alpha + 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color-mix(in hwb, hwb(from rebeccapurple none w b), rebeccapurple)']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'lab(from lab(from lab(25 20 50) l a b / calc(alpha + 0.5)) l a b / calc(alpha - 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'lab(from lab(from lab(25 20 50) l a b / calc(alpha - 1.5)) l a b / calc(alpha + 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color-mix(in lab, lab(from lab(25 20 50) none a b), lab(25 20 50))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'oklab(from oklab(from oklab(0.25 0.2 0.5) l a b / calc(alpha + 0.5)) l a b / calc(alpha - 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'oklab(from oklab(from oklab(0.25 0.2 0.5) l a b / calc(alpha - 1.5)) l a b / calc(alpha + 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color-mix(in oklab, oklab(from oklab(0.25 0.2 0.5) none a b), oklab(0.25 0.2 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'lch(from lch(from lch(0.7 45 30) l c h / calc(alpha + 0.5)) l c h / calc(alpha - 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'lch(from lch(from lch(0.7 45 30) l c h / calc(alpha - 1.5)) l c h / calc(alpha + 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color-mix(in lch, lch(from lch(0.7 45 30) l c none), lch(0.7 45 30))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'oklch(from oklch(from oklch(0.7 0.45 30) l c h / calc(alpha + 0.5)) l c h / calc(alpha - 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'oklch(from oklch(from oklch(0.7 0.45 30) l c h / calc(alpha - 1.5)) l c h / calc(alpha + 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color-mix(in oklch, oklch(from oklch(0.7 0.45 30) l c none), oklch(0.7 0.45 30))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color(from color(from color(srgb 0.7 0.5 0.3) srgb r g b / calc(alpha + 0.5)) srgb r g b / calc(alpha - 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color(from color(from color(srgb 0.7 0.5 0.3) srgb r g b / calc(alpha - 1.5)) srgb r g b / calc(alpha + 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color(from color(from color(srgb-linear 0.7 0.5 0.3) srgb-linear r g b / calc(alpha + 0.5)) srgb-linear r g b / calc(alpha - 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color(from color(from color(srgb-linear 0.7 0.5 0.3) srgb-linear r g b / calc(alpha - 1.5)) srgb-linear r g b / calc(alpha + 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color(from color(from color(a98-rgb 0.7 0.5 0.3) a98-rgb r g b / calc(alpha + 0.5)) a98-rgb r g b / calc(alpha - 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color(from color(from color(a98-rgb 0.7 0.5 0.3) a98-rgb r g b / calc(alpha - 1.5)) a98-rgb r g b / calc(alpha + 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color(from color(from color(rec2020 0.7 0.5 0.3) rec2020 r g b / calc(alpha + 0.5)) rec2020 r g b / calc(alpha - 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color(from color(from color(rec2020 0.7 0.5 0.3) rec2020 r g b / calc(alpha - 1.5)) rec2020 r g b / calc(alpha + 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color(from color(from color(prophoto-rgb 0.7 0.5 0.3) prophoto-rgb r g b / calc(alpha + 0.5)) prophoto-rgb r g b / calc(alpha - 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color(from color(from color(prophoto-rgb 0.7 0.5 0.3) prophoto-rgb r g b / calc(alpha - 1.5)) prophoto-rgb r g b / calc(alpha + 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color(from color(from color(display-p3 0.7 0.5 0.3) display-p3 r g b / calc(alpha + 0.5)) display-p3 r g b / calc(alpha - 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color(from color(from color(display-p3 0.7 0.5 0.3) display-p3 r g b / calc(alpha - 1.5)) display-p3 r g b / calc(alpha + 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color(from color(from color(xyz 7 -20.5 100) xyz x y z / calc(alpha + 0.5)) xyz x y z / calc(alpha - 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color(from color(from color(xyz 7 -20.5 100) xyz x y z / calc(alpha - 1.5)) xyz x y z / calc(alpha + 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color(from color(from color(xyz-d50 7 -20.5 100) xyz-d50 x y z / calc(alpha + 0.5)) xyz-d50 x y z / calc(alpha - 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color(from color(from color(xyz-d50 7 -20.5 100) xyz-d50 x y z / calc(alpha - 1.5)) xyz-d50 x y z / calc(alpha + 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color(from color(from color(xyz-d65 7 -20.5 100) xyz-d65 x y z / calc(alpha + 0.5)) xyz-d65 x y z / calc(alpha - 0.5))']
|
||||
expected: FAIL
|
||||
|
||||
[Property color value 'color(from color(from color(xyz-d65 7 -20.5 100) xyz-d65 x y z / calc(alpha - 1.5)) xyz-d65 x y z / calc(alpha + 0.5))']
|
||||
expected: FAIL
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
[font-size-adjust-reload.html]
|
||||
expected: TIMEOUT
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-001.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-004.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-005.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-006.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-007.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-008.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-009.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-010.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-011.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-012.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-013.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-015.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-016.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-017.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-019.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-with-abspos-001.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-with-abspos-002.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-with-abspos-003.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-with-abspos-004.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-with-abspos-005.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-with-abspos-006.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-with-abspos-007.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-with-abspos-008.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-with-abspos-009.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[line-clamp-with-abspos-010.tentative.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[text-align-last-justify-br.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,15 @@
|
|||
[starting-style-parsing.html]
|
||||
[@starting-style is valid]
|
||||
expected: FAIL
|
||||
|
||||
[@starting-style div is not valid]
|
||||
expected: FAIL
|
||||
|
||||
[@starting-style () is not valid]
|
||||
expected: FAIL
|
||||
|
||||
[@starting-style ( {} is not valid]
|
||||
expected: FAIL
|
||||
|
||||
[@starting-style } is not valid]
|
||||
expected: FAIL
|
|
@ -0,0 +1,3 @@
|
|||
[starting-style-adjustment.html]
|
||||
[The display property in <legend> @starting-style should be blockified so no transition should start]
|
||||
expected: FAIL
|
|
@ -0,0 +1,48 @@
|
|||
[container-progress-computed.tentative.html]
|
||||
[container-progress(height from 0px to 1px) should be used-value-equivalent to 322]
|
||||
expected: FAIL
|
||||
|
||||
[container-progress(width of my-container from 0px to 1px) should be used-value-equivalent to 322]
|
||||
expected: FAIL
|
||||
|
||||
[container-progress(height from container-progress(height from 0px to 1px) * 1px to container-progress(height from 0px to 1px) * 1px) should be used-value-equivalent to 0]
|
||||
expected: FAIL
|
||||
|
||||
[container-progress(height from container-progress(height from 0px to 1px) * 0.5px to container-progress(height from 0px to 1px) * 1px) should be used-value-equivalent to 1]
|
||||
expected: FAIL
|
||||
|
||||
[container-progress(height from container-progress(width of my-container from 0px to 1px) * 1px to container-progress(height of my-container-2 from 0px to 1px) * 1px) should be used-value-equivalent to 0]
|
||||
expected: FAIL
|
||||
|
||||
[calc(container-progress(width from 0px to 50px) * 10px + 100px) should be used-value-equivalent to 145.6px]
|
||||
expected: FAIL
|
||||
|
||||
[calc(container-progress(height from 10px to sign(50px - 500em) * 10px)) should be used-value-equivalent to -15.6]
|
||||
expected: FAIL
|
||||
|
||||
[calc(container-progress(width of my-container from 0px to 50px) * 10px + 100px) should be used-value-equivalent to 164.4px]
|
||||
expected: FAIL
|
||||
|
||||
[calc(container-progress(height of my-container from 10px to sign(50px - 500em) * 10px)) should be used-value-equivalent to -10.9]
|
||||
expected: FAIL
|
||||
|
||||
[container-progress(width of non-existing-container from 0px to 1px) should be used-value-equivalent to 1024]
|
||||
expected: FAIL
|
||||
|
||||
[container-progress(height of non-existing-container from 0px to 1px) should be used-value-equivalent to 740]
|
||||
expected: FAIL
|
||||
|
||||
[container-progress(width of out-of-scope-container from 0px to 1px) should be used-value-equivalent to 1024]
|
||||
expected: FAIL
|
||||
|
||||
[container-progress(height of out-of-scope-container from 0px to 1px) should be used-value-equivalent to 740]
|
||||
expected: FAIL
|
||||
|
||||
[calc(container-progress(width from 0px to 1px) * 1px) should be used-value-equivalent to 228px]
|
||||
expected: FAIL
|
||||
|
||||
[calc(container-progress(height of my-container from 0px to 1px) * 1s) should be used-value-equivalent to 228s]
|
||||
expected: FAIL
|
||||
|
||||
[calc(container-progress(width of my-container-2 from 0px to 1px) * 1deg) should be used-value-equivalent to 5051deg]
|
||||
expected: FAIL
|
|
@ -0,0 +1,24 @@
|
|||
[container-progress-serialize.tentative.html]
|
||||
['calc(container-progress(width from 0px to 1px) / 1000)' as a specified value should serialize as 'calc(container-progress(width from 0px to 1px) / 1000)'.]
|
||||
expected: FAIL
|
||||
|
||||
['scale(calc(container-progress(width from 0px to 1px) / 1000))' as a specified value should serialize as 'scale(calc(container-progress(width from 0px to 1px) / 1000))'.]
|
||||
expected: FAIL
|
||||
|
||||
['calc(container-progress(width from 0px to 1px) / 1000)' as a computed value should serialize as '0.228'.]
|
||||
expected: FAIL
|
||||
|
||||
['scale(calc(container-progress(width from 0px to 1px) / 1000))' as a computed value should serialize as 'matrix(0.228, 0, 0, 0.228, 0, 0)'.]
|
||||
expected: FAIL
|
||||
|
||||
['calc(0.1 * container-progress(height of my-container from 0px to 10em))' as a specified value should serialize as 'calc(0.1 * container-progress(height of my-container from 0px to 10em))'.]
|
||||
expected: FAIL
|
||||
|
||||
['scale(calc(0.1 * container-progress(height of my-container from 0px to 10em)))' as a specified value should serialize as 'scale(calc(0.1 * container-progress(height of my-container from 0px to 10em)))'.]
|
||||
expected: FAIL
|
||||
|
||||
['calc(0.1 * container-progress(height of my-container from 0px to 10em))' as a computed value should serialize as '0.228'.]
|
||||
expected: FAIL
|
||||
|
||||
['scale(calc(0.1 * container-progress(height of my-container from 0px to 10em)))' as a computed value should serialize as 'matrix(0.228, 0, 0, 0.228, 0, 0)'.]
|
||||
expected: FAIL
|
|
@ -22,3 +22,21 @@
|
|||
|
||||
[calc(media-progress(width from 0px to 1px) * 1deg) should be used-value-equivalent to 1024deg]
|
||||
expected: FAIL
|
||||
|
||||
[media-progress() identity check]
|
||||
expected: FAIL
|
||||
|
||||
[media-progress() with length product]
|
||||
expected: FAIL
|
||||
|
||||
[media-progress with complex to calculation]
|
||||
expected: FAIL
|
||||
|
||||
[media-progress() as length]
|
||||
expected: FAIL
|
||||
|
||||
[media-progress() as time]
|
||||
expected: FAIL
|
||||
|
||||
[media-progress() as angle]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
[MediaQueryList-addListener-removeListener.html]
|
||||
[listeners are called when <iframe> is resized]
|
||||
expected: FAIL
|
||||
|
||||
[listeners are called correct number of times]
|
||||
expected: FAIL
|
||||
|
|
|
@ -0,0 +1,36 @@
|
|||
[is-where-pseudo-containing-hard-pseudo.html]
|
||||
[subject1 is red when .other-match added]
|
||||
expected: FAIL
|
||||
|
||||
[subject1 is orangered when .parent added to parent]
|
||||
expected: FAIL
|
||||
|
||||
[subject1 is orangered when .parent removed from parent]
|
||||
expected: FAIL
|
||||
|
||||
[subject2 is darkred when .other-match added]
|
||||
expected: FAIL
|
||||
|
||||
[subject2 is pink when .parent added to parent]
|
||||
expected: FAIL
|
||||
|
||||
[subject2 is pink when .parent removed from parent]
|
||||
expected: FAIL
|
||||
|
||||
[subject3 is green when .other-match added]
|
||||
expected: FAIL
|
||||
|
||||
[subject3 is lightgreen when .parent added to parent]
|
||||
expected: FAIL
|
||||
|
||||
[subject3 is lightgreen when .parent removed from parent]
|
||||
expected: FAIL
|
||||
|
||||
[subject4 is darkgreen when .other-match added]
|
||||
expected: FAIL
|
||||
|
||||
[subject4 is yellowgreen when .parent added to parent]
|
||||
expected: FAIL
|
||||
|
||||
[subject4 is yellowgreen when .parent removed from parent]
|
||||
expected: FAIL
|
Loading…
Add table
Add a link
Reference in a new issue