[Webkit-unassigned] [Bug 32057] [bzt] Implement status bubble view

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Dec 2 00:50:38 PST 2009


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





--- Comment #5 from Adam Barth <abarth at webkit.org>  2009-12-02 00:50:38 PST ---
(In reply to comment #3)
> (From update of attachment 44132 [details])
>  79             "Pass": "pass",
> Doesn't the PEP say it should be:
> "foo" : "bar"?

I can't find this in the style guide.

> Can you provide an example output in the bug for easier review?

<!DOCTYPE html> 
<html> 
<head> 
<style> 
body {
    font-family: Verdana, sans-serif;
    margin: 0px;
    padding: 0px;
}
.status {
    display: block;
    float: left;
    margin: 1px;
    padding: 1px 2px;
    border-radius: 5px;
    border: 1px solid #AAA;
    font-size: 11px;
}
.pass {
    background-color: #8FDF5F;
    border: 1px solid #4F8530;
}
.fail {
    background-color: #E98080;
    border: 1px solid #A77272;
}
.pending {
    background-color: #FFFC6C;
    border: 1px solid #C5C56D;
}
</style> 
</head> 
<body> 
<div class="status fail" title="style: fail">style</div> 
</body> 
</html>

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