1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15

content / test / data / accessibility / form-controls / bdo-table-cell.html [blame]

<!doctype html>
<link rel="help" href="https://crbug.com/1314808">
<style>
item:after { display: block; content: open-quote; }
item { display: list-item; }
</style>
<bdo style="direction:rtl">
  x<mark></mark>
</bdo>
<span style="display: table-cell; column-width: 0px;"></span>
<script>
const new_listitem_child = document.createElement('item');
document.querySelector('mark').appendChild(new_listitem_child);
</script>