Chromium Code Reviews| Index: LayoutTests/fast/css/cssom-modify-font-face-rule.html |
| diff --git a/LayoutTests/fast/css/font-face-remove.html b/LayoutTests/fast/css/cssom-modify-font-face-rule.html |
| similarity index 66% |
| copy from LayoutTests/fast/css/font-face-remove.html |
| copy to LayoutTests/fast/css/cssom-modify-font-face-rule.html |
| index 9f76e80bd388232a5943b4d7438506caa2592124..2fe9150ce7d4979f9645cc746a19ba6ff642b79a 100644 |
| --- a/LayoutTests/fast/css/font-face-remove.html |
| +++ b/LayoutTests/fast/css/cssom-modify-font-face-rule.html |
| @@ -3,9 +3,10 @@ |
| <head> |
| <script> |
| function runTest() { |
| - var target = document.getElementById('target'); |
| document.body.offsetLeft; |
| - target.parentNode.removeChild(target); |
| + console.log(document.styleSheets[0].cssRules[0].style.fontFamily); |
|
ojan
2014/01/03 01:20:44
Are these console.logs accidentally included in th
tasak
2014/01/07 08:42:12
Sorry. I used the console.logs for debugging. Remo
|
| + document.styleSheets[0].cssRules[0].style.fontFamily = "f2"; |
| + console.log(document.styleSheets[0].cssRules[0].style.fontFamily); |
| } |
| </script> |
| </head> |