[Webkit-unassigned] [Bug 61622] New: webkit-box-shadow html 5 bug?

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri May 27 04:39:43 PDT 2011


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

           Summary: webkit-box-shadow html 5 bug?
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Windows 7
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: CSS
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: rludgero at yahoo.es


<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Documento sin título</title>

<!--stylesheets-->

<style>
body {
    background-color:#444444;
    margin:0 auto;
}

#header-wrapper {
    height:30px;
    margin: 0 auto; 
    position:relative;
    clear:both;
    float:none;
    background-color:#444444;
    padding:3px;
    border-bottom-color:#353535;
    border-bottom-style:solid;
    border-bottom-width:1px;        
    -moz-box-shadow: 0px 0px 10px;
    -webkit-box-shadow: 0px 0px 10px;
    box-shadow: 0px 0px 10px;
    z-index:9999;    
}

#wrapper {
    height:720px;
    margin: 0 auto; 
    position:relative;
    clear:both;
    float:none;
}

#foot-wrapper {
    height:30px;
    margin:0 auto; 
    position:relative;
    clear:both;
    float:none;    
    padding:3px;
    border-top-color:#353535;
    border-top-style:solid;
    border-top-width:1px;        
    -moz-box-shadow:0px 0px 10px;
    -webkit-box-shadow:0px 0px 10px;
    box-shadow:0px 0px 10px;
    z-index:9999;    
}
</style>

</head>

<body>


<section id="header-wrapper"></section>

<section id="wrapper"></section>

<section id="foot-wrapper"></section>


</body>
</html>


-----------------------------------------------------------------------

Webkit box shadow doesn't display the shadow in header and foot wrapper, in the others browsers like firefox,ie9 and opera work perfect.
Why?

-- 
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