diff options
Diffstat (limited to 'testing/web-platform/tests/html/rendering/widgets/input-checkbox-no-centering.html')
-rw-r--r-- | testing/web-platform/tests/html/rendering/widgets/input-checkbox-no-centering.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/rendering/widgets/input-checkbox-no-centering.html b/testing/web-platform/tests/html/rendering/widgets/input-checkbox-no-centering.html new file mode 100644 index 0000000000..7dba149c75 --- /dev/null +++ b/testing/web-platform/tests/html/rendering/widgets/input-checkbox-no-centering.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1441341"> +<link rel="match" href="input-no-centering-ref.html"> +<style> +input { + appearance: none; + margin: 0; + width: 200px; + height: 200px; +} +input:before { + content: ""; + display: block; + width: 100px; + height: 100px; + background: green; +} +</style> +<input type="checkbox"> |