aboutsummaryrefslogtreecommitdiff
path: root/RotaryPlayground/res/raw/web_view_html.xml
diff options
context:
space:
mode:
Diffstat (limited to 'RotaryPlayground/res/raw/web_view_html.xml')
-rw-r--r--RotaryPlayground/res/raw/web_view_html.xml130
1 files changed, 130 insertions, 0 deletions
diff --git a/RotaryPlayground/res/raw/web_view_html.xml b/RotaryPlayground/res/raw/web_view_html.xml
new file mode 100644
index 0000000..d6e128a
--- /dev/null
+++ b/RotaryPlayground/res/raw/web_view_html.xml
@@ -0,0 +1,130 @@
+<!--
+ ~ Copyright (C) 2020 The Android Open Source Project
+ ~
+ ~ Licensed under the Apache License, Version 2.0 (the "License");
+ ~ you may not use this file except in compliance with the License.
+ ~ You may obtain a copy of the License at
+ ~
+ ~ http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing, software
+ ~ distributed under the License is distributed on an "AS IS" BASIS,
+ ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ ~ See the License for the specific language governing permissions and
+ ~ limitations under the License.
+ -->
+
+<html>
+ <head>
+ <title>Sample Web Page</title>
+ </head>
+
+ <body>
+
+ <h1>1. Lists</h1>
+ <ol>
+ <li><b>First</b></li>
+ <li><i>Second</i></li>
+ <li>Third</li>
+ <li>Fourth</li>
+ <li>Fifth</li>
+ </ol>
+ <ul>
+ <li><b>1st</b></li>
+ <li><i>2nd</i></li>
+ <li>3rd</li>
+ <li>4th</li>
+ <li>5th</li>
+ </ul>
+
+ <h1>2. Text</h1>
+ <p>Paragraph</p>
+ <p>Another paragraph</p>
+
+ <h1>3. Links</h1>
+ <a href="https://en.wikipedia.org/wiki/Breakout_(video_game)">Breakout</a>
+ <br/>
+ <a href="https://en.wikipedia.org/wiki/Pong">Pong</a>
+ <br/>
+ <a href="https://en.wikipedia.org/wiki/Space_Invaders">Space Invaders</a>
+ <br/>
+ <a href="https://en.wikipedia.org/wiki/Lunar_Lander_(1979_video_game)">Lunar Lander</a>
+ <a href="https://en.wikipedia.org/wiki/Asteroids_(video_game)">Asteroids</a>
+ <br/>
+ <a href="https://en.wikipedia.org/wiki/Battlezone_(1980_video_game)">Battlezone</a>
+ <a href="https://en.wikipedia.org/wiki/Centipede_(video_game)">Centipede</a>
+ <a href="https://en.wikipedia.org/wiki/Missile_Command">Missile Command</a>
+
+ <h1>4. Lists</h1>
+ <ol>
+ <li><b>Sixth</b></li>
+ <li><i>Seventh</i></li>
+ <li>Eighth</li>
+ <li>Ninth</li>
+ <li>Tenth</li>
+ </ol>
+ <ul>
+ <li><b>6th</b></li>
+ <li><i>7th</i></li>
+ <li>8th</li>
+ <li>9th</li>
+ <li>10th</li>
+ </ul>
+
+ <h1>5. More Lists</h1>
+ <ol>
+ <li><b>Eleventh</b></li>
+ <li><i>Twelfth</i></li>
+ <li>Thirteenth</li>
+ <li>Fourteenth</li>
+ <li>Fifteenth</li>
+ </ol>
+ <ul>
+ <li><b>11th</b></li>
+ <li><i>12th</i></li>
+ <li>13th</li>
+ <li>14th</li>
+ <li>15th</li>
+ </ul>
+
+ <h1>6. More Links</h1>
+ <a href="https://en.wikipedia.org/wiki/Defender_(1981_video_game)">Defender</a>
+ <a href="https://en.wikipedia.org/wiki/Donkey_Kong_(video_game)">Donkey Kong</a>
+ <a href="https://en.wikipedia.org/wiki/Tempest_(video_game)">Tempest</a>
+ <a href="https://en.wikipedia.org/wiki/Frogger">Frogger</a>
+ <a href="https://en.wikipedia.org/wiki/Qix">Qix</a>
+
+ <h1>7. Lists</h1>
+ <ol>
+ <li><b>Sixteenth</b></li>
+ <li><i>Seventeenth</i></li>
+ <li>Eighteenth</li>
+ <li>Nineteenth</li>
+ <li>Twentieth</li>
+ </ol>
+ <ul>
+ <li><b>16th</b></li>
+ <li><i>17th</i></li>
+ <li>18th</li>
+ <li>19th</li>
+ <li>20th</li>
+ </ul>
+
+ <h1>8. More Lists</h1>
+ <ol>
+ <li><b>Twenty-first</b></li>
+ <li><i>Twenty-second</i></li>
+ <li>Twenty-third</li>
+ <li>Twenty-fourth</li>
+ <li>Twenty-fifth</li>
+ </ol>
+ <ul>
+ <li><b>21st</b></li>
+ <li><i>22nd</i></li>
+ <li>23rd</li>
+ <li>24th</li>
+ <li>25th</li>
+ </ul>
+
+ </body>
+</html>