summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-highlight-api/painting/custom-highlight-painting-vertical-writing-mode-001.html
blob: 9fe2bdcd5f12b6a2363d0dfa9e8f8fc731db11b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<meta charset="UTF-8">
<title>CSS Highlight API Test: Vertical Writing Mode</title>
<link rel="help" href="https://drafts.csswg.org/css-highlight-api-1/">
<link rel="match" href="custom-highlight-painting-vertical-writing-mode-001-ref.html">
<link rel="stylesheet" href="../../css-pseudo/support/highlights.css">
<meta name="assert" value="::highlight overlay is painted correctly when the highlighted text is in a vertical writing mode">
<style>
  :root {
      writing-mode: vertical-rl;
  }
  ::highlight(example-highlight) {
    background-color: yellow;
    color: blue;
  }
</style>
<body>
<div class="highlight_reftest"><span>One </span><span>two </span><span>three…</span></div>
<script>
  let r = new Range();
  r.setStart(document.querySelector("div"), 0);
  r.setEnd(document.querySelector("div"), 2);

  CSS.highlights.set("example-highlight", new Highlight(r));
</script>