Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(909)

Unified Diff: Source/core/editing/EditingStyle.cpp

Issue 23075004: Fixes a crash when copying elements with font-weight lighter or bolder (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « LayoutTests/editing/pasteboard/insert-font-weight-expected.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/EditingStyle.cpp
diff --git a/Source/core/editing/EditingStyle.cpp b/Source/core/editing/EditingStyle.cpp
index 614038c2de9597891c66cd616b64410bf9c9d821..bc20bf2511a62aad56a3d0445e6e6371cf165483 100644
--- a/Source/core/editing/EditingStyle.cpp
+++ b/Source/core/editing/EditingStyle.cpp
@@ -1505,9 +1505,11 @@ static bool fontWeightIsBold(CSSValue* fontWeight)
case CSSValue300:
case CSSValue400:
case CSSValue500:
+ case CSSValueLighter:
case CSSValueNormal:
return false;
case CSSValueBold:
+ case CSSValueBolder:
rniwa-cr 2013/08/13 20:52:53 This is incorrect. e.g. in <span style="font-weigh
case CSSValue600:
case CSSValue700:
case CSSValue800:
@@ -1517,7 +1519,7 @@ static bool fontWeightIsBold(CSSValue* fontWeight)
break;
}
- ASSERT_NOT_REACHED(); // For CSSValueBolder and CSSValueLighter
esprehn 2013/08/13 20:07:43 Why was this comment here? It seems the author tho
+ ASSERT_NOT_REACHED();
return false;
}
« no previous file with comments | « LayoutTests/editing/pasteboard/insert-font-weight-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698