Title: [181432] branches/safari-600.5-branch/Source/WebCore
Revision
181432
Author
[email protected]
Date
2015-03-11 23:18:02 -0700 (Wed, 11 Mar 2015)

Log Message

Merged patch for rdar://problem/20128856.

Modified Paths


Diff

Modified: branches/safari-600.5-branch/Source/WebCore/ChangeLog (181431 => 181432)


--- branches/safari-600.5-branch/Source/WebCore/ChangeLog	2015-03-12 06:05:34 UTC (rev 181431)
+++ branches/safari-600.5-branch/Source/WebCore/ChangeLog	2015-03-12 06:18:02 UTC (rev 181432)
@@ -1,3 +1,7 @@
+2015-03-11  Babak Shafiei  <[email protected]>
+
+        Merge patch for rdar://problem/20128856.
+
 2015-03-10  Babak Shafiei  <[email protected]>
 
         Merge r181351.

Modified: branches/safari-600.5-branch/Source/WebCore/accessibility/AccessibilityRenderObject.cpp (181431 => 181432)


--- branches/safari-600.5-branch/Source/WebCore/accessibility/AccessibilityRenderObject.cpp	2015-03-12 06:05:34 UTC (rev 181431)
+++ branches/safari-600.5-branch/Source/WebCore/accessibility/AccessibilityRenderObject.cpp	2015-03-12 06:18:02 UTC (rev 181432)
@@ -255,7 +255,7 @@
 
 static inline RenderInline* startOfContinuations(RenderObject* r)
 {
-    if (r->isInlineElementContinuation() && r->node()->renderer()->isRenderInline())
+    if (r->isInlineElementContinuation() && r->node() && r->node()->renderer() && r->node()->renderer()->isRenderInline())
         return toRenderInline(r->node()->renderer());
 
     // Blocks with a previous continuation always have a next continuation
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to