| Index: chrome/test/data/extensions/test/Resizer/resizer.html
|
| diff --git a/chrome/test/data/extensions/test/Resizer/resizer.html b/chrome/test/data/extensions/test/Resizer/resizer.html
|
| deleted file mode 100644
|
| index 0542474cc39629a07e3583999aa94c0e547c473f..0000000000000000000000000000000000000000
|
| --- a/chrome/test/data/extensions/test/Resizer/resizer.html
|
| +++ /dev/null
|
| @@ -1,33 +0,0 @@
|
| -<html>
|
| - <head>
|
| - <style>
|
| -.big {
|
| - width: 500px;
|
| - background-color: red;
|
| - -webkit-transition: all .5s ease-out;
|
| -}
|
| -
|
| -.small {
|
| - width: 50px;
|
| - background-color: blue;
|
| - -webkit-transition: all .5s ease-out;
|
| -}
|
| - </style>
|
| - <script>
|
| -function toggle() {
|
| - var resizer = document.getElementById('resizer');
|
| - if (resizer.className == 'big') {
|
| - resizer.className = 'small';
|
| - resizer.innerHTML = '(small)';
|
| - } else {
|
| - resizer.className = 'big';
|
| - resizer.innerHTML = 'BIG!';
|
| - }
|
| -}
|
| -</script>
|
| - </head>
|
| - <body
|
| - <div onclick="toggle();" id="resizer" class="big"> BIG! </div>
|
| - </body>
|
| -</html>
|
| -
|
|
|