HomeSort by relevance Sort by last modified time
    Searched refs:defaultFontSize (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaValues.h 39 static bool computeLengthImpl(double value, CSSPrimitiveValue::UnitType, unsigned defaultFontSize, unsigned viewportWidth, unsigned viewportHeight, double& result);
41 static bool computeLength(double value, CSSPrimitiveValue::UnitType type, unsigned defaultFontSize, unsigned viewportWidth, unsigned viewportHeight, T& result)
44 if (!computeLengthImpl(value, type, defaultFontSize, viewportWidth, viewportHeight, tempResult))
MediaValuesCached.h 24 int defaultFontSize;
40 , defaultFontSize(16)
MediaValues.cpp 96 return frame->host()->settings().defaultFontSize();
143 bool MediaValues::computeLengthImpl(double value, CSSPrimitiveValue::UnitType type, unsigned defaultFontSize, unsigned viewportWidth, unsigned viewportHeight, double& result)
154 factor = defaultFontSize;
163 factor = defaultFontSize / 2.0;
168 factor = defaultFontSize / 2.0;
MediaValuesCached.cpp 61 m_data.defaultFontSize = calculateDefaultFontSize(frame);
81 return MediaValues::computeLength(value, type, m_data.defaultFontSize, m_data.viewportWidth, m_data.viewportHeight, result);
86 return MediaValues::computeLength(value, type, m_data.defaultFontSize, m_data.viewportWidth, m_data.viewportHeight, result);
FontSize.cpp 130 int mediumSize = shouldUseFixedDefaultSize ? settings->defaultFixedFontSize() : settings->defaultFontSize();
163 int mediumSize = shouldUseFixedDefaultSize ? settings->defaultFixedFontSize() : settings->defaultFontSize();
MediaQueryEvaluatorTest.cpp 82 data.defaultFontSize = 16;
FontFaceSet.cpp 49 static const int defaultFontSize = 10;
526 defaultFontDescription.setSpecifiedSize(defaultFontSize);
527 defaultFontDescription.setComputedSize(defaultFontSize);
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
SizesAttributeParserTest.cpp 68 data.defaultFontSize = 16;
SizesCalcParserTest.cpp 111 data.defaultFontSize = 16;
132 verifyCSSCalc(testCases[i].input, testCases[i].output, testCases[i].valid, data.defaultFontSize, data.viewportWidth, data.viewportHeight);
  /external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/
pending_changes.js 21 // Format: pendingFontSizeChanges_.defaultFontSize = 12
44 * 'defaultFontSize', 'defaultFixedFontSize', or 'minFontSize'.
98 var size = this.pendingFontSizeChanges_['defaultFontSize'];
options.js 703 defaultFontSize: {
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
FontBuilder.cpp 618 float fixedScaleFactor = (settings && settings->defaultFixedFontSize() && settings->defaultFontSize())
619 ? static_cast<float>(settings->defaultFixedFontSize()) / settings->defaultFontSize()
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.cpp 74 static const int defaultFontSize = 10;
    [all...]

Completed in 97 milliseconds