1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208
|
/*
* Copyright (C) 2004 Zack Rusin <zack@kde.org>
* Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
* Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
* Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#include "config.h"
#include "CSSComputedStyleDeclaration.h"
#include "CSSBorderImageValue.h"
#include "CSSMutableStyleDeclaration.h"
#include "CSSPrimitiveValue.h"
#include "CSSPrimitiveValueMappings.h"
#include "CSSPropertyNames.h"
#include "CSSReflectValue.h"
#include "CSSValueList.h"
#include "CachedImage.h"
#include "Document.h"
#include "ExceptionCode.h"
#include "Pair.h"
#include "Rect.h"
#include "RenderObject.h"
#include "ShadowValue.h"
#if ENABLE(DASHBOARD_SUPPORT)
#include "DashboardRegion.h"
#endif
namespace WebCore {
// List of all properties we know how to compute, omitting shorthands.
static const int computedProperties[] = {
CSSPropertyBackgroundAttachment,
CSSPropertyBackgroundColor,
CSSPropertyBackgroundImage,
// more specific background-position-x/y are non-standard
CSSPropertyBackgroundPosition,
CSSPropertyBackgroundRepeat,
CSSPropertyBorderBottomColor,
CSSPropertyBorderBottomStyle,
CSSPropertyBorderBottomWidth,
CSSPropertyBorderCollapse,
CSSPropertyBorderLeftColor,
CSSPropertyBorderLeftStyle,
CSSPropertyBorderLeftWidth,
CSSPropertyBorderRightColor,
CSSPropertyBorderRightStyle,
CSSPropertyBorderRightWidth,
CSSPropertyBorderTopColor,
CSSPropertyBorderTopStyle,
CSSPropertyBorderTopWidth,
CSSPropertyBottom,
CSSPropertyCaptionSide,
CSSPropertyClear,
CSSPropertyColor,
CSSPropertyCursor,
CSSPropertyDirection,
CSSPropertyDisplay,
CSSPropertyEmptyCells,
CSSPropertyFloat,
CSSPropertyFontFamily,
CSSPropertyFontSize,
CSSPropertyFontStyle,
CSSPropertyFontVariant,
CSSPropertyFontWeight,
CSSPropertyHeight,
CSSPropertyLeft,
CSSPropertyLetterSpacing,
CSSPropertyLineHeight,
CSSPropertyListStyleImage,
CSSPropertyListStylePosition,
CSSPropertyListStyleType,
CSSPropertyMarginBottom,
CSSPropertyMarginLeft,
CSSPropertyMarginRight,
CSSPropertyMarginTop,
CSSPropertyMaxHeight,
CSSPropertyMaxWidth,
CSSPropertyMinHeight,
CSSPropertyMinWidth,
CSSPropertyOpacity,
CSSPropertyOrphans,
CSSPropertyOutlineColor,
CSSPropertyOutlineStyle,
CSSPropertyOutlineWidth,
CSSPropertyOverflowX,
CSSPropertyOverflowY,
CSSPropertyPaddingBottom,
CSSPropertyPaddingLeft,
CSSPropertyPaddingRight,
CSSPropertyPaddingTop,
CSSPropertyPageBreakAfter,
CSSPropertyPageBreakBefore,
CSSPropertyPageBreakInside,
CSSPropertyPosition,
CSSPropertyResize,
CSSPropertyRight,
CSSPropertyTableLayout,
CSSPropertyTextAlign,
CSSPropertyTextDecoration,
CSSPropertyTextIndent,
CSSPropertyTextShadow,
CSSPropertyTextTransform,
CSSPropertyTop,
CSSPropertyUnicodeBidi,
CSSPropertyVerticalAlign,
CSSPropertyVisibility,
CSSPropertyWhiteSpace,
CSSPropertyWidows,
CSSPropertyWidth,
CSSPropertyWordSpacing,
CSSPropertyWordWrap,
CSSPropertyZIndex,
CSSPropertyZoom,
CSSPropertyWebkitAppearance,
CSSPropertyWebkitBackgroundClip,
CSSPropertyWebkitBackgroundComposite,
CSSPropertyWebkitBackgroundOrigin,
CSSPropertyWebkitBackgroundSize,
CSSPropertyWebkitBorderFit,
CSSPropertyWebkitBorderImage,
CSSPropertyWebkitBorderHorizontalSpacing,
CSSPropertyWebkitBorderVerticalSpacing,
CSSPropertyWebkitBoxAlign,
CSSPropertyWebkitBoxDirection,
CSSPropertyWebkitBoxFlex,
CSSPropertyWebkitBoxFlexGroup,
CSSPropertyWebkitBoxLines,
CSSPropertyWebkitBoxOrdinalGroup,
CSSPropertyWebkitBoxOrient,
CSSPropertyWebkitBoxPack,
CSSPropertyWebkitBoxReflect,
CSSPropertyWebkitBoxShadow,
CSSPropertyWebkitBoxSizing,
CSSPropertyWebkitColumnBreakAfter,
CSSPropertyWebkitColumnBreakBefore,
CSSPropertyWebkitColumnBreakInside,
CSSPropertyWebkitColumnCount,
CSSPropertyWebkitColumnGap,
CSSPropertyWebkitColumnRuleColor,
CSSPropertyWebkitColumnRuleStyle,
CSSPropertyWebkitColumnRuleWidth,
CSSPropertyWebkitColumnWidth,
CSSPropertyWebkitHighlight,
CSSPropertyWebkitLineBreak,
CSSPropertyWebkitLineClamp,
CSSPropertyWebkitMarginBottomCollapse,
CSSPropertyWebkitMarginTopCollapse,
CSSPropertyWebkitMarqueeDirection,
CSSPropertyWebkitMarqueeIncrement,
CSSPropertyWebkitMarqueeRepetition,
CSSPropertyWebkitMarqueeStyle,
CSSPropertyWebkitMaskAttachment,
CSSPropertyWebkitMaskBoxImage,
CSSPropertyWebkitMaskImage,
CSSPropertyWebkitMaskPosition,
CSSPropertyWebkitMaskRepeat,
CSSPropertyWebkitMaskClip,
CSSPropertyWebkitMaskComposite,
CSSPropertyWebkitMaskOrigin,
CSSPropertyWebkitMaskSize,
CSSPropertyWebkitNbspMode,
CSSPropertyWebkitRtlOrdering,
CSSPropertyWebkitTextDecorationsInEffect,
CSSPropertyWebkitTextFillColor,
CSSPropertyWebkitTextSecurity,
CSSPropertyWebkitTextStrokeColor,
CSSPropertyWebkitTextStrokeWidth,
CSSPropertyWebkitUserDrag,
CSSPropertyWebkitUserModify,
CSSPropertyWebkitUserSelect,
#if ENABLE(DASHBOARD_SUPPORT)
CSSPropertyWebkitDashboardRegion,
#endif
CSSPropertyWebkitBorderBottomLeftRadius,
CSSPropertyWebkitBorderBottomRightRadius,
CSSPropertyWebkitBorderTopLeftRadius,
CSSPropertyWebkitBorderTopRightRadius
#if ENABLE(SVG)
,
CSSPropertyClipPath,
CSSPropertyClipRule,
CSSPropertyMask,
CSSPropertyFilter,
CSSPropertyFloodColor,
CSSPropertyFloodOpacity,
CSSPropertyLightingColor,
CSSPropertyStopColor,
CSSPropertyStopOpacity,
CSSPropertyPointerEvents,
CSSPropertyColorInterpolation,
CSSPropertyColorInterpolationFilters,
CSSPropertyColorRendering,
CSSPropertyFill,
CSSPropertyFillOpacity,
CSSPropertyFillRule,
CSSPropertyImageRendering,
CSSPropertyMarkerEnd,
CSSPropertyMarkerMid,
CSSPropertyMarkerStart,
CSSPropertyShapeRendering,
CSSPropertyStroke,
CSSPropertyStrokeDasharray,
CSSPropertyStrokeDashoffset,
CSSPropertyStrokeLinecap,
CSSPropertyStrokeLinejoin,
CSSPropertyStrokeMiterlimit,
CSSPropertyStrokeOpacity,
CSSPropertyStrokeWidth,
CSSPropertyTextRendering,
CSSPropertyAlignmentBaseline,
CSSPropertyBaselineShift,
CSSPropertyDominantBaseline,
CSSPropertyKerning,
CSSPropertyTextAnchor,
CSSPropertyWritingMode,
CSSPropertyGlyphOrientationHorizontal,
CSSPropertyGlyphOrientationVertical
#endif
};
const unsigned numComputedProperties = sizeof(computedProperties) / sizeof(computedProperties[0]);
static PassRefPtr<CSSValue> valueForShadow(const ShadowData* shadow)
{
if (!shadow)
return new CSSPrimitiveValue(CSSValueNone);
RefPtr<CSSValueList> list = new CSSValueList;
for (const ShadowData* s = shadow; s; s = s->next) {
RefPtr<CSSPrimitiveValue> x = new CSSPrimitiveValue(s->x, CSSPrimitiveValue::CSS_PX);
RefPtr<CSSPrimitiveValue> y = new CSSPrimitiveValue(s->y, CSSPrimitiveValue::CSS_PX);
RefPtr<CSSPrimitiveValue> blur = new CSSPrimitiveValue(s->blur, CSSPrimitiveValue::CSS_PX);
RefPtr<CSSPrimitiveValue> color = new CSSPrimitiveValue(s->color.rgb());
list->prepend(new ShadowValue(x.release(), y.release(), blur.release(), color.release()));
}
return list.release();
}
static int valueForRepeatRule(int rule)
{
switch (rule) {
case RepeatImageRule:
return CSSValueRepeat;
case RoundImageRule:
return CSSValueRound;
default:
return CSSValueStretch;
}
}
static PassRefPtr<CSSValue> valueForNinePieceImage(const NinePieceImage& image)
{
if (!image.hasImage())
return new CSSPrimitiveValue(CSSValueNone);
// Image first.
RefPtr<CSSValue> imageValue;
if (image.image())
imageValue = image.image()->cssValue();
// Create the slices.
RefPtr<CSSPrimitiveValue> top;
if (image.m_slices.top.isPercent())
top = new CSSPrimitiveValue(image.m_slices.top.value(), CSSPrimitiveValue::CSS_PERCENTAGE);
else
top = new CSSPrimitiveValue(image.m_slices.top.value(), CSSPrimitiveValue::CSS_NUMBER);
RefPtr<CSSPrimitiveValue> right;
if (image.m_slices.right.isPercent())
right = new CSSPrimitiveValue(image.m_slices.right.value(), CSSPrimitiveValue::CSS_PERCENTAGE);
else
right = new CSSPrimitiveValue(image.m_slices.right.value(), CSSPrimitiveValue::CSS_NUMBER);
RefPtr<CSSPrimitiveValue> bottom;
if (image.m_slices.bottom.isPercent())
bottom = new CSSPrimitiveValue(image.m_slices.bottom.value(), CSSPrimitiveValue::CSS_PERCENTAGE);
else
bottom = new CSSPrimitiveValue(image.m_slices.bottom.value(), CSSPrimitiveValue::CSS_NUMBER);
RefPtr<CSSPrimitiveValue> left;
if (image.m_slices.left.isPercent())
left = new CSSPrimitiveValue(image.m_slices.left.value(), CSSPrimitiveValue::CSS_PERCENTAGE);
else
left = new CSSPrimitiveValue(image.m_slices.left.value(), CSSPrimitiveValue::CSS_NUMBER);
RefPtr<Rect> rect = Rect::create();
rect->setTop(top);
rect->setRight(right);
rect->setBottom(bottom);
rect->setLeft(left);
return new CSSBorderImageValue(imageValue, rect, valueForRepeatRule(image.m_horizontalRule), valueForRepeatRule(image.m_verticalRule));
}
static PassRefPtr<CSSValue> valueForReflection(const StyleReflection* reflection)
{
if (!reflection)
return new CSSPrimitiveValue(CSSValueNone);
RefPtr<CSSPrimitiveValue> offset;
if (reflection->offset().isPercent())
offset = new CSSPrimitiveValue(reflection->offset().percent(), CSSPrimitiveValue::CSS_PERCENTAGE);
else
offset = new CSSPrimitiveValue(reflection->offset().value(), CSSPrimitiveValue::CSS_PX);
return CSSReflectValue::create(reflection->direction(), offset.release(), valueForNinePieceImage(reflection->mask()));
}
static PassRefPtr<CSSValue> getPositionOffsetValue(RenderStyle* style, int propertyID)
{
if (!style)
return 0;
Length l;
switch (propertyID) {
case CSSPropertyLeft:
l = style->left();
break;
case CSSPropertyRight:
l = style->right();
break;
case CSSPropertyTop:
l = style->top();
break;
case CSSPropertyBottom:
l = style->bottom();
break;
default:
return 0;
}
if (style->position() == AbsolutePosition || style->position() == FixedPosition)
return new CSSPrimitiveValue(l);
if (style->position() == RelativePosition)
// FIXME: It's not enough to simply return "auto" values for one offset if the other side is defined.
// In other words if left is auto and right is not auto, then left's computed value is negative right.
// So we should get the opposite length unit and see if it is auto.
return new CSSPrimitiveValue(l);
return new CSSPrimitiveValue(CSSValueAuto);
}
static PassRefPtr<CSSPrimitiveValue> currentColorOrValidColor(RenderStyle* style, const Color& color)
{
if (!color.isValid())
return new CSSPrimitiveValue(style->color().rgb());
return new CSSPrimitiveValue(color.rgb());
}
static PassRefPtr<CSSValue> getBorderRadiusCornerValue(IntSize radius)
{
if (radius.width() == radius.height())
return new CSSPrimitiveValue(radius.width(), CSSPrimitiveValue::CSS_PX);
RefPtr<CSSValueList> list = new CSSValueList(true);
list->append(new CSSPrimitiveValue(radius.width(), CSSPrimitiveValue::CSS_PX));
list->append(new CSSPrimitiveValue(radius.height(), CSSPrimitiveValue::CSS_PX));
return list.release();
}
static IntRect sizingBox(RenderObject* renderer)
{
return renderer->style()->boxSizing() == CONTENT_BOX ? renderer->contentBox() : renderer->borderBox();
}
CSSComputedStyleDeclaration::CSSComputedStyleDeclaration(PassRefPtr<Node> n)
: m_node(n)
{
}
CSSComputedStyleDeclaration::~CSSComputedStyleDeclaration()
{
}
String CSSComputedStyleDeclaration::cssText() const
{
String result("");
for (unsigned i = 0; i < numComputedProperties; i++) {
if (i)
result += " ";
result += getPropertyName(static_cast<CSSPropertyID>(computedProperties[i]));
result += ": ";
result += getPropertyValue(computedProperties[i]);
result += ";";
}
return result;
}
void CSSComputedStyleDeclaration::setCssText(const String&, ExceptionCode& ec)
{
ec = NO_MODIFICATION_ALLOWED_ERR;
}
PassRefPtr<CSSValue> CSSComputedStyleDeclaration::getPropertyCSSValue(int propertyID) const
{
return getPropertyCSSValue(propertyID, UpdateLayout);
}
PassRefPtr<CSSValue> CSSComputedStyleDeclaration::getPropertyCSSValue(int propertyID, EUpdateLayout updateLayout) const
{
Node* node = m_node.get();
if (!node)
return 0;
// Make sure our layout is up to date before we allow a query on these attributes.
if (updateLayout)
node->document()->updateLayoutIgnorePendingStylesheets();
RenderObject* renderer = node->renderer();
RenderStyle* style = node->computedStyle();
if (!style)
return 0;
switch (static_cast<CSSPropertyID>(propertyID)) {
case CSSPropertyInvalid:
break;
case CSSPropertyBackgroundColor:
return new CSSPrimitiveValue(style->backgroundColor().rgb());
case CSSPropertyBackgroundImage:
if (style->backgroundImage())
return style->backgroundImage()->cssValue();
return new CSSPrimitiveValue(CSSValueNone);
case CSSPropertyWebkitBackgroundSize: {
RefPtr<CSSValueList> list = new CSSValueList(true);
list->append(new CSSPrimitiveValue(style->backgroundSize().width));
list->append(new CSSPrimitiveValue(style->backgroundSize().height));
return list.release();
}
case CSSPropertyBackgroundRepeat:
return new CSSPrimitiveValue(style->backgroundRepeat());
case CSSPropertyWebkitBackgroundComposite:
return new CSSPrimitiveValue(style->backgroundComposite());
case CSSPropertyBackgroundAttachment:
if (style->backgroundAttachment())
return new CSSPrimitiveValue(CSSValueScroll);
return new CSSPrimitiveValue(CSSValueFixed);
case CSSPropertyWebkitBackgroundClip:
case CSSPropertyWebkitBackgroundOrigin: {
EFillBox box = (propertyID == CSSPropertyWebkitBackgroundClip ? style->backgroundClip() : style->backgroundOrigin());
return new CSSPrimitiveValue(box);
}
case CSSPropertyBackgroundPosition: {
RefPtr<CSSValueList> list = new CSSValueList(true);
list->append(new CSSPrimitiveValue(style->backgroundXPosition()));
list->append(new CSSPrimitiveValue(style->backgroundYPosition()));
return list.release();
}
case CSSPropertyBackgroundPositionX:
return new CSSPrimitiveValue(style->backgroundXPosition());
case CSSPropertyBackgroundPositionY:
return new CSSPrimitiveValue(style->backgroundYPosition());
case CSSPropertyBorderCollapse:
if (style->borderCollapse())
return new CSSPrimitiveValue(CSSValueCollapse);
return new CSSPrimitiveValue(CSSValueSeparate);
case CSSPropertyBorderSpacing: {
RefPtr<CSSValueList> list = new CSSValueList(true);
list->append(new CSSPrimitiveValue(style->horizontalBorderSpacing(), CSSPrimitiveValue::CSS_PX));
list->append(new CSSPrimitiveValue(style->verticalBorderSpacing(), CSSPrimitiveValue::CSS_PX));
return list.release();
}
case CSSPropertyWebkitBorderHorizontalSpacing:
return new CSSPrimitiveValue(style->horizontalBorderSpacing(), CSSPrimitiveValue::CSS_PX);
case CSSPropertyWebkitBorderVerticalSpacing:
return new CSSPrimitiveValue(style->verticalBorderSpacing(), CSSPrimitiveValue::CSS_PX);
case CSSPropertyBorderTopColor:
return currentColorOrValidColor(style, style->borderTopColor());
case CSSPropertyBorderRightColor:
return currentColorOrValidColor(style, style->borderRightColor());
case CSSPropertyBorderBottomColor:
return currentColorOrValidColor(style, style->borderBottomColor());
case CSSPropertyBorderLeftColor:
return currentColorOrValidColor(style, style->borderLeftColor());
case CSSPropertyBorderTopStyle:
return new CSSPrimitiveValue(style->borderTopStyle());
case CSSPropertyBorderRightStyle:
return new CSSPrimitiveValue(style->borderRightStyle());
case CSSPropertyBorderBottomStyle:
return new CSSPrimitiveValue(style->borderBottomStyle());
case CSSPropertyBorderLeftStyle:
return new CSSPrimitiveValue(style->borderLeftStyle());
case CSSPropertyBorderTopWidth:
return new CSSPrimitiveValue(style->borderTopWidth(), CSSPrimitiveValue::CSS_PX);
case CSSPropertyBorderRightWidth:
return new CSSPrimitiveValue(style->borderRightWidth(), CSSPrimitiveValue::CSS_PX);
case CSSPropertyBorderBottomWidth:
return new CSSPrimitiveValue(style->borderBottomWidth(), CSSPrimitiveValue::CSS_PX);
case CSSPropertyBorderLeftWidth:
return new CSSPrimitiveValue(style->borderLeftWidth(), CSSPrimitiveValue::CSS_PX);
case CSSPropertyBottom:
return getPositionOffsetValue(style, CSSPropertyBottom);
case CSSPropertyWebkitBoxAlign:
return new CSSPrimitiveValue(style->boxAlign());
case CSSPropertyWebkitBoxDirection:
return new CSSPrimitiveValue(style->boxDirection());
case CSSPropertyWebkitBoxFlex:
return new CSSPrimitiveValue(style->boxFlex(), CSSPrimitiveValue::CSS_NUMBER);
case CSSPropertyWebkitBoxFlexGroup:
return new CSSPrimitiveValue(style->boxFlexGroup(), CSSPrimitiveValue::CSS_NUMBER);
case CSSPropertyWebkitBoxLines:
return new CSSPrimitiveValue(style->boxLines());
case CSSPropertyWebkitBoxOrdinalGroup:
return new CSSPrimitiveValue(style->boxOrdinalGroup(), CSSPrimitiveValue::CSS_NUMBER);
case CSSPropertyWebkitBoxOrient:
return new CSSPrimitiveValue(style->boxOrient());
case CSSPropertyWebkitBoxPack: {
EBoxAlignment boxPack = style->boxPack();
ASSERT(boxPack != BSTRETCH);
ASSERT(boxPack != BBASELINE);
if (boxPack == BJUSTIFY || boxPack== BBASELINE)
return 0;
return new CSSPrimitiveValue(boxPack);
}
case CSSPropertyWebkitBoxReflect:
return valueForReflection(style->boxReflect());
case CSSPropertyWebkitBoxShadow:
return valueForShadow(style->boxShadow());
case CSSPropertyCaptionSide:
return new CSSPrimitiveValue(style->captionSide());
case CSSPropertyClear:
return new CSSPrimitiveValue(style->clear());
case CSSPropertyColor:
return new CSSPrimitiveValue(style->color().rgb());
case CSSPropertyWebkitColumnCount:
if (style->hasAutoColumnCount())
return new CSSPrimitiveValue(CSSValueAuto);
return new CSSPrimitiveValue(style->columnCount(), CSSPrimitiveValue::CSS_NUMBER);
case CSSPropertyWebkitColumnGap:
if (style->hasNormalColumnGap())
return new CSSPrimitiveValue(CSSValueNormal);
return new CSSPrimitiveValue(style->columnGap(), CSSPrimitiveValue::CSS_NUMBER);
case CSSPropertyWebkitColumnRuleColor:
return currentColorOrValidColor(style, style->columnRuleColor());
case CSSPropertyWebkitColumnRuleStyle:
return new CSSPrimitiveValue(style->columnRuleStyle());
case CSSPropertyWebkitColumnRuleWidth:
return new CSSPrimitiveValue(style->columnRuleWidth(), CSSPrimitiveValue::CSS_PX);
case CSSPropertyWebkitColumnBreakAfter:
return new CSSPrimitiveValue(style->columnBreakAfter());
case CSSPropertyWebkitColumnBreakBefore:
return new CSSPrimitiveValue(style->columnBreakBefore());
case CSSPropertyWebkitColumnBreakInside:
return new CSSPrimitiveValue(style->columnBreakInside());
case CSSPropertyWebkitColumnWidth:
if (style->hasAutoColumnWidth())
return new CSSPrimitiveValue(CSSValueAuto);
return new CSSPrimitiveValue(style->columnWidth(), CSSPrimitiveValue::CSS_NUMBER);
case CSSPropertyCursor: {
RefPtr<CSSValueList> list;
CursorList* cursors = style->cursors();
if (cursors && cursors->size() > 0) {
list = new CSSValueList;
for (unsigned i = 0; i < cursors->size(); ++i)
list->append(new CSSPrimitiveValue((*cursors)[i].cursorImage->url(), CSSPrimitiveValue::CSS_URI));
}
RefPtr<CSSValue> value = new CSSPrimitiveValue(style->cursor());
if (list) {
list->append(value);
return list.release();
}
return value.release();
}
case CSSPropertyDirection:
return new CSSPrimitiveValue(style->direction());
case CSSPropertyDisplay:
return new CSSPrimitiveValue(style->display());
case CSSPropertyEmptyCells:
return new CSSPrimitiveValue(style->emptyCells());
case CSSPropertyFloat:
return new CSSPrimitiveValue(style->floating());
case CSSPropertyFontFamily:
// FIXME: This only returns the first family.
return new CSSPrimitiveValue(style->fontDescription().family().family().string(), CSSPrimitiveValue::CSS_STRING);
case CSSPropertyFontSize:
return new CSSPrimitiveValue(style->fontDescription().computedPixelSize(), CSSPrimitiveValue::CSS_PX);
case CSSPropertyWebkitBinding:
break;
case CSSPropertyFontStyle:
if (style->fontDescription().italic())
return new CSSPrimitiveValue(CSSValueItalic);
return new CSSPrimitiveValue(CSSValueNormal);
case CSSPropertyFontVariant:
if (style->fontDescription().smallCaps())
return new CSSPrimitiveValue(CSSValueSmallCaps);
return new CSSPrimitiveValue(CSSValueNormal);
case CSSPropertyFontWeight:
switch (style->fontDescription().weight()) {
case FontWeight100:
return new CSSPrimitiveValue(CSSValue100);
case FontWeight200:
return new CSSPrimitiveValue(CSSValue200);
case FontWeight300:
return new CSSPrimitiveValue(CSSValue300);
case FontWeightNormal:
return new CSSPrimitiveValue(CSSValueNormal);
case FontWeight500:
return new CSSPrimitiveValue(CSSValue500);
case FontWeight600:
return new CSSPrimitiveValue(CSSValue600);
case FontWeightBold:
return new CSSPrimitiveValue(CSSValueBold);
case FontWeight800:
return new CSSPrimitiveValue(CSSValue800);
case FontWeight900:
return new CSSPrimitiveValue(CSSValue900);
}
ASSERT_NOT_REACHED();
return new CSSPrimitiveValue(CSSValueNormal);
case CSSPropertyHeight:
if (renderer)
return new CSSPrimitiveValue(sizingBox(renderer).height(), CSSPrimitiveValue::CSS_PX);
return new CSSPrimitiveValue(style->height());
case CSSPropertyWebkitHighlight:
if (style->highlight() == nullAtom)
return new CSSPrimitiveValue(CSSValueNone);
return new CSSPrimitiveValue(style->highlight(), CSSPrimitiveValue::CSS_STRING);
case CSSPropertyWebkitBorderFit:
if (style->borderFit() == BorderFitBorder)
return new CSSPrimitiveValue(CSSValueBorder);
return new CSSPrimitiveValue(CSSValueLines);
case CSSPropertyLeft:
return getPositionOffsetValue(style, CSSPropertyLeft);
case CSSPropertyLetterSpacing:
if (!style->letterSpacing())
return new CSSPrimitiveValue(CSSValueNormal);
return new CSSPrimitiveValue(style->letterSpacing(), CSSPrimitiveValue::CSS_PX);
case CSSPropertyWebkitLineClamp:
if (style->lineClamp() == -1)
return new CSSPrimitiveValue(CSSValueNone);
return new CSSPrimitiveValue(style->lineClamp(), CSSPrimitiveValue::CSS_PERCENTAGE);
case CSSPropertyLineHeight: {
Length length = style->lineHeight();
if (length.isNegative())
return new CSSPrimitiveValue(CSSValueNormal);
if (length.isPercent())
// This is imperfect, because it doesn't include the zoom factor and the real computation
// for how high to be in pixels does include things like minimum font size and the zoom factor.
// On the other hand, since font-size doesn't include the zoom factor, we really can't do
// that here either.
return new CSSPrimitiveValue(static_cast<int>(length.percent() * style->fontDescription().specifiedSize()) / 100, CSSPrimitiveValue::CSS_PX);
return new CSSPrimitiveValue(length.value(), CSSPrimitiveValue::CSS_PX);
}
case CSSPropertyListStyleImage:
if (style->listStyleImage())
return style->listStyleImage()->cssValue();
return new CSSPrimitiveValue(CSSValueNone);
case CSSPropertyListStylePosition:
return new CSSPrimitiveValue(style->listStylePosition());
case CSSPropertyListStyleType:
return new CSSPrimitiveValue(style->listStyleType());
case CSSPropertyMarginTop:
if (renderer)
// FIXME: Supposed to return the percentage if percentage was specified.
return new CSSPrimitiveValue(renderer->marginTop(), CSSPrimitiveValue::CSS_PX);
return new CSSPrimitiveValue(style->marginTop());
case CSSPropertyMarginRight:
if (renderer)
// FIXME: Supposed to return the percentage if percentage was specified.
return new CSSPrimitiveValue(renderer->marginRight(), CSSPrimitiveValue::CSS_PX);
return new CSSPrimitiveValue(style->marginRight());
case CSSPropertyMarginBottom:
if (renderer)
// FIXME: Supposed to return the percentage if percentage was specified.
return new CSSPrimitiveValue(renderer->marginBottom(), CSSPrimitiveValue::CSS_PX);
return new CSSPrimitiveValue(style->marginBottom());
case CSSPropertyMarginLeft:
if (renderer)
// FIXME: Supposed to return the percentage if percentage was specified.
return new CSSPrimitiveValue(renderer->marginLeft(), CSSPrimitiveValue::CSS_PX);
return new CSSPrimitiveValue(style->marginLeft());
case CSSPropertyWebkitMarqueeDirection:
return new CSSPrimitiveValue(style->marqueeDirection());
case CSSPropertyWebkitMarqueeIncrement:
return new CSSPrimitiveValue(style->marqueeIncrement());
case CSSPropertyWebkitMarqueeRepetition:
if (style->marqueeLoopCount() < 0)
return new CSSPrimitiveValue(CSSValueInfinite);
return new CSSPrimitiveValue(style->marqueeLoopCount(), CSSPrimitiveValue::CSS_NUMBER);
case CSSPropertyWebkitMarqueeStyle:
return new CSSPrimitiveValue(style->marqueeBehavior());
case CSSPropertyWebkitMaskImage:
if (style->maskImage())
return style->maskImage()->cssValue();
return new CSSPrimitiveValue(CSSValueNone);
case CSSPropertyWebkitMaskSize: {
RefPtr<CSSValueList> list = new CSSValueList(true);
list->append(new CSSPrimitiveValue(style->maskSize().width));
list->append(new CSSPrimitiveValue(style->maskSize().height));
return list.release();
}
case CSSPropertyWebkitMaskRepeat:
return new CSSPrimitiveValue(style->maskRepeat());
case CSSPropertyWebkitMaskAttachment:
if (style->maskAttachment())
return new CSSPrimitiveValue(CSSValueScroll);
return new CSSPrimitiveValue(CSSValueFixed);
case CSSPropertyWebkitMaskComposite:
return new CSSPrimitiveValue(style->maskComposite());
case CSSPropertyWebkitMaskClip:
case CSSPropertyWebkitMaskOrigin: {
EFillBox box = (propertyID == CSSPropertyWebkitMaskClip ? style->maskClip() : style->maskOrigin());
return new CSSPrimitiveValue(box);
}
case CSSPropertyWebkitMaskPosition: {
RefPtr<CSSValueList> list = new CSSValueList(true);
list->append(new CSSPrimitiveValue(style->maskXPosition()));
list->append(new CSSPrimitiveValue(style->maskYPosition()));
return list.release();
}
case CSSPropertyWebkitMaskPositionX:
return new CSSPrimitiveValue(style->maskXPosition());
case CSSPropertyWebkitMaskPositionY:
return new CSSPrimitiveValue(style->maskYPosition());
case CSSPropertyWebkitUserModify:
return new CSSPrimitiveValue(style->userModify());
case CSSPropertyMaxHeight: {
const Length& maxHeight = style->maxHeight();
if (maxHeight.isFixed() && maxHeight.value() == undefinedLength)
return new CSSPrimitiveValue(CSSValueNone);
return new CSSPrimitiveValue(maxHeight);
}
case CSSPropertyMaxWidth: {
const Length& maxWidth = style->maxHeight();
if (maxWidth.isFixed() && maxWidth.value() == undefinedLength)
return new CSSPrimitiveValue(CSSValueNone);
return new CSSPrimitiveValue(maxWidth);
}
case CSSPropertyMinHeight:
return new CSSPrimitiveValue(style->minHeight());
case CSSPropertyMinWidth:
return new CSSPrimitiveValue(style->minWidth());
case CSSPropertyOpacity:
return new CSSPrimitiveValue(style->opacity(), CSSPrimitiveValue::CSS_NUMBER);
case CSSPropertyOrphans:
return new CSSPrimitiveValue(style->orphans(), CSSPrimitiveValue::CSS_NUMBER);
case CSSPropertyOutlineColor:
return currentColorOrValidColor(style, style->outlineColor());
case CSSPropertyOutlineStyle:
if (style->outlineStyleIsAuto())
return new CSSPrimitiveValue(CSSValueAuto);
return new CSSPrimitiveValue(style->outlineStyle());
case CSSPropertyOutlineWidth:
return new CSSPrimitiveValue(style->outlineWidth(), CSSPrimitiveValue::CSS_PX);
case CSSPropertyOverflow:
return new CSSPrimitiveValue(max(style->overflowX(), style->overflowY()));
case CSSPropertyOverflowX:
return new CSSPrimitiveValue(style->overflowX());
case CSSPropertyOverflowY:
return new CSSPrimitiveValue(style->overflowY());
case CSSPropertyPaddingTop:
if (renderer)
return new CSSPrimitiveValue(renderer->paddingTop(), CSSPrimitiveValue::CSS_PX);
return new CSSPrimitiveValue(style->paddingTop());
case CSSPropertyPaddingRight:
if (renderer)
return new CSSPrimitiveValue(renderer->paddingRight(), CSSPrimitiveValue::CSS_PX);
return new CSSPrimitiveValue(style->paddingRight());
case CSSPropertyPaddingBottom:
if (renderer)
return new CSSPrimitiveValue(renderer->paddingBottom(), CSSPrimitiveValue::CSS_PX);
return new CSSPrimitiveValue(style->paddingBottom());
case CSSPropertyPaddingLeft:
if (renderer)
return new CSSPrimitiveValue(renderer->paddingLeft(), CSSPrimitiveValue::CSS_PX);
return new CSSPrimitiveValue(style->paddingLeft());
case CSSPropertyPageBreakAfter:
return new CSSPrimitiveValue(style->pageBreakAfter());
case CSSPropertyPageBreakBefore:
return new CSSPrimitiveValue(style->pageBreakBefore());
case CSSPropertyPageBreakInside: {
EPageBreak pageBreak = style->pageBreakInside();
ASSERT(pageBreak != PBALWAYS);
if (pageBreak == PBALWAYS)
return 0;
return new CSSPrimitiveValue(style->pageBreakInside());
}
case CSSPropertyPosition:
return new CSSPrimitiveValue(style->position());
case CSSPropertyRight:
return getPositionOffsetValue(style, CSSPropertyRight);
case CSSPropertyTableLayout:
return new CSSPrimitiveValue(style->tableLayout());
case CSSPropertyTextAlign:
return new CSSPrimitiveValue(style->textAlign());
case CSSPropertyTextDecoration: {
String string;
if (style->textDecoration() & UNDERLINE)
string += "underline";
if (style->textDecoration() & OVERLINE) {
if (string.length())
string += " ";
string += "overline";
}
if (style->textDecoration() & LINE_THROUGH) {
if (string.length())
string += " ";
string += "line-through";
}
if (style->textDecoration() & BLINK) {
if (string.length())
string += " ";
string += "blink";
}
if (!string.length())
return new CSSPrimitiveValue(CSSValueNone);
return new CSSPrimitiveValue(string, CSSPrimitiveValue::CSS_STRING);
}
case CSSPropertyWebkitTextDecorationsInEffect: {
String string;
if (style->textDecorationsInEffect() & UNDERLINE)
string += "underline";
if (style->textDecorationsInEffect() & OVERLINE) {
if (string.length())
string += " ";
string += "overline";
}
if (style->textDecorationsInEffect() & LINE_THROUGH) {
if (string.length())
string += " ";
string += "line-through";
}
if (style->textDecorationsInEffect() & BLINK) {
if (string.length())
string += " ";
string += "blink";
}
if (!string.length())
return new CSSPrimitiveValue(CSSValueNone);
return new CSSPrimitiveValue(string, CSSPrimitiveValue::CSS_STRING);
}
case CSSPropertyWebkitTextFillColor:
return currentColorOrValidColor(style, style->textFillColor());
case CSSPropertyTextIndent:
return new CSSPrimitiveValue(style->textIndent());
case CSSPropertyTextShadow:
return valueForShadow(style->textShadow());
case CSSPropertyWebkitTextSecurity:
return new CSSPrimitiveValue(style->textSecurity());
case CSSPropertyWebkitTextSizeAdjust:
if (style->textSizeAdjust())
return new CSSPrimitiveValue(CSSValueAuto);
return new CSSPrimitiveValue(CSSValueNone);
case CSSPropertyWebkitTextStrokeColor:
return currentColorOrValidColor(style, style->textStrokeColor());
case CSSPropertyWebkitTextStrokeWidth:
return new CSSPrimitiveValue(style->textStrokeWidth(), CSSPrimitiveValue::CSS_PX);
case CSSPropertyTextTransform:
return new CSSPrimitiveValue(style->textTransform());
case CSSPropertyTop:
return getPositionOffsetValue(style, CSSPropertyTop);
case CSSPropertyUnicodeBidi:
return new CSSPrimitiveValue(style->unicodeBidi());
case CSSPropertyVerticalAlign:
switch (style->verticalAlign()) {
case BASELINE:
return new CSSPrimitiveValue(CSSValueBaseline);
case MIDDLE:
return new CSSPrimitiveValue(CSSValueMiddle);
case SUB:
return new CSSPrimitiveValue(CSSValueSub);
case SUPER:
return new CSSPrimitiveValue(CSSValueSuper);
case TEXT_TOP:
return new CSSPrimitiveValue(CSSValueTextTop);
case TEXT_BOTTOM:
return new CSSPrimitiveValue(CSSValueTextBottom);
case TOP:
return new CSSPrimitiveValue(CSSValueTop);
case BOTTOM:
return new CSSPrimitiveValue(CSSValueBottom);
case BASELINE_MIDDLE:
return new CSSPrimitiveValue(CSSValueWebkitBaselineMiddle);
case LENGTH:
return new CSSPrimitiveValue(style->verticalAlignLength());
}
ASSERT_NOT_REACHED();
return 0;
case CSSPropertyVisibility:
return new CSSPrimitiveValue(style->visibility());
case CSSPropertyWhiteSpace:
return new CSSPrimitiveValue(style->whiteSpace());
case CSSPropertyWidows:
return new CSSPrimitiveValue(style->widows(), CSSPrimitiveValue::CSS_NUMBER);
case CSSPropertyWidth:
if (renderer)
return new CSSPrimitiveValue(sizingBox(renderer).width(), CSSPrimitiveValue::CSS_PX);
return new CSSPrimitiveValue(style->width());
case CSSPropertyWordBreak:
return new CSSPrimitiveValue(style->wordBreak());
case CSSPropertyWordSpacing:
return new CSSPrimitiveValue(style->wordSpacing(), CSSPrimitiveValue::CSS_PX);
case CSSPropertyWordWrap:
return new CSSPrimitiveValue(style->wordWrap());
case CSSPropertyWebkitLineBreak:
return new CSSPrimitiveValue(style->khtmlLineBreak());
case CSSPropertyWebkitNbspMode:
return new CSSPrimitiveValue(style->nbspMode());
case CSSPropertyWebkitMatchNearestMailBlockquoteColor:
return new CSSPrimitiveValue(style->matchNearestMailBlockquoteColor());
case CSSPropertyResize:
return new CSSPrimitiveValue(style->resize());
case CSSPropertyZIndex:
if (style->hasAutoZIndex())
return new CSSPrimitiveValue(CSSValueAuto);
return new CSSPrimitiveValue(style->zIndex(), CSSPrimitiveValue::CSS_NUMBER);
case CSSPropertyZoom:
return new CSSPrimitiveValue(style->zoom(), CSSPrimitiveValue::CSS_NUMBER);
case CSSPropertyWebkitBoxSizing:
if (style->boxSizing() == CONTENT_BOX)
return new CSSPrimitiveValue(CSSValueContentBox);
return new CSSPrimitiveValue(CSSValueBorderBox);
#if ENABLE(DASHBOARD_SUPPORT)
case CSSPropertyWebkitDashboardRegion:
{
const Vector<StyleDashboardRegion>& regions = style->dashboardRegions();
unsigned count = regions.size();
if (count == 1 && regions[0].type == StyleDashboardRegion::None)
return new CSSPrimitiveValue(CSSValueNone);
RefPtr<DashboardRegion> firstRegion;
DashboardRegion* previousRegion = 0;
for (unsigned i = 0; i < count; i++) {
RefPtr<DashboardRegion> region = DashboardRegion::create();
StyleDashboardRegion styleRegion = regions[i];
region->m_label = styleRegion.label;
LengthBox offset = styleRegion.offset;
region->setTop(new CSSPrimitiveValue(offset.top.value(), CSSPrimitiveValue::CSS_PX));
region->setRight(new CSSPrimitiveValue(offset.right.value(), CSSPrimitiveValue::CSS_PX));
region->setBottom(new CSSPrimitiveValue(offset.bottom.value(), CSSPrimitiveValue::CSS_PX));
region->setLeft(new CSSPrimitiveValue(offset.left.value(), CSSPrimitiveValue::CSS_PX));
region->m_isRectangle = (styleRegion.type == StyleDashboardRegion::Rectangle);
region->m_isCircle = (styleRegion.type == StyleDashboardRegion::Circle);
if (previousRegion)
previousRegion->m_next = region;
else
firstRegion = region;
previousRegion = region.get();
}
return new CSSPrimitiveValue(firstRegion.release());
}
#endif
case CSSPropertyWebkitAppearance:
return new CSSPrimitiveValue(style->appearance());
case CSSPropertyWebkitBorderImage:
return valueForNinePieceImage(style->borderImage());
case CSSPropertyWebkitMaskBoxImage:
return valueForNinePieceImage(style->maskBoxImage());
case CSSPropertyWebkitFontSizeDelta:
// Not a real style property -- used by the editing engine -- so has no computed value.
break;
case CSSPropertyWebkitMarginBottomCollapse:
return new CSSPrimitiveValue(style->marginBottomCollapse());
case CSSPropertyWebkitMarginTopCollapse:
return new CSSPrimitiveValue(style->marginTopCollapse());
case CSSPropertyWebkitRtlOrdering:
if (style->visuallyOrdered())
return new CSSPrimitiveValue(CSSValueVisual);
return new CSSPrimitiveValue(CSSValueLogical);
case CSSPropertyWebkitUserDrag:
return new CSSPrimitiveValue(style->userDrag());
case CSSPropertyWebkitUserSelect:
return new CSSPrimitiveValue(style->userSelect());
case CSSPropertyWebkitBorderBottomLeftRadius:
return getBorderRadiusCornerValue(style->borderBottomLeftRadius());
case CSSPropertyWebkitBorderBottomRightRadius:
return getBorderRadiusCornerValue(style->borderBottomRightRadius());
case CSSPropertyWebkitBorderTopLeftRadius:
return getBorderRadiusCornerValue(style->borderTopLeftRadius());
case CSSPropertyWebkitBorderTopRightRadius:
return getBorderRadiusCornerValue(style->borderTopRightRadius());
case CSSPropertyClip:
{
if (style->hasClip()) {
RefPtr<Rect> rect = Rect::create();
rect->setTop(new CSSPrimitiveValue(style->clip().top.value(), CSSPrimitiveValue::CSS_PX));
rect->setRight(new CSSPrimitiveValue(style->clip().right.value(), CSSPrimitiveValue::CSS_PX));
rect->setBottom(new CSSPrimitiveValue(style->clip().bottom.value(), CSSPrimitiveValue::CSS_PX));
rect->setLeft(new CSSPrimitiveValue(style->clip().left.value(), CSSPrimitiveValue::CSS_PX));
return new CSSPrimitiveValue(rect.release());
}
return 0;
}
case CSSPropertyBackground:
case CSSPropertyBorder:
case CSSPropertyBorderBottom:
case CSSPropertyBorderColor:
case CSSPropertyBorderLeft:
case CSSPropertyBorderRight:
case CSSPropertyBorderStyle:
case CSSPropertyBorderTop:
case CSSPropertyBorderWidth:
case CSSPropertyContent:
case CSSPropertyCounterIncrement:
case CSSPropertyCounterReset:
case CSSPropertyFont:
case CSSPropertyFontStretch:
case CSSPropertyListStyle:
case CSSPropertyMargin:
case CSSPropertyOutline:
case CSSPropertyOutlineOffset:
case CSSPropertyPadding:
case CSSPropertyPage:
case CSSPropertyQuotes:
case CSSPropertyScrollbar3dlightColor:
case CSSPropertyScrollbarArrowColor:
case CSSPropertyScrollbarDarkshadowColor:
case CSSPropertyScrollbarFaceColor:
case CSSPropertyScrollbarHighlightColor:
case CSSPropertyScrollbarShadowColor:
case CSSPropertyScrollbarTrackColor:
case CSSPropertySrc: // Only used in @font-face rules.
case CSSPropertySize:
case CSSPropertyTextLineThrough:
case CSSPropertyTextLineThroughColor:
case CSSPropertyTextLineThroughMode:
case CSSPropertyTextLineThroughStyle:
case CSSPropertyTextLineThroughWidth:
case CSSPropertyTextOverflow:
case CSSPropertyTextOverline:
case CSSPropertyTextOverlineColor:
case CSSPropertyTextOverlineMode:
case CSSPropertyTextOverlineStyle:
case CSSPropertyTextOverlineWidth:
case CSSPropertyTextUnderline:
case CSSPropertyTextUnderlineColor:
case CSSPropertyTextUnderlineMode:
case CSSPropertyTextUnderlineStyle:
case CSSPropertyTextUnderlineWidth:
case CSSPropertyUnicodeRange: // Only used in @font-face rules.
case CSSPropertyWebkitBorderRadius:
case CSSPropertyWebkitColumns:
case CSSPropertyWebkitColumnRule:
case CSSPropertyWebkitMarginCollapse:
case CSSPropertyWebkitMarginStart:
case CSSPropertyWebkitMarquee:
case CSSPropertyWebkitMarqueeSpeed:
case CSSPropertyWebkitMask:
case CSSPropertyWebkitPaddingStart:
case CSSPropertyWebkitTextStroke:
case CSSPropertyWebkitTransform:
case CSSPropertyWebkitTransformOrigin:
case CSSPropertyWebkitTransformOriginX:
case CSSPropertyWebkitTransformOriginY:
case CSSPropertyWebkitTransition:
case CSSPropertyWebkitTransitionDuration:
case CSSPropertyWebkitTransitionProperty:
case CSSPropertyWebkitTransitionRepeatCount:
case CSSPropertyWebkitTransitionTimingFunction:
// FIXME: The above are unimplemented.
break;
#if ENABLE(SVG)
// FIXME: This default case ruins the point of using an enum for
// properties -- it prevents us from getting a warning when we
// forget to list a property above.
default:
return getSVGPropertyCSSValue(propertyID, DoNotUpdateLayout);
#endif
}
LOG_ERROR("unimplemented propertyID: %d", propertyID);
return 0;
}
String CSSComputedStyleDeclaration::getPropertyValue(int propertyID) const
{
RefPtr<CSSValue> value = getPropertyCSSValue(propertyID);
if (value)
return value->cssText();
return "";
}
bool CSSComputedStyleDeclaration::getPropertyPriority(int /*propertyID*/) const
{
// All computed styles have a priority of false (not "important").
return false;
}
String CSSComputedStyleDeclaration::removeProperty(int /*propertyID*/, ExceptionCode& ec)
{
ec = NO_MODIFICATION_ALLOWED_ERR;
return String();
}
void CSSComputedStyleDeclaration::setProperty(int /*propertyID*/, const String& /*value*/, bool /*important*/, ExceptionCode& ec)
{
ec = NO_MODIFICATION_ALLOWED_ERR;
}
unsigned CSSComputedStyleDeclaration::length() const
{
Node* node = m_node.get();
if (!node)
return 0;
RenderStyle* style = node->computedStyle();
if (!style)
return 0;
return numComputedProperties;
}
String CSSComputedStyleDeclaration::item(unsigned i) const
{
if (i >= length())
return String();
return getPropertyName(static_cast<CSSPropertyID>(computedProperties[i]));
}
// This is the list of properties we want to copy in the copyInheritableProperties() function.
// It is the intersection of the list of inherited CSS properties and the
// properties for which we have a computed implementation in this file.
const int inheritableProperties[] = {
CSSPropertyBorderCollapse,
CSSPropertyColor,
CSSPropertyFontFamily,
CSSPropertyFontSize,
CSSPropertyFontStyle,
CSSPropertyFontVariant,
CSSPropertyFontWeight,
CSSPropertyLetterSpacing,
CSSPropertyLineHeight,
CSSPropertyOrphans,
CSSPropertyTextAlign,
CSSPropertyTextIndent,
CSSPropertyTextTransform,
CSSPropertyWhiteSpace,
CSSPropertyWidows,
CSSPropertyWordSpacing,
CSSPropertyWebkitBorderHorizontalSpacing,
CSSPropertyWebkitBorderVerticalSpacing,
CSSPropertyWebkitTextDecorationsInEffect,
CSSPropertyWebkitTextFillColor,
CSSPropertyWebkitTextSizeAdjust,
CSSPropertyWebkitTextStrokeColor,
CSSPropertyWebkitTextStrokeWidth,
};
const unsigned numInheritableProperties = sizeof(inheritableProperties) / sizeof(inheritableProperties[0]);
void CSSComputedStyleDeclaration::removeComputedInheritablePropertiesFrom(CSSMutableStyleDeclaration* declaration)
{
declaration->removePropertiesInSet(inheritableProperties, numInheritableProperties);
}
PassRefPtr<CSSMutableStyleDeclaration> CSSComputedStyleDeclaration::copyInheritableProperties() const
{
RefPtr<CSSMutableStyleDeclaration> style = copyPropertiesInSet(inheritableProperties, numInheritableProperties);
if (style && m_node && m_node->computedStyle()) {
// If a node's text fill color is invalid, then its children use
// their font-color as their text fill color (they don't
// inherit it). Likewise for stroke color.
ExceptionCode ec = 0;
if (!m_node->computedStyle()->textFillColor().isValid())
style->removeProperty(CSSPropertyWebkitTextFillColor, ec);
if (!m_node->computedStyle()->textStrokeColor().isValid())
style->removeProperty(CSSPropertyWebkitTextStrokeColor, ec);
ASSERT(ec == 0);
}
return style.release();
}
PassRefPtr<CSSMutableStyleDeclaration> CSSComputedStyleDeclaration::copy() const
{
return copyPropertiesInSet(computedProperties, numComputedProperties);
}
PassRefPtr<CSSMutableStyleDeclaration> CSSComputedStyleDeclaration::makeMutable()
{
return copy();
}
PassRefPtr<CSSComputedStyleDeclaration> computedStyle(Node* node)
{
return new CSSComputedStyleDeclaration(node);
}
} // namespace WebCore
|