mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Update web-platform-tests to revision bc60e6f82132cfc9a5b688c566c7772024b3c15c
This commit is contained in:
parent
449881f566
commit
29156ca9e2
223 changed files with 7517 additions and 2093 deletions
|
@ -15,6 +15,11 @@
|
|||
test_computed_value("shape-image-threshold", "-7", "0");
|
||||
test_computed_value("shape-image-threshold", "0.5");
|
||||
test_computed_value("shape-image-threshold", "12.5", "1");
|
||||
|
||||
// https://github.com/w3c/csswg-drafts/issues/4102
|
||||
test_computed_value("shape-image-threshold", "-100%", "0");
|
||||
test_computed_value("shape-image-threshold", "50%", "0.5");
|
||||
test_computed_value("shape-image-threshold", "300%", "1");
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
<script>
|
||||
test_invalid_value("shape-image-threshold", "auto");
|
||||
test_invalid_value("shape-image-threshold", "10px");
|
||||
test_invalid_value("shape-image-threshold", "100%");
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -14,6 +14,11 @@
|
|||
<script>
|
||||
test_valid_value("shape-image-threshold", "12.5");
|
||||
test_valid_value("shape-image-threshold", "-7");
|
||||
|
||||
// https://github.com/w3c/csswg-drafts/issues/4102
|
||||
test_valid_value("shape-image-threshold", "-100%", "-1");
|
||||
test_valid_value("shape-image-threshold", "50%", "0.5");
|
||||
test_valid_value("shape-image-threshold", "300%", "3");
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue