Test Start

Links pointing to Title2:

This link points to the H2 below

Links pointing to Title1:

This link points to the first H2

Test End

Rule References

Rule Pass IDs Fail IDs
Rule 41
  • id1
  • id2
none

Calculations

No calculations for test 102

Test Description

  • This test contains two links which point to different HREFs.
    * The links have different link text.

Test Markup

User Agent Implementation

No user agent implementation information.

HTML Source Code


<div class="wrapper">
   <h3 id="title1">Links pointing to Title2:</h3>
   <p>
   <a id="id1" href="#title2">This link points to the H2 below</a>
   </p>
   <h3 id="title2">Links pointing to Title1:</h3>
   <p>
   <a id="id2" href="#title1">This link points to the first H2</a>
   </p>
</div>

CSS Code


div.wrapper {
  margin: 20px;
  padding: 10px;
  overflow: visible;
  background-color: #faf7f0;
  border: 1px solid #880000;
  -webkit-border-radius: 10px; /* Safari and Chrome rounded corners */
  -moz-border-radius: 10px; /* Firefox rounded corners */
  border-radius: 10px; /* Opera rounded corners */
}