~ubuntu-branches/ubuntu/raring/qtwebkit-source/raring-proposed

« back to all changes in this revision

Viewing changes to ManualTests/match-marker-rects.html

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-02-18 14:24:18 UTC
  • Revision ID: package-import@ubuntu.com-20130218142418-eon0jmjg3nj438uy
Tags: upstream-2.3
ImportĀ upstreamĀ versionĀ 2.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<style>
 
2
    div {
 
3
        height: 50px;
 
4
        width: 110px;
 
5
        margin: 10px 0;
 
6
        padding: 10px;
 
7
        border: solid black;
 
8
        font-size: 25px;
 
9
    }
 
10
 
 
11
    div.columns {
 
12
        -webkit-columns: 2;
 
13
        -webkit-column-gap: 10px;
 
14
    }
 
15
 
 
16
    div.scroll {
 
17
        overflow-y: scroll; 
 
18
    }
 
19
</style>
 
20
<p>
 
21
    In Safari, choose Edit > Find > Find, and type the strings &ldquo;xyz&rdquo;
 
22
    and &ldquo;123&rdquo;. The white &ldquo;holes&rdquo; in the Find overlay
 
23
    should line up with the matching text below.
 
24
</p>
 
25
<div class="columns">
 
26
    <br>xyz
 
27
</div>
 
28
<div class="scroll" id="scroll">
 
29
    <br><br>123<br><br>
 
30
</div>
 
31
<script>
 
32
    document.getElementById("scroll").scrollTop = 100;
 
33
</script>