Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!doctype html>
<meta charset="utf-8">
<title>'border-image-repeat' property</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../../resources/testhelper.js"></script>
<script src="resources/testsuite.js"></script>
<body>
<div id="log"></div>
<script>
'use strict';
runPropertyTests('border-image-repeat', [
// Computed value is always a pair of values, which are not supported in
// Typed OM level 1.
{
syntax: 'stretch',
computed: (_, result) => assert_is_unsupported(result)
},
{
syntax: 'repeat',
computed: (_, result) => assert_is_unsupported(result)
},
{
syntax: 'round',
computed: (_, result) => assert_is_unsupported(result)
},
{
syntax: 'space',
computed: (_, result) => assert_is_unsupported(result)
},
]);
runUnsupportedPropertyTests('border-image-repeat', [
'stretch repeat', 'round space'
]);
</script>