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

« back to all changes in this revision

Viewing changes to ManualTests/filters/opacity-above-filter.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
<!DOCTYPE html>
 
2
 
 
3
<html>
 
4
<head>
 
5
  <style>
 
6
    
 
7
    .container {
 
8
      opacity: 0.8;
 
9
      margin: 10px;
 
10
    }
 
11
    
 
12
    .filtered {
 
13
      width: 100px;
 
14
      height: 100px;
 
15
      background-color: blue;
 
16
      -webkit-filter: blur(10px);
 
17
    }
 
18
  </style>
 
19
</head>
 
20
<body>
 
21
  <a href="https://bugs.webkit.org/show_bug.cgi?id=76329">https://bugs.webkit.org/show_bug.cgi?id=76329</a>
 
22
  <p>Open this test in Safari, and hit Command-F to Find. A debug build should not assert.</p>
 
23
  <div class="container">
 
24
      <div class="filtered box"></div>
 
25
  </div>
 
26
</body>
 
27
</html>