| Index: third_party/WebKit/LayoutTests/fast/css/usecounter-angle-zero-gradient.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/css/usecounter-angle-zero-gradient.html b/third_party/WebKit/LayoutTests/fast/css/usecounter-angle-zero-gradient.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..106288bfaa36f7a97a8517d8571cae01514f19ed
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/css/usecounter-angle-zero-gradient.html
|
| @@ -0,0 +1,32 @@
|
| +<!DOCTYPE html>
|
| +<script src="../../resources/testharness.js"></script>
|
| +<script src="../../resources/testharnessreport.js"></script>
|
| +<script>
|
| +'use strict';
|
| +
|
| +test(() => {
|
| + let UnitlessZeroAngleGradient = 2008; // From UseCounter.h
|
| +
|
| + let isCounted = () => internals.isUseCounted(document, UnitlessZeroAngleGradient);
|
| + var div = document.createElement('div');
|
| +
|
| + // These values are invalid.
|
| + div.style = 'image-orientation: 0;';
|
| + div.style = 'rotate: 0;';
|
| + div.style = 'offset-path: ray(0 closest-side);';
|
| + // These properties have their own counters.
|
| + div.style = 'filter: hue-rotate(0);';
|
| + div.style = 'offset-rotate: 0;';
|
| + div.style = 'transform: skewX(0);';
|
| + assert_false(isCounted(),
|
| + 'non gradient should not be counted');
|
| +
|
| + div.style = 'background-image: linear-gradient(0deg, red, black);';
|
| + assert_false(isCounted(),
|
| + '0deg should not be counted');
|
| +
|
| + div.style = 'background-image: linear-gradient(0, red, black);';
|
| + assert_true(isCounted(),
|
| + '0 should be counted');
|
| +}, 'angle 0 is use counted for gradient');
|
| +</script>
|
|
|