Changeset 21026 in webkit


Ignore:
Timestamp:
Apr 23, 2007 1:27:18 AM (17 years ago)
Author:
darin
Message:

LayoutTests:

Reviewed by Hyatt.

  • test changes for rename of box-sizing to -webkit-box-sizing
  • fast/borders/border-fit.html: Rename.
  • fast/box-sizing/box-sizing.html: Ditto.
  • fast/box-sizing/panels-one.html: Added -webkit-box-sizing.
  • fast/box-sizing/panels-two.html: Ditto.
  • fast/box-sizing/percentage-height.html: Renamed -khtml-box-sizing to -webkit-box-sizing.
  • fast/css/computed-style-expected.txt: Updated for different name and place in sorting order.
  • tables/mozilla/core/box_sizing.html: Rename.

WebCore:

Reviewed by Hyatt.

  • rename box-sizing to -webkit-box-sizing because of <rdar://problem/4667227> REGRESSION: Shifted table on page at https://us.etrade.com/e/t/home (due to box-sizing)
  • css/CSSComputedStyleDeclaration.cpp: (WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue): Rename.
  • css/CSSPropertyNames.in: Ditto.
  • css/cssparser.cpp: (WebCore::CSSParser::parseValue): Rename and take out comment explaining why we aren't prefacing with -webkit.
  • css/cssstyleselector.cpp: (WebCore::CSSStyleSelector::applyProperty): Rename.
  • css/html4.css: Rename.
  • css/quirks.css: Rename.

WebKit:

Reviewed by Hyatt.

  • rename box-sizing to -webkit-box-sizing
  • WebInspector/webInspector/inspector.css: Here.
  • WebInspector/webInspector/inspector.js: And here, in the expected default CSS values list.

WebKitTools:

Reviewed by Hyatt.

  • rename box-sizing to -webkit-box-sizing
  • Drosera/console.css: Here.
  • Drosera/debugger.css: And here.
  • Drosera/viewer.css: And here.
