| Index: chrome/common/extensions/docs/examples/extensions/news/feed.html
|
| ===================================================================
|
| --- chrome/common/extensions/docs/examples/extensions/news/feed.html (revision 33262)
|
| +++ chrome/common/extensions/docs/examples/extensions/news/feed.html (working copy)
|
| @@ -1,4 +1,4 @@
|
| -<!doctype html>
|
| +<!DOCTYPE html>
|
| <html>
|
| <head>
|
| <style>
|
| @@ -15,16 +15,16 @@
|
| }
|
|
|
| .open_box {
|
| - display:block;
|
| - overflow:hidden;
|
| - margin-right:4px;
|
| - margin-top:2px;
|
| - height:12px;
|
| - width:12px;
|
| + display: block;
|
| + overflow: hidden;
|
| + margin-right: 4px;
|
| + margin-top: 2px;
|
| + height: 12px;
|
| + width: 12px;
|
| float: left;
|
| clear: left;
|
| - background-image:url(sprite_arrows.gif);
|
| - background-position:0px -24px;
|
| + background-image: url(sprite_arrows.gif);
|
| + background-position: 0px -24px;
|
| cursor: pointer;
|
| }
|
|
|
| @@ -68,7 +68,7 @@
|
| text-align: right;
|
| padding-top: 20px;
|
| padding-right: 10px;
|
| - color: #8888CC;
|
| + color: #88C;
|
| }
|
|
|
| </style>
|
| @@ -86,6 +86,7 @@
|
| links[i].addEventListener("click", showStory);
|
| }
|
| }
|
| + window.addEventListener("message", messageHandler);
|
| }
|
|
|
| function showStory(event) {
|
| @@ -98,7 +99,6 @@
|
| reportHeight();
|
| }
|
|
|
| -window.addEventListener("message", messageHandler);
|
| </script>
|
| <script>
|
| // Feed URL.
|
|
|