Index: Source/core/dom/NodeRenderStyle.h |
diff --git a/Source/core/dom/NodeRenderStyle.h b/Source/core/dom/NodeRenderStyle.h |
index 96b9fab2c72f3cd9b23e8285ecfcbd085344fb01..3c1875000a9776c0a9f1ba7411847de7b8f6c089 100644 |
--- a/Source/core/dom/NodeRenderStyle.h |
+++ b/Source/core/dom/NodeRenderStyle.h |
@@ -37,7 +37,7 @@ inline RenderStyle* Node::renderStyle() const |
{ |
if (RenderObject* renderer = this->renderer()) |
return renderer->style(); |
- // <option> and <optgroup> can be styled even though they never get renderers, |
+ // <option> and <optgroup> can be styled even if they don't get renderers, |
// so they store their style internally and return it through nonRendererStyle(). |
// We check here explicitly to avoid the virtual call in the common case. |
if (isHTMLOptGroupElement(*this) || isHTMLOptionElement(this)) |