summaryrefslogtreecommitdiffstats
path: root/dom/base/test/meta_viewport/test_meta_viewport_removing_content_attribute.html
blob: 784a503e9f5ca29c0af2a56431a75f2544d893cd (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
26
27
28
29
30
31
32
33
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>removing content attribute</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  <meta name="viewport" content="width=400">
  <meta name="viewport" content="width=800">
  <script src="viewport_helpers.js"></script>
</head>
<body>
  <script>
    "use strict";

    add_task(async function multiple_viewport_tags() {
      await SpecialPowers.pushPrefEnv(scaleRatio(1.0));

      let info = getViewportInfo(800, 480);
      // The latter meta viewport tag is used.
      is(info.width, 800, "width should be 800");

      const secondMeta =
          document.querySelector("meta[name=viewport][content='width=800']");
      secondMeta.removeAttribute("content");

      info = getViewportInfo(800, 480);
      // The latter meta viewport tag is still used.
      is(info.width, 800, "width should be 800");
    });
  </script>
</body>
</html>