summaryrefslogtreecommitdiffstats
path: root/testing/marionette/harness/marionette_harness/www/layout/test_carets_columns.html
blob: bc414cfc4557914a959914fd9f9cca276fa017c5 (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
<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
   - http://creativecommons.org/publicdomain/zero/1.0/ -->

<html>
  <head>
    <meta charset="UTF-8">
    <style>
    #columns {
      column-count: 2;
      -webkit-column-count: 2;
      column-rule: 1px solid lightgray;
      -webkit-column-rule: 1px solid lightgray;
      border: 1px solid lightblue;
      width: 450px;
    }
    </style>
  </head>
  <body>
    <div id="columns">
      <div id="columns-inner" style="border: 1px solid red;" contenteditable="true">
        <p id="before-image-1">Before image 1</p>
        <p><img width="100px" height="30px" src="data:image/gif;base64,R0lGODlhAQABAIABAAD/AP///ywAAAAAAQABAAACAkQBADs="></p>
        <p>After image 1</p>
        <p>Before image 2</p>
        <p><img width="100px" height="30px" src="data:image/gif;base64,R0lGODlhAQABAIABAAD/AP///ywAAAAAAQABAAACAkQBADs="></p>
        <p>After image 2</p>
      </div>
    </div>
  </body>
</html>