Chromium Code Reviews| Index: chrome/test/data/page_cycler/basic_css.html |
| diff --git a/chrome/test/data/page_cycler/basic_css.html b/chrome/test/data/page_cycler/basic_css.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..d4a3415594e29e631b143e7527167c9c2f5a7daa |
| --- /dev/null |
| +++ b/chrome/test/data/page_cycler/basic_css.html |
| @@ -0,0 +1,17 @@ |
| +<html> |
| +<head> |
| +<style> |
| +h1 {font-size:40px;} |
| +p {font-size:14px; |
| + font-style:italic; |
| + font-family:Arial,Helvetica,sans-serif;} |
| +</style> |
| +</head> |
| +<body> |
| + |
| +<h1>H1</h1> |
| +<p>Paragraph text goes here.</p> |
| + |
| +</body> |
| +</html> |
| + |