| Index: third_party/WebKit/LayoutTests/fast/dom/shadow/style-with-deep-combinator.html
 | 
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/shadow/style-with-deep-combinator.html b/third_party/WebKit/LayoutTests/fast/dom/shadow/style-with-deep-combinator.html
 | 
| index eb41ef143d75e130456396ec2ded292d828782c7..106f661439cf538367c17e4bc38e52446f3d35ac 100644
 | 
| --- a/third_party/WebKit/LayoutTests/fast/dom/shadow/style-with-deep-combinator.html
 | 
| +++ b/third_party/WebKit/LayoutTests/fast/dom/shadow/style-with-deep-combinator.html
 | 
| @@ -17,13 +17,13 @@ function borderColorOf(node)
 | 
|  
 | 
|  function borderColorShouldBe(selector, color)
 | 
|  {
 | 
| -    var text = 'borderColorOf(getNodeInTreeOfTrees("' + selector + '"))';
 | 
| +    var text = 'borderColorOf(getNodeInComposedTree("' + selector + '"))';
 | 
|      shouldBeEqualToString(text, color);
 | 
|  }
 | 
|  
 | 
|  function borderColorShouldNotBe(selector, color)
 | 
|  {
 | 
| -    var text = 'borderColorOf(getNodeInTreeOfTrees("' + selector + '"))';
 | 
| +    var text = 'borderColorOf(getNodeInComposedTree("' + selector + '"))';
 | 
|      var unevaledString = '"' + color.replace(/\\/g, "\\\\").replace(/"/g, "\"") + '"';
 | 
|      shouldNotBe(text, unevaledString);
 | 
|  }
 | 
| 
 |