summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/inline/propagate-style-to-anonymous-children-of-inline.html
blob: f5d313785ec81a51190c0cf25f22d1f813fa4b83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<style>
* {
  writing-mode: vertical-lr;
}
#child {
  display: table-header-group;
}
</style>
<script>
function start() {
  document.styleSheets[0].deleteRule(0);

  if (window.testRunner)
    testRunner.dumpAsText();
}
</script>
<body onload="start();">
<span><span id="child">Test passes if it does not crash.</span></span>
</body>