summaryrefslogtreecommitdiffstats
path: root/layout/reftests/outline/outline-on-table.html
blob: bcb1b9e4afc864cdecf66c146ff25ceb001ba923 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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>