Location:
trunk
Files:
22 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r21008 r21026  
     12007-04-23  Darin Adler  <darin@apple.com>
     2
     3        Reviewed by Hyatt.
     4
     5        - test changes for rename of box-sizing to -webkit-box-sizing
     6
     7        * fast/borders/border-fit.html: Rename.
     8        * fast/box-sizing/box-sizing.html: Ditto.
     9        * fast/box-sizing/panels-one.html: Added -webkit-box-sizing.
     10        * fast/box-sizing/panels-two.html: Ditto.
     11        * fast/box-sizing/percentage-height.html: Renamed -khtml-box-sizing to -webkit-box-sizing.
     12        * fast/css/computed-style-expected.txt: Updated for different name and place in sorting order.
     13        * tables/mozilla/core/box_sizing.html: Rename.
     14
    1152007-04-22  Darin Adler  <darin@apple.com>
    216
  • trunk/LayoutTests/fast/borders/border-fit.html

    r19863 r21026  
    6060    border-color: transparent;
    6161    border-style: solid;
    62     box-sizing: border-box;
     62    -webkit-box-sizing: border-box;
    6363    -webkit-border-fit: lines;
    6464}
  • trunk/LayoutTests/fast/box-sizing/box-sizing.html

    r11995 r21026  
    66  border: 2px solid black;
    77  padding: 4px;
    8   box-sizing: border-box;
     8  -webkit-box-sizing: border-box;
    99  -moz-box-sizing: border-box;
    1010  margin:10px 5px;
     
    1717<h1>Normal Blocks</h1>
    1818
    19 <div style="box-sizing: content-box; -moz-box-sizing: content-box; width:8px; height:8px"></div>
     19<div style="-webkit-box-sizing: content-box; -moz-box-sizing: content-box; width:8px; height:8px"></div>
    2020<div style="width:20px; height:20px"></div>
    2121<div style="max-width:20px; min-height:20px"></div>
     
    2424<h1>Inline Blocks</h1>
    2525
    26 <div style="display: inline-block; box-sizing: content-box; -moz-box-sizing: content-box; width:8px; height:8px"></div><div style="display: inline-block; width:20px; height:20px"></div><div style="display: inline-block; min-width:20px; min-height:20px;"></div><div style="display: inline-block; width:20px; max-height:20px"><br><br><br></div>
     26<div style="display: inline-block; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; width:8px; height:8px"></div><div style="display: inline-block; width:20px; height:20px"></div><div style="display: inline-block; min-width:20px; min-height:20px;"></div><div style="display: inline-block; width:20px; max-height:20px"><br><br><br></div>
    2727
    2828<h1>Positioned Blocks</h1>
    2929
    30 <div style="position:absolute; box-sizing: content-box; -moz-box-sizing: content-box; width:8px; height:8px"></div>
     30<div style="position:absolute; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; width:8px; height:8px"></div>
    3131<div style="position:absolute; left:38px; width:20px; height:20px"></div>
    3232<div style="position:absolute; left:68px; min-width:20px; min-height:20px;"></div>
     
    3535
    3636<h1>Floating blocks</h1>
    37 <div style="float:left; box-sizing: content-box; -moz-box-sizing: content-box; width:8px; height:8px"></div>
     37<div style="float:left; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; width:8px; height:8px"></div>
    3838<div style="float:left; width:20px; height:20px"></div>
    3939<div style="float:left; min-width:20px; min-height:20px"></div>
     
    4444<h1>Normal Images</h1>
    4545
    46 <img src="resources/white.gif" style="box-sizing: content-box; -moz-box-sizing: content-box; width:8px; height:8px"><img style="width:20px; height:20px" src="resources/white.gif"><img style="max-width:20px; min-height:20px; padding-top:2px; padding-bottom:2px" src="resources/white.gif"><img style="width:20px; max-height:20px" src="resources/white.gif">
     46<img src="resources/white.gif" style="-webkit-box-sizing: content-box; -moz-box-sizing: content-box; width:8px; height:8px"><img style="width:20px; height:20px" src="resources/white.gif"><img style="max-width:20px; min-height:20px; padding-top:2px; padding-bottom:2px" src="resources/white.gif"><img style="width:20px; max-height:20px" src="resources/white.gif">
    4747
    4848<h1>Positioned Images</h1>
    4949
    50 <img style="position:absolute; box-sizing: content-box; -moz-box-sizing: content-box; width:8px; height:8px" src="resources/white.gif">
     50<img style="position:absolute; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; width:8px; height:8px" src="resources/white.gif">
    5151<img style="position:absolute; left:38px; width:20px; height:20px" src="resources/white.gif">
    5252<img style="position:absolute; left:68px; min-width:20px; min-height:20px; padding:2px" src="resources/white.gif">
     
    5555
    5656<h1>Floating Images</h1>
    57 <img style="float:left; box-sizing: content-box; -moz-box-sizing: content-box; width:8px; height:8px" src="resources/white.gif">
     57<img style="float:left; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; width:8px; height:8px" src="resources/white.gif">
    5858<img style="float:left; width:20px; height:20px" src="resources/white.gif">
    5959<img style="float:left; min-width:20px; min-height:20px; padding:2px" src="resources/white.gif">
  • trunk/LayoutTests/fast/box-sizing/panels-one.html

    r11995 r21026  
    11<?xml version="1.0" encoding="UTF-8"?>
    22<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    3         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
     3    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    44<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
    55<head>
    6         <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    7         <title>Panelset</title>
    8         <style type="text/css">
    9                 /* <![CDATA */
     6    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
     7    <title>Panelset</title>
     8    <style type="text/css">
     9        /* <![CDATA */
    1010
    11                 /* html { height: 100%; } */
    12                 body{ margin: 0; /* height: 100%; */ }
     11        /* html { height: 100%; } */
     12        body{ margin: 0; /* height: 100%; */ }
    1313
    14                 .panel{
    15                         -moz-box-sizing: border-box;
    16                         box-sizing: border-box;
    17                         overflow: auto;
    18                         position: absolute;
    19                         height: 100%;
    20                         width: 100%;
    21                 }
    22                
    23                 /* ]]> */
    24         </style>
     14        .panel{
     15            -moz-box-sizing: border-box;
     16            -webkit-box-sizing: border-box;
     17            box-sizing: border-box;
     18            overflow: auto;
     19            position: absolute;
     20            height: 100%;
     21            width: 100%;
     22        }
     23       
     24        /* ]]> */
     25    </style>
    2526</head>
    2627<body>
    27         <div style="padding: 130px 0px 0px;" id="outerPanelSet" class="panel">
    28                 <div style="background-color: pink; height: 40px; top: 0px;" id="headerPanel" class="panel">Header</div>
    29                 <div style="background-color: salmon; height: 30px; top: 40px;" id="infoPanel" class="panel">Info</div>
    30                 <div style="background-color: fuchsia; height: 60px; top: 70px;" id="contextPanel" class="panel">Context</div>
     28    <div style="padding: 130px 0px 0px;" id="outerPanelSet" class="panel">
     29        <div style="background-color: pink; height: 40px; top: 0px;" id="headerPanel" class="panel">Header</div>
     30        <div style="background-color: salmon; height: 30px; top: 40px;" id="infoPanel" class="panel">Info</div>
     31        <div style="background-color: fuchsia; height: 60px; top: 70px;" id="contextPanel" class="panel">Context</div>
    3132
    32                 <div style="padding: 0px 0px 0px 135px; position: relative;" id="contentPanelSet" class="panel">
    33                         <div style="background-color: Purple; width: 135px; left: 0px;" id="navPanel" class="panel">Navigation</div>
    34                         <div style="padding: 44px 0px 45px; position: relative;" id="contentPanelset" class="panel">
    35                                 <div style="background-color: indigo; height: 44px; top: 0px;" id="contentHeaderPanel" class="panel">Content Header</div>
    36                                 <div style="background-color: salmon; position: relative;" id="contentPanel" class="panel">Content</div>
    37                                 <div style="background-color: cornflowerblue; height: 45px; bottom: 0px; left: 0px;" id="contentFooterPanel" class="panel">Content Footer</div>
    38                         </div>
    39                 </div>
    40         </div>
     33        <div style="padding: 0px 0px 0px 135px; position: relative;" id="contentPanelSet" class="panel">
     34            <div style="background-color: Purple; width: 135px; left: 0px;" id="navPanel" class="panel">Navigation</div>
     35            <div style="padding: 44px 0px 45px; position: relative;" id="contentPanelset" class="panel">
     36                <div style="background-color: indigo; height: 44px; top: 0px;" id="contentHeaderPanel" class="panel">Content Header</div>
     37                <div style="background-color: salmon; position: relative;" id="contentPanel" class="panel">Content</div>
     38                <div style="background-color: cornflowerblue; height: 45px; bottom: 0px; left: 0px;" id="contentFooterPanel" class="panel">Content Footer</div>
     39            </div>
     40        </div>
     41    </div>
    4142</body>
    4243</html>
  • trunk/LayoutTests/fast/box-sizing/panels-two.html

    r11995 r21026  
    11<?xml version="1.0" encoding="UTF-8"?>
    22<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    3         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
     3    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    44<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
    55<head>
    6         <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    7         <title>Panelset</title>
    8         <style type="text/css">
    9                 /* <![CDATA */
     6    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
     7    <title>Panelset</title>
     8    <style type="text/css">
     9        /* <![CDATA */
    1010
    11                 html { height: 100%; }
    12                 body{ margin: 0; height: 100%; }
     11        html { height: 100%; }
     12        body{ margin: 0; height: 100%; }
    1313
    14                 .panel{
    15                         -moz-box-sizing: border-box;
    16                         box-sizing: border-box;
    17                         overflow: auto;
    18                         position: absolute;
    19                         height: 100%;
    20                         width: 100%;
    21                 }
    22                
    23                 /* ]]> */
    24         </style>
     14        .panel{
     15            -moz-box-sizing: border-box;
     16            -webkit-box-sizing: border-box;
     17            box-sizing: border-box;
     18            overflow: auto;
     19            position: absolute;
     20            height: 100%;
     21            width: 100%;
     22        }
     23       
     24        /* ]]> */
     25    </style>
    2526</head>
    2627<body>
    27         <div style="padding: 130px 0px 0px;" id="outerPanelSet" class="panel">
    28                 <div style="background-color: pink; height: 40px; top: 0px;" id="headerPanel" class="panel">Header</div>
    29                 <div style="background-color: salmon; height: 30px; top: 40px;" id="infoPanel" class="panel">Info</div>
    30                 <div style="background-color: fuchsia; height: 60px; top: 70px;" id="contextPanel" class="panel">Context</div>
     28    <div style="padding: 130px 0px 0px;" id="outerPanelSet" class="panel">
     29        <div style="background-color: pink; height: 40px; top: 0px;" id="headerPanel" class="panel">Header</div>
     30        <div style="background-color: salmon; height: 30px; top: 40px;" id="infoPanel" class="panel">Info</div>
     31        <div style="background-color: fuchsia; height: 60px; top: 70px;" id="contextPanel" class="panel">Context</div>
    3132
    32                 <div style="padding: 0px 0px 0px 135px; position: relative;" id="contentPanelSet" class="panel">
    33                         <div style="background-color: Purple; width: 135px; left: 0px;" id="navPanel" class="panel">Navigation</div>
    34                         <div style="padding: 44px 0px 45px; position: relative;" id="contentPanelset" class="panel">
    35                                 <div style="background-color: indigo; height: 44px; top: 0px;" id="contentHeaderPanel" class="panel">Content Header</div>
    36                                 <div style="background-color: salmon; position: relative;" id="contentPanel" class="panel">Content</div>
    37                                 <div style="background-color: cornflowerblue; height: 45px; bottom: 0px; left: 0px;" id="contentFooterPanel" class="panel">Content Footer</div>
    38                         </div>
    39                 </div>
    40         </div>
     33        <div style="padding: 0px 0px 0px 135px; position: relative;" id="contentPanelSet" class="panel">
     34            <div style="background-color: Purple; width: 135px; left: 0px;" id="navPanel" class="panel">Navigation</div>
     35            <div style="padding: 44px 0px 45px; position: relative;" id="contentPanelset" class="panel">
     36                <div style="background-color: indigo; height: 44px; top: 0px;" id="contentHeaderPanel" class="panel">Content Header</div>
     37                <div style="background-color: salmon; position: relative;" id="contentPanel" class="panel">Content</div>
     38                <div style="background-color: cornflowerblue; height: 45px; bottom: 0px; left: 0px;" id="contentFooterPanel" class="panel">Content Footer</div>
     39            </div>
     40        </div>
     41    </div>
    4142</body>
    4243</html>
  • trunk/LayoutTests/fast/box-sizing/percentage-height.html

    r12128 r21026  
    99* {
    1010    -moz-box-sizing: border-box;
    11     -khtml-box-sizing: border-box;
     11    -webkit-box-sizing: border-box;
    1212    box-sizing: border-box;
    1313}
  • trunk/LayoutTests/fast/css/computed-style-expected.txt

    r19881 r21026  
    2121border-top-width: 0px;
    2222bottom: auto;
    23 box-sizing: content-box;
    2423caption-side: top;
    2524clear: none;
     
    10099-webkit-box-pack: start;
    101100-webkit-box-shadow: none;
     101-webkit-box-sizing: content-box;
    102102-webkit-column-break-after: auto;
    103103-webkit-column-break-before: auto;
  • trunk/LayoutTests/tables/mozilla/core/box_sizing.html

    r13321 r21026  
    1 <table bgcolor=blue width=100 style="-moz-box-sizing:content-box; border: 20px solid black; padding:10px;" border>
     1<table bgcolor=blue width=100 style="-moz-box-sizing:content-box; -webkit-box-sizing:content-box; border: 20px solid black; padding:10px;" border>
    22 <tr>
    33  <td>foo</td>
     
    88</table>
    99<BR>
    10 <table bgcolor=blue width=100 style="-moz-box-sizing:padding-box; border: 20px solid black; padding:10px;" border>
     10<table bgcolor=blue width=100 style="-moz-box-sizing:padding-box; -webkit-box-sizing:content-box; border: 20px solid black; padding:10px;" border>
    1111 <tr>
    1212  <td>foo</td>
     
    1717</table>
    1818<BR>
    19 <table bgcolor=blue width=100 style="-moz-box-sizing:border-box; border: 20px solid black; padding:10px;" border>
     19<table bgcolor=blue width=100 style="-moz-box-sizing:border-box; -webkit-box-sizing:content-box; border: 20px solid black; padding:10px;" border>
    2020 <tr>
    2121  <td>foo</td>
  • trunk/WebCore/ChangeLog

    r21022 r21026  
     12007-04-23  Darin Adler  <darin@apple.com>
     2
     3        Reviewed by Hyatt.
     4
     5        - rename box-sizing to -webkit-box-sizing
     6          because of <rdar://problem/4667227> REGRESSION: Shifted table on page at
     7          https://us.etrade.com/e/t/home (due to box-sizing)
     8
     9        * css/CSSComputedStyleDeclaration.cpp:
     10        (WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue): Rename.
     11        * css/CSSPropertyNames.in: Ditto.
     12        * css/cssparser.cpp: (WebCore::CSSParser::parseValue): Rename and take out comment
     13        explaining why we aren't prefacing with -webkit.
     14        * css/cssstyleselector.cpp:
     15        (WebCore::CSSStyleSelector::applyProperty): Rename.
     16        * css/html4.css: Rename.
     17        * css/quirks.css: Rename.
     18
    1192007-04-23  Alp Toker  <alp@atoker.com>
    220
  • trunk/WebCore/css/CSSComputedStyleDeclaration.cpp

    r20967 r21026  
    6060    CSS_PROP_BORDER_TOP_WIDTH,
    6161    CSS_PROP_BOTTOM,
    62     CSS_PROP_BOX_SIZING,
    6362    CSS_PROP_CAPTION_SIDE,
    6463    CSS_PROP_CLEAR,
     
    140139    CSS_PROP__WEBKIT_BOX_PACK,
    141140    CSS_PROP__WEBKIT_BOX_SHADOW,
     141    CSS_PROP__WEBKIT_BOX_SIZING,
    142142    CSS_PROP__WEBKIT_COLUMN_BREAK_AFTER,
    143143    CSS_PROP__WEBKIT_COLUMN_BREAK_BEFORE,
     
    14711471                return new CSSPrimitiveValue(CSS_VAL_NORMAL);
    14721472            return new CSSPrimitiveValue(style->zIndex(), CSSPrimitiveValue::CSS_NUMBER);
    1473         case CSS_PROP_BOX_SIZING:
     1473        case CSS_PROP__WEBKIT_BOX_SIZING:
    14741474            if (style->boxSizing() == CONTENT_BOX)
    14751475                return new CSSPrimitiveValue(CSS_VAL_CONTENT_BOX);
  • trunk/WebCore/css/CSSPropertyNames.in

    r20967 r21026  
    4040border-width
    4141bottom
    42 box-sizing
    4342caption-side
    4443clear
     
    166165-webkit-box-pack
    167166-webkit-box-shadow
     167-webkit-box-sizing
    168168-webkit-column-break-after
    169169-webkit-column-break-before
  • trunk/WebCore/css/cssparser.cpp

    r21008 r21026  
    11851185        valid_primitive = validUnit(value, FInteger|FNonNeg, true);
    11861186        break;
    1187     case CSS_PROP_BOX_SIZING: {
    1188         // We don't preface this with -webkit, since MacIE defined this property without the prefix.
    1189         // Thus the damage has been done, and it's known that this property's definition isn't going
    1190         // to fluctuate.
    1191         if (id == CSS_VAL_BORDER_BOX || id == CSS_VAL_CONTENT_BOX)
    1192             valid_primitive = true;
    1193         break;
    1194     }
     1187    case CSS_PROP__WEBKIT_BOX_SIZING:
     1188        valid_primitive = id == CSS_VAL_BORDER_BOX || id == CSS_VAL_CONTENT_BOX;
     1189        break;
    11951190    case CSS_PROP__WEBKIT_MARQUEE: {
    11961191        const int properties[5] = { CSS_PROP__WEBKIT_MARQUEE_DIRECTION, CSS_PROP__WEBKIT_MARQUEE_INCREMENT,
  • trunk/WebCore/css/cssstyleselector.cpp

    r20993 r21026  
    38913891        style->setBoxOrdinalGroup((unsigned int)(primitiveValue->getFloatValue()));
    38923892        return;
    3893     case CSS_PROP_BOX_SIZING:
     3893    case CSS_PROP__WEBKIT_BOX_SIZING:
    38943894        HANDLE_INHERIT_AND_INITIAL(boxSizing, BoxSizing)
    38953895        if (!primitiveValue) return;
  • trunk/WebCore/css/html4.css

    r20925 r21026  
    33 *
    44 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
    5  * Copyright (C) 2003, 2004, 2005, 2006 Apple Computer, Inc.
     5 * Copyright (C) 2003, 2004, 2005, 2006, 2007 Apple Inc. All rights reserved.
    66 *
    77 * This library is free software; you can redistribute it and/or
     
    327327input[type="search"] {
    328328    -webkit-appearance: searchfield;
    329     box-sizing: border-box;
     329    -webkit-box-sizing: border-box;
    330330}
    331331
     
    398398    border: 2px outset ButtonFace;
    399399    background-color: ButtonFace;
    400     box-sizing: border-box
     400    -webkit-box-sizing: border-box
    401401}
    402402
     
    436436input[type="checkbox"] {
    437437    -webkit-appearance: checkbox;
    438     box-sizing: border-box;
     438    -webkit-box-sizing: border-box;
    439439}
    440440
    441441input[type="radio"] {
    442442    -webkit-appearance: radio;
    443     box-sizing: border-box;
     443    -webkit-box-sizing: border-box;
    444444}
    445445
    446446keygen, select {
    447447    -webkit-appearance: menulist;
    448     box-sizing: border-box;
     448    -webkit-box-sizing: border-box;
    449449    -webkit-box-align: center;
    450450    border: 1px solid;
     
    461461select[size][multiple] {
    462462    -webkit-appearance: listbox;
    463     box-sizing: initial;
     463    -webkit-box-sizing: initial;
    464464    -webkit-box-align: start;
    465465    border: 1px inset gray;
     
    471471select[size="1"] {
    472472    -webkit-appearance: menulist;
    473     box-sizing: border-box;
     473    -webkit-box-sizing: border-box;
    474474    -webkit-box-align: center;
    475475    border: 1px solid;
  • trunk/WebCore/css/quirks.css

    r20731 r21026  
    33 *
    44 * Copyright (C) 2000-2003 Lars Knoll (knoll@kde.org)
    5  * Copyright (C) 2004, 2006 Apple Computer, Inc.
     5 * Copyright (C) 2004, 2006, 2007 Apple Inc. All rights reserved.
    66 *
    77 * This library is free software; you can redistribute it and/or
     
    4545/* This will apply only to text fields, since all other inputs already use border box sizing */
    4646input:not([type=image]), textarea {
    47     box-sizing: border-box;
     47    -webkit-box-sizing: border-box;
    4848}
  • trunk/WebKit/ChangeLog

    r21011 r21026  
     12007-04-23  Darin Adler  <darin@apple.com>
     2
     3        Reviewed by Hyatt.
     4
     5        - rename box-sizing to -webkit-box-sizing
     6
     7        * WebInspector/webInspector/inspector.css: Here.
     8        * WebInspector/webInspector/inspector.js: And here, in the expected default CSS values list.
     9
    1102007-04-22  Timothy Hatcher  <timothy@apple.com>
    211
  • trunk/WebKit/WebInspector/webInspector/inspector.css

    r20986 r21026  
    224224    border-style: solid;
    225225    -webkit-border-image: url(Images/button.png) 4 6 6 6;
    226     box-sizing: border-box;
     226    -webkit-box-sizing: border-box;
    227227    line-height: 5px;
    228228    height: 20px;
     
    267267    border-style: solid;
    268268    -webkit-border-image: url(Images/popup.png) 4 16 6 6;
    269     box-sizing: border-box;
     269    -webkit-box-sizing: border-box;
    270270    line-height: 5px;
    271271    height: 20px;
     
    792792    background-color: transparent;
    793793    border: 2px solid transparent;
    794     box-sizing: border-box;
     794    -webkit-box-sizing: border-box;
    795795    color: white;
    796796    font-weight: bold;
  • trunk/WebKit/WebInspector/webInspector/inspector.js

    r21006 r21026  
    5555    "-webkit-box-pack": "start",
    5656    "-webkit-box-shadow": "none",
     57    "-webkit-box-sizing": "content-box",
    5758    "-webkit-column-break-after" : "auto",
    5859    "-webkit-column-break-before" : "auto",
     
    103104    "border-top-width": "0px",
    104105    "bottom": "auto",
    105     "box-sizing": "content-box",
    106106    "caption-side": "top",
    107107    "clear": "none",
  • trunk/WebKitTools/ChangeLog

    r20994 r21026  
     12007-04-23  Darin Adler  <darin@apple.com>
     2
     3        Reviewed by Hyatt.
     4
     5        - rename box-sizing to -webkit-box-sizing
     6
     7        * Drosera/console.css: Here.
     8        * Drosera/debugger.css: And here.
     9        * Drosera/viewer.css: And here.
     10
    1112007-04-21  Mitz Pettel  <mitz@webkit.org>
    212
  • trunk/WebKitTools/Drosera/console.css

    r16785 r21026  
    6969#input {
    7070    position: absolute;
    71     box-sizing: border-box;
     71    -webkit-box-sizing: border-box;
    7272    height: 50px;
    7373    max-height: 150px;
     
    8989    min-height: 38px;
    9090    padding: 4px;
    91     box-sizing: border-box;
     91    -webkit-box-sizing: border-box;
    9292    font-family: monospace;
    9393    font-size: 12px;
  • trunk/WebKitTools/Drosera/debugger.css

    r20907 r21026  
    4242#sourcesContainer { position: absolute; top: 16px; left: 0; right: 0; bottom: 21px; background-color: white; }
    4343#sources { width: 100%; height: 100% }
    44 #header { vertical-align: top; height: 16px; box-sizing: border-box; border-bottom: 1px solid #aaa; background: url(glossyHeader.png) repeat-x; position: absolute; top: 0; left: 0; right: 0; }
     44#header { vertical-align: top; height: 16px; -webkit-box-sizing: border-box; border-bottom: 1px solid #aaa; background: url(glossyHeader.png) repeat-x; position: absolute; top: 0; left: 0; right: 0; }
    4545#header > * { vertical-align: top; }
    46 .footer { height: 21px; box-sizing: border-box; border-top: 1px solid #aaa; background: url(glossyFooterFill.tif) repeat-x; position: absolute; bottom: 0; left: 0; right: 0; }
     46.footer { height: 21px; -webkit-box-sizing: border-box; border-top: 1px solid #aaa; background: url(glossyFooterFill.tif) repeat-x; position: absolute; bottom: 0; left: 0; right: 0; }
    4747#infoDivider { position: absolute; z-index: 10; right: 0; left: 0; top: 0; bottom: 9px; width: 10px; cursor: col-resize; background: url(verticalSplitterDimple.tiff) 50% no-repeat, url(verticalSplitterBar.tiff) repeat-y; width: 10px; }
    4848
     
    264264    padding: 3px 7px 3px 9px;
    265265    height: 15px;
    266     box-sizing: border-box;
     266    -webkit-box-sizing: border-box;
    267267    -webkit-user-select: none;
    268268    overflow: hidden;
     
    305305    border-right: 1px solid #d9d9d9;
    306306    height: 15px;
    307     box-sizing: border-box;
     307    -webkit-box-sizing: border-box;
    308308    border-bottom: 1px solid #aaa;
    309309    font-weight: normal;
  • trunk/WebKitTools/Drosera/viewer.css

    r17184 r21026  
    11/*
    2  * Copyright (C) 2006 Apple Computer, Inc. All rights reserved.
     2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved.
    33 *
    44 * Redistribution and use in source and binary forms, with or without
     
    3131
    3232table { border-spacing: 0; padding: 0; margin: 0; width: 100%; }
    33 .gutter { -webkit-user-select: none; cursor: default; width: 32px; min-width: 32px; max-width: 32px; box-sizing: border-box; font-size: 9px; font-family: Helvetica; color: #888; text-align: right; padding-right: 4px; }
     33.gutter { -webkit-user-select: none; cursor: default; width: 32px; min-width: 32px; max-width: 32px; -webkit-box-sizing: border-box; font-size: 9px; font-family: Helvetica; color: #888; text-align: right; padding-right: 4px; }
    3434.source { font-family: Monaco, monospace; white-space: pre; padding-left: 4px; padding-right: 4px; font-size: 11px; line-height: 14px; }
    3535
Note: See TracChangeset for help on using the changeset viewer.