[Webkit-unassigned] [Bug 69384] page with only fixed objects doesn't print

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Oct 11 01:30:12 PDT 2011


https://bugs.webkit.org/show_bug.cgi?id=69384





--- Comment #2 from Kentaro Hara <haraken at chromium.org>  2011-10-11 01:30:12 PST ---
==========================
<!DOCTYPE html>
<html>
<head>
<style>
body {margin: 0;}
div { position: fixed; }
</style>
</head>
<body>
<div>Hello, world!</div>
</body>
</html>

Results:
Chrome 16.0.905.0 (WebKit 96921): Nothing happens
Safari 5.0.5 (WebKit 97102): Blank page
Firefox 6.0: Hello, world!
Opera 11.51: Hello, world!

==========================
<html>
<head>
<style>
body {margin: 0;}
div { position: fixed; }
</style>
</head>
<body>
<div>Hello, world!</div>
</body>
</html>

Results:
Chrome 16.0.905.0 (WebKit 96921): Hello, world!
Safari 5.0.5 (WebKit 97102): Blank page
Firefox 6.0: Hello, world!
Opera 11.51: Hello, world!

==========================
<!DOCTYPE html>
<html>
<head>
<style>
div { position: fixed; }
</style>
</head>
<body>
<div>Hello, world!</div>
</body>
</html>

Results:
Chrome 16.0.905.0 (WebKit 96921): Blank page
Safari 5.0.5 (WebKit 97102): Blank page
Firefox 6.0: Hello, world!
Opera 11.51: Hello, world!

==========================
<html>
<head>
<style>
div { position: fixed; }
</style>
</head>
<body>
<div>Hello, world!</div>
</body>
</html>

Results:
Chrome 16.0.905.0 (WebKit 96921): Hello, world!
Safari 5.0.5 (WebKit 97102): Blank page
Firefox 6.0: Hello, world!
Opera 11.51: Hello, world!

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list