OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2007, 2008, 2009 Apple Computer, Inc. | 2 * Copyright (C) 2007, 2008, 2009 Apple Computer, Inc. |
3 * Copyright (C) 2010, 2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2010, 2011 Google Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 1487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1498 return false; | 1498 return false; |
1499 | 1499 |
1500 // Because b tag can only bold text, there are only two states in plain html : bold and not bold. | 1500 // Because b tag can only bold text, there are only two states in plain html : bold and not bold. |
1501 // Collapse all other values to either one of these two states for editing p urposes. | 1501 // Collapse all other values to either one of these two states for editing p urposes. |
1502 switch (toCSSPrimitiveValue(fontWeight)->getValueID()) { | 1502 switch (toCSSPrimitiveValue(fontWeight)->getValueID()) { |
1503 case CSSValue100: | 1503 case CSSValue100: |
1504 case CSSValue200: | 1504 case CSSValue200: |
1505 case CSSValue300: | 1505 case CSSValue300: |
1506 case CSSValue400: | 1506 case CSSValue400: |
1507 case CSSValue500: | 1507 case CSSValue500: |
1508 case CSSValueLighter: | |
1508 case CSSValueNormal: | 1509 case CSSValueNormal: |
1509 return false; | 1510 return false; |
1510 case CSSValueBold: | 1511 case CSSValueBold: |
1512 case CSSValueBolder: | |
rniwa-cr
2013/08/13 20:52:53
This is incorrect. e.g. in
<span style="font-weigh
| |
1511 case CSSValue600: | 1513 case CSSValue600: |
1512 case CSSValue700: | 1514 case CSSValue700: |
1513 case CSSValue800: | 1515 case CSSValue800: |
1514 case CSSValue900: | 1516 case CSSValue900: |
1515 return true; | 1517 return true; |
1516 default: | 1518 default: |
1517 break; | 1519 break; |
1518 } | 1520 } |
1519 | 1521 |
1520 ASSERT_NOT_REACHED(); // For CSSValueBolder and CSSValueLighter | 1522 ASSERT_NOT_REACHED(); |
esprehn
2013/08/13 20:07:43
Why was this comment here? It seems the author tho
| |
1521 return false; | 1523 return false; |
1522 } | 1524 } |
1523 | 1525 |
1524 static bool fontWeightIsBold(CSSStyleDeclaration* style) | 1526 static bool fontWeightIsBold(CSSStyleDeclaration* style) |
1525 { | 1527 { |
1526 ASSERT(style); | 1528 ASSERT(style); |
1527 RefPtr<CSSValue> fontWeight = style->getPropertyCSSValueInternal(CSSProperty FontWeight); | 1529 RefPtr<CSSValue> fontWeight = style->getPropertyCSSValueInternal(CSSProperty FontWeight); |
1528 return fontWeightIsBold(fontWeight.get()); | 1530 return fontWeightIsBold(fontWeight.get()); |
1529 } | 1531 } |
1530 | 1532 |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1635 { | 1637 { |
1636 for (Node* ancestor = node; ancestor; ancestor = ancestor->parentNode()) { | 1638 for (Node* ancestor = node; ancestor; ancestor = ancestor->parentNode()) { |
1637 RefPtr<CSSComputedStyleDeclaration> ancestorStyle = CSSComputedStyleDecl aration::create(ancestor); | 1639 RefPtr<CSSComputedStyleDeclaration> ancestorStyle = CSSComputedStyleDecl aration::create(ancestor); |
1638 if (!hasTransparentBackgroundColor(ancestorStyle.get())) | 1640 if (!hasTransparentBackgroundColor(ancestorStyle.get())) |
1639 return ancestorStyle->getPropertyCSSValue(CSSPropertyBackgroundColor ); | 1641 return ancestorStyle->getPropertyCSSValue(CSSPropertyBackgroundColor ); |
1640 } | 1642 } |
1641 return 0; | 1643 return 0; |
1642 } | 1644 } |
1643 | 1645 |
1644 } | 1646 } |
OLD | NEW |