Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            - /html/semantics/selectors/case-sensitivity/values.window.html - WPT Dashboard Interop Dashboard
 
[
  "accept",
  "accept-charset",
  "align",
  "alink",
  "axis",
  "bgcolor",
  "charset",
  "checked",
  "clear",
  "codetype",
  "color",
  "compact",
  "declare",
  "defer",
  "dir",
  "direction",
  "disabled",
  "enctype",
  "face",
  "frame",
  "hreflang",
  "http-equiv",
  "lang",
  "language",
  "link",
  "media",
  "method",
  "multiple",
  "nohref",
  "noresize",
  "noshade",
  "nowrap",
  "readonly",
  "rel",
  "rev",
  "rules",
  "scope",
  "scrolling",
  "selected",
  "shape",
  "target",
  "text",
  "type",
  "valign",
  "valuetype",
  "vlink",
].forEach(attributeName => {
  const xmlDocument = new Document();
  const htmlDocument = document;
  [
    {
      expected: false,
      title: "<html:a> in XML",
    },
    {
      expected: false,
      title: "<html:unknown> in XML",
    },
    {
      input: xmlDocument.createElementNS("", "unknown"),
      expected: false,
      title: "<:unknown> in XML"
    },
    {
      expected: true,
      title: "<html:a> in HTML",
    },
    {
      expected: true,
      title: "<html:unknown> in HTML",
    },
    {
      input: htmlDocument.createElementNS("", "unknown"),
      expected: false,
      title: "<:unknown> in HTML"
    },
  ].forEach(({ input, expected, title }) => {
    test(t => {
      t.add_cleanup(() => input.removeAttribute(attributeName));
      input.setAttribute(attributeName, "HEYĆ");
      assert_equals(input.matches(`[${attributeName}^=hey]`), expected, `^=hey`);
      assert_false(input.matches(`[${attributeName}^=heyi]`));
    }, `${attributeName}'s value is properly ASCII-case-insensitive for ${title}`);
  });
});