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

Side by Side Diff: Source/core/css/CSSPrimitiveValueMappings.h

Issue 255323004: Rendering text-justify:distribute for 8 bit characters. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: patch for landing 2 Created 6 years 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007 Alexey Proskuryakov <ap@nypop.com>. 2 * Copyright (C) 2007 Alexey Proskuryakov <ap@nypop.com>.
3 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
4 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 4 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
5 * Copyright (C) 2009 Jeff Schiller <codedread@gmail.com> 5 * Copyright (C) 2009 Jeff Schiller <codedread@gmail.com>
6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
7 * 7 *
8 * Redistribution and use in source and binary forms, with or without 8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions 9 * modification, are permitted provided that the following conditions
10 * are met: 10 * are met:
(...skipping 29 matching lines...) Expand all
40 #include "core/rendering/style/SVGRenderStyleDefs.h" 40 #include "core/rendering/style/SVGRenderStyleDefs.h"
41 #include "platform/Length.h" 41 #include "platform/Length.h"
42 #include "platform/ThemeTypes.h" 42 #include "platform/ThemeTypes.h"
43 #include "platform/fonts/FontDescription.h" 43 #include "platform/fonts/FontDescription.h"
44 #include "platform/fonts/FontSmoothingMode.h" 44 #include "platform/fonts/FontSmoothingMode.h"
45 #include "platform/fonts/TextRenderingMode.h" 45 #include "platform/fonts/TextRenderingMode.h"
46 #include "platform/graphics/GraphicsTypes.h" 46 #include "platform/graphics/GraphicsTypes.h"
47 #include "platform/graphics/Path.h" 47 #include "platform/graphics/Path.h"
48 #include "platform/scroll/ScrollableArea.h" 48 #include "platform/scroll/ScrollableArea.h"
49 #include "platform/text/TextDirection.h" 49 #include "platform/text/TextDirection.h"
50 #include "platform/text/TextRun.h"
50 #include "platform/text/UnicodeBidi.h" 51 #include "platform/text/UnicodeBidi.h"
51 #include "platform/text/WritingMode.h" 52 #include "platform/text/WritingMode.h"
52 #include "wtf/MathExtras.h" 53 #include "wtf/MathExtras.h"
53 54
54 namespace blink { 55 namespace blink {
55 56
56 template<> inline CSSPrimitiveValue::CSSPrimitiveValue(short i) 57 template<> inline CSSPrimitiveValue::CSSPrimitiveValue(short i)
57 : CSSValue(PrimitiveClass) 58 : CSSValue(PrimitiveClass)
58 { 59 {
59 m_primitiveUnitType = CSS_NUMBER; 60 m_primitiveUnitType = CSS_NUMBER;
(...skipping 4716 matching lines...) Expand 10 before | Expand all | Expand 10 after
4776 default: 4777 default:
4777 break; 4778 break;
4778 } 4779 }
4779 ASSERT_NOT_REACHED(); 4780 ASSERT_NOT_REACHED();
4780 return ScrollBehaviorInstant; 4781 return ScrollBehaviorInstant;
4781 } 4782 }
4782 4783
4783 } 4784 }
4784 4785
4785 #endif 4786 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698