summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/dom/elements/global-attributes/dir-shadow-utils.js
blob: c7d89cf908286bf2ebad72abc59abe26949a209a (plain)
1
2
3
4
5
6
7
8
function html_direction(element) {
  let is_ltr = element.matches(":dir(ltr)");
  let is_rtl = element.matches(":dir(rtl)");
  if (is_ltr == is_rtl) {
    return "error";
  }
  return is_ltr ? "ltr" : "rtl";
}