Changeset 53041 in webkit


Ignore:
Timestamp:
Jan 9, 2010 4:01:24 PM (14 years ago)
Author:
ddkilzer@apple.com
Message:

<http://webkit.org/b/33430> Fix rounded borders in queue status on older Firefox and Safari browsers

Reviewed by Eric Seidel.

  • QueueStatusServer/templates/statusbubble.html: Added

-moz-border-radius and -webkit-border-radius to provide rounded
borders in older Firefox and Safari browsers.

Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r53040 r53041  
     12010-01-09  David Kilzer  <ddkilzer@apple.com>
     2
     3        <http://webkit.org/b/33430> Fix rounded borders in queue status on older Firefox and Safari browsers
     4
     5        Reviewed by Eric Seidel.
     6
     7        * QueueStatusServer/templates/statusbubble.html: Added
     8        -moz-border-radius and -webkit-border-radius to provide rounded
     9        borders in older Firefox and Safari browsers.
     10
    1112010-01-09  Chris Jerdonek  <chris.jerdonek@gmail.com>
    212
  • trunk/WebKitTools/QueueStatusServer/templates/statusbubble.html

    r52680 r53041  
    1313    margin: 1px;
    1414    padding: 1px 2px;
     15    -moz-border-radius: 5px;
     16    -webkit-border-radius: 5px;
    1517    border-radius: 5px;
    1618    border: 1px solid #AAA;
Note: See TracChangeset for help on using the changeset viewer.