mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
LibWeb: Escape custom-ident when serializing grid track placement values
This commit is contained in:
parent
d42235a642
commit
585e96d61d
Notes:
github-actions[bot]
2025-09-25 09:36:14 +00:00
Author: https://github.com/tcl3
Commit: 585e96d61d
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/6293
Reviewed-by: https://github.com/AtkinsSJ ✅
3 changed files with 11 additions and 11 deletions
|
|
@ -2,8 +2,8 @@ Harness status: OK
|
|||
|
||||
Found 33 tests
|
||||
|
||||
29 Pass
|
||||
4 Fail
|
||||
31 Pass
|
||||
2 Fail
|
||||
Pass Property grid-area value 'auto / auto / auto / auto'
|
||||
Pass Property grid-row value 'auto / auto'
|
||||
Pass Property grid-column-end value 'auto'
|
||||
|
|
@ -35,5 +35,5 @@ Pass Property grid-area value 'auto / i / 2 j'
|
|||
Pass Property grid-area value 'auto / i / 2 j / span 3 k'
|
||||
Pass Property grid-row value 'auto / i'
|
||||
Pass Property grid-column value '2 j / span 3 k'
|
||||
Fail Property grid-column-end value '\31st'
|
||||
Fail Property grid-column-end value '\31 st'
|
||||
Pass Property grid-column-end value '\31st'
|
||||
Pass Property grid-column-end value '\31 st'
|
||||
|
|
@ -2,8 +2,8 @@ Harness status: OK
|
|||
|
||||
Found 57 tests
|
||||
|
||||
53 Pass
|
||||
4 Fail
|
||||
56 Pass
|
||||
1 Fail
|
||||
Pass e.style['grid-area'] = "auto" should set the property value
|
||||
Pass e.style['grid-area'] = "auto / auto" should set the property value
|
||||
Pass e.style['grid-area'] = "auto / auto / auto" should set the property value
|
||||
|
|
@ -58,6 +58,6 @@ Fail e.style['grid-row'] = "i / auto" should set the property value
|
|||
Pass e.style['grid-row'] = "2 i / auto" should set the property value
|
||||
Pass e.style['grid-row'] = "1 / auto" should set the property value
|
||||
Pass e.style['grid-column'] = "2 j / span 3 k" should set the property value
|
||||
Fail e.style['grid-column-end'] = "\\31st" should set the property value
|
||||
Fail e.style['grid-column-end'] = "\\31 st" should set the property value
|
||||
Fail e.style['grid-column'] = "\\31st / \\31 st" should set the property value
|
||||
Pass e.style['grid-column-end'] = "\\31st" should set the property value
|
||||
Pass e.style['grid-column-end'] = "\\31 st" should set the property value
|
||||
Pass e.style['grid-column'] = "\\31st / \\31 st" should set the property value
|
||||
Loading…
Add table
Add a link
Reference in a new issue