Changeset 285604 in webkit for trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp
- Timestamp:
- Nov 10, 2021, 12:10:04 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp
r285383 r285604 1528 1528 String CSSComputedStyleDeclaration::cssText() const 1529 1529 { 1530 StringBuilder result; 1531 for (unsigned i = 0; i < numComputedPropertyIDs; i++) { 1532 if (i) 1533 result.append(' '); 1534 result.append(getPropertyName(computedPropertyIDs[i]), ": ", getPropertyValue(computedPropertyIDs[i]), ';'); 1535 } 1536 return result.toString(); 1530 return emptyString(); 1537 1531 } 1538 1532
Note:
See TracChangeset
for help on using the changeset viewer.