| Index: LayoutTests/fast/dom/shadow/cascade-of-treeboundary-crossing-rules.html
|
| diff --git a/LayoutTests/fast/dom/shadow/cascade-of-treeboundary-crossing-rules.html b/LayoutTests/fast/dom/shadow/cascade-of-treeboundary-crossing-rules.html
|
| index 5d7fadd610e18e40294cc022920ae29917b41cac..274199db623ba2cf79e23879847884a1e6460ddd 100644
|
| --- a/LayoutTests/fast/dom/shadow/cascade-of-treeboundary-crossing-rules.html
|
| +++ b/LayoutTests/fast/dom/shadow/cascade-of-treeboundary-crossing-rules.html
|
| @@ -36,18 +36,18 @@ function cleanUp()
|
|
|
| description('Test for casacde of treeboundary crossing rules.');
|
|
|
| -// Rules declared in inner treescope should win.
|
| +// Rules declared in outer treescope should win.
|
| sandbox.appendChild(
|
| createDOM('div', {'id': 'host'},
|
| createDOM('style', {},
|
| - document.createTextNode('p:empty { border: 1px solid blue; }')),
|
| + document.createTextNode('p:empty { border: 1px solid green; }')),
|
| createShadowRoot(
|
| createDOM('style', {},
|
| document.createTextNode('::content > p { border: 1px solid red; }')),
|
| createDOM('div', {},
|
| createShadowRoot(
|
| createDOM('style', {},
|
| - document.createTextNode('::content > p { border: 1px solid green; }')),
|
| + document.createTextNode('::content > p { border: 1px solid blue; }')),
|
| createDOM('content', {})),
|
| createDOM('content', {}))),
|
| createDOM('p', {'id': 'target'})));
|
|
|