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

« back to all changes in this revision

Viewing changes to ManualTests/print-with-height-transition-in-screen-stylesheet.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
<head>
 
2
<style media="screen">
 
3
.outer_slide {
 
4
    overflow: hidden;
 
5
    height: 0;
 
6
    -webkit-transition: height 100s ease-in-out;
 
7
}
 
8
</style>
 
9
</head>
 
10
  <body>
 
11
<div>To run this test, Print and then push the Preview button (on Mac OS X). The symptom of the bug is a layout with overlapping text or missing sections.
 
12
If the test passes you should be able to see eight different lines below A, A1, A2, A3, B, B1, C, and C1. If it fails you might see as few as four lines.</div>
 
13
<div><br></div>
 
14
<div>A: When printing you should be able to see all three paragraphs below.</div>
 
15
<div class='outer_slide'>
 
16
    <div>A1: This is a long paragraph which helps us see the mess you can get with long ones.<br>
 
17
        A2: This is a long paragraph which helps us see the mess you can get with long ones.<br>
 
18
        A3: This is a long paragraph which helps us see the mess you can get with long ones.<br>
 
19
</div></div>
 
20
<div>B: When printing you should be able to see one line below.</div>
 
21
<div class='outer_slide'><div>B1: This is a long paragraph which helps us see the mess you can get with long ones.</div></div>
 
22
<div>C: When printing you should be able to see one line below</div>
 
23
<div class='outer_slide'><div>C1: This is a long paragraph which helps us see the mess you can get with long ones.</div></div>
 
24
</div>
 
25
</body>
 
26
</html>