diff options
Diffstat (limited to 'layout/reftests/outline/outline-on-table.html')
-rw-r--r-- | layout/reftests/outline/outline-on-table.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/layout/reftests/outline/outline-on-table.html b/layout/reftests/outline/outline-on-table.html new file mode 100644 index 0000000000..bcb1b9e4af --- /dev/null +++ b/layout/reftests/outline/outline-on-table.html @@ -0,0 +1,17 @@ +<!DOCTYPE HTML> +<html class="reftest-wait"> +<style> +#target { + display: table; + width: 100px; + height: 100px; +} +</style> +<div id="target"></div> +<script> +document.addEventListener("MozReftestInvalidate", () => { + target.style.outline = "1px solid black"; + document.documentElement.classList.remove("reftest-wait"); +}); +</script> +</html> |