| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) | 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) |
| 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) | 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) |
| 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc.
All rights reserved. | 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc.
All rights reserved. |
| 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
| 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> | 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> |
| 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. | 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. |
| 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. |
| (...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 return; | 381 return; |
| 382 } | 382 } |
| 383 | 383 |
| 384 if (isHTMLRTElement(element)) { | 384 if (isHTMLRTElement(element)) { |
| 385 // Ruby text does not support float or position. This might change with
evolution of the specification. | 385 // Ruby text does not support float or position. This might change with
evolution of the specification. |
| 386 style.setPosition(StaticPosition); | 386 style.setPosition(StaticPosition); |
| 387 style.setFloating(NoFloat); | 387 style.setFloating(NoFloat); |
| 388 return; | 388 return; |
| 389 } | 389 } |
| 390 | 390 |
| 391 if (isHTMLLegendElement(element)) { | |
| 392 style.setDisplay(BLOCK); | |
| 393 return; | |
| 394 } | |
| 395 | |
| 396 if (isHTMLMarqueeElement(element)) { | 391 if (isHTMLMarqueeElement(element)) { |
| 397 // For now, <marquee> requires an overflow clip to work properly. | 392 // For now, <marquee> requires an overflow clip to work properly. |
| 398 style.setOverflowX(OHIDDEN); | 393 style.setOverflowX(OHIDDEN); |
| 399 style.setOverflowY(OHIDDEN); | 394 style.setOverflowY(OHIDDEN); |
| 400 return; | 395 return; |
| 401 } | 396 } |
| 402 | 397 |
| 403 if (isHTMLTextAreaElement(element)) { | 398 if (isHTMLTextAreaElement(element)) { |
| 404 // Textarea considers overflow visible as auto. | 399 // Textarea considers overflow visible as auto. |
| 405 style.setOverflowX(style.overflowX() == OVISIBLE ? OAUTO : style.overflo
wX()); | 400 style.setOverflowX(style.overflowX() == OVISIBLE ? OAUTO : style.overflo
wX()); |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 // We want to count vertical percentage paddings/margins on flex items b
ecause our current | 483 // We want to count vertical percentage paddings/margins on flex items b
ecause our current |
| 489 // behavior is different from the spec and we want to gather compatibili
ty data. | 484 // behavior is different from the spec and we want to gather compatibili
ty data. |
| 490 if (style.paddingBefore().hasPercent() || style.paddingAfter().hasPercen
t()) | 485 if (style.paddingBefore().hasPercent() || style.paddingAfter().hasPercen
t()) |
| 491 UseCounter::count(document, UseCounter::FlexboxPercentagePaddingVert
ical); | 486 UseCounter::count(document, UseCounter::FlexboxPercentagePaddingVert
ical); |
| 492 if (style.marginBefore().hasPercent() || style.marginAfter().hasPercent(
)) | 487 if (style.marginBefore().hasPercent() || style.marginAfter().hasPercent(
)) |
| 493 UseCounter::count(document, UseCounter::FlexboxPercentageMarginVerti
cal); | 488 UseCounter::count(document, UseCounter::FlexboxPercentageMarginVerti
cal); |
| 494 } | 489 } |
| 495 } | 490 } |
| 496 | 491 |
| 497 } | 492 } |
| OLD | NEW |