Update web-platform-tests to revision 9919d0f04266001686c09d47ff6e25c98b48d91f

This commit is contained in:
WPT Sync Bot 2019-07-12 10:24:58 +00:00
parent 026e550d35
commit e7fcc8e274
453 changed files with 7751 additions and 2288 deletions

View file

@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8">
<title>CSS Images: getComputedValue().imageOrientation</title>
<title>CSS Images: getComputedStyle().imageOrientation</title>
<link rel="help" href="https://drafts.csswg.org/css-images-3/#propdef-image-orientation">
<meta name="assert" content="image-orientation computed value is as specified.">
<script src="/resources/testharness.js"></script>

View file

@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8">
<title>CSS Images: getComputedValue().imageRendering</title>
<title>CSS Images: getComputedStyle().imageRendering</title>
<link rel="help" href="https://drafts.csswg.org/css-images-3/#propdef-image-rendering">
<meta name="assert" content="image-rendering computed value is as specified.">
<script src="/resources/testharness.js"></script>

View file

@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8">
<title>CSS Images: getComputedValue().objectFit</title>
<title>CSS Images: getComputedStyle().objectFit</title>
<link rel="help" href="https://drafts.csswg.org/css-images-4/#propdef-object-fit">
<meta name="assert" content="object-fit computed value is as specified.">
<script src="/resources/testharness.js"></script>

View file

@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8">
<title>CSS Images Module Level 3 Test: getComputedValue().objectPosition</title>
<title>CSS Images Module Level 3 Test: getComputedStyle().objectPosition</title>
<link rel="help" href="https://drafts.csswg.org/css-images-3/#propdef-object-position">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

View file

@ -15,6 +15,7 @@
test_invalid_value("object-position", "auto");
test_invalid_value("object-position", "1px 2px 3px");
test_invalid_value("object-position", "left right");
test_invalid_value("object-position", "bottom 10%");
test_invalid_value("object-position", "bottom 10% top 20%");
// The following were supported in an earlier version of the spec.