(-[WebView computedStyleForElement:pseudoElement:]):
Teeny style tweak to test svn access
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@27454
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2007-11-05 John Sullivan <sullivan@apple.com>
+
+ * WebView/WebView.mm:
+ (-[WebView computedStyleForElement:pseudoElement:]):
+
+ Teeny style tweak to test svn access
+
2007-11-02 Tristan O'Tierney <tristan@apple.com>
Reviewed by Darin Adler.
- (DOMCSSStyleDeclaration *)computedStyleForElement:(DOMElement *)element pseudoElement:(NSString *)pseudoElement
{
// FIXME: is this the best level for this conversion?
- if (pseudoElement == nil) {
+ if (pseudoElement == nil)
pseudoElement = @"";
- }
+
return [[element ownerDocument] getComputedStyle:element pseudoElement:pseudoElement];
}