| Index: third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp b/third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp
|
| index 156b5b791577f0560d6aa22748a6b283c548ad37..3e335f4ac414145612739da55e1face660fe933b 100644
|
| --- a/third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp
|
| +++ b/third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp
|
| @@ -340,12 +340,6 @@ void StyleAdjuster::adjustStyleForHTMLElement(ComputedStyle& style, const Comput
|
| return;
|
|
|
| if (isHTMLTableCellElement(element)) {
|
| - // If we have a <td> that specifies a float property, in quirks mode we just drop the float property.
|
| - // FIXME: Why is this only <td> and not <th>?
|
| - if (element.hasTagName(tdTag) && m_useQuirksModeStyles) {
|
| - style.setDisplay(TABLE_CELL);
|
| - style.setFloating(NoFloat);
|
| - }
|
| // FIXME: We shouldn't be overriding start/-webkit-auto like this. Do it in html.css instead.
|
| // Table headers with a text-align of -webkit-auto will change the text-align to center.
|
| if (element.hasTagName(thTag) && style.textAlign() == TASTART)
|
|
|