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

content / test / data / accessibility / html / continuations-parser-splits-markup.html [blame]

<!--
@BLINK-ALLOW:display*
@BLINK-ALLOW:tag*
@BLINK-ALLOW:class*
@BLINK-ALLOW:isLineBreakingObject*
-->
<!-- The parser does not actually create the structure below, but rather
  duplicates <a name="a">! both as a first child of the <span>, and a first
  child of <div#ever>. The final DOM looks like:
<div>
  <span>
    <a name="a" class="copied-element">
      <div id="before" class="before">Before</div>
    </a>
    <div id="ever" class="ever">
      <a name="a" class="copied-element">
        Ever
      </a>
      <a href="#" class="after">After</a>
    </div>
  </span>
</div>
-->
<div>
  <span>
    <a name="a" class="copied-element">
      <div id="before" class="before">Before</div>
      <div id="ever" class="ever">
        Ever
        <a href="#" class="after">After</a>
      </div>
    </a>
  </span>
</div>