summaryrefslogtreecommitdiffstats
path: root/browser/components/search/test/browser/searchTelemetryAd_components_carousel_hidden.html
blob: cccd714326733ff9eb7041903b2db25c80ae544a (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <link rel="stylesheet" type="text/css"
        href="./serp.css" />
</head>
<body>
  <section id="top">
    <h5 test-label="true">ad_carousel with display: none;</h5>
    <div class="moz-carousel" narrow="true" style="display: none;">
      <div class="moz-carousel-card">
        <a class="hidden" href="https://example.com/ad"></a>
        <a href="https://example.com/some-normal-path">
          <div class="moz-carousel-image">Image</div>
        </a>
        <div class="moz-carousel-card-inner">
          <div class="moz-carousel-card-inner-content">
            <a class="hidden" href="https://example.com/ad"></a>
            <a href="https://example.com/normal-path">
              <h3>Name of Product</h3>
            </a>
            <h3>$199.99</h3>
            <h3>Example.com</h3>
          </div>
        </div>
      </div>
    </div>

    <h5 test-label="true">ad_carousel with no width;</h5>
    <div class="moz-carousel" narrow="true" style="width: 0;">
      <div class="moz-carousel-card">
        <a class="hidden" href="https://example.com/ad"></a>
        <a href="https://example.com/some-normal-path">
          <div class="moz-carousel-image">Image</div>
        </a>
        <div class="moz-carousel-card-inner">
          <div class="moz-carousel-card-inner-content">
            <a class="hidden" href="https://example.com/ad"></a>
            <a href="https://example.com/normal-path">
              <h3>Name of Product</h3>
            </a>
          </div>
        </div>
      </div>
    </div>

    <h5 test-label="true">ad_carousel with no height;</h5>
    <div class="moz-carousel" narrow="true" style="height: 0;">
      <div class="moz-carousel-card">
        <a class="hidden" href="https://example.com/ad"></a>
        <a href="https://example.com/some-normal-path">
          <div class="moz-carousel-image">Image</div>
        </a>
        <div class="moz-carousel-card-inner">
          <div class="moz-carousel-card-inner-content">
            <a class="hidden" href="https://example.com/ad"></a>
            <a href="https://example.com/normal-path">
              <h3>Name of Product</h3>
            </a>
          </div>
        </div>
      </div>
    </div>

    <h5 test-label="true">ad_carousel that is far above the page</h5>
    <div class="moz-carousel" narrow="true" style="position: absolute; top: -9999px;">
      <div class="moz-carousel-card">
        <a class="hidden" href="https://example.com/ad"></a>
        <a href="https://example.com/some-normal-path">
          <div class="moz-carousel-image">Image</div>
        </a>
        <div class="moz-carousel-card-inner">
          <div class="moz-carousel-card-inner-content">
            <a class="hidden" href="https://example.com/ad"></a>
            <a href="https://example.com/normal-path">
              <h3>Name of Product</h3>
            </a>
            <h3>$199.99</h3>
            <h3>Example.com</h3>
          </div>
        </div>
      </div>
    </div>
  </section>
</body>
</html>