chromium/content/test/data/accessibility/form-controls/bdo-table-cell.html

<!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>