1<?php
2/**
3 * EditOnLink plugin
4 * Test file
5 * @author Constant Illumination (Chang Zhao) <alex@obschy.ru>
6 * Date: 13.11.2018
7 */
8?>
9<html lang="en">
10<head>
11    <title>EditOnLink Test</title>
12    <link rel="stylesheet" type="text/css" href="style.css">
13    <script src="script.js"></script>
14</head>
15<body style="padding-left:6em;<?php if($_GET['do']=='edit')
16    echo 'color:#369; background:#FFFFCC;'; ?>" class="dokuwiki">
17<?php echo '$_GET = '.htmlspecialchars(var_export($_GET, true), ENT_QUOTES); ?>
18<p id="top">Hover this link; see an animated<br>
19decoration and a popover button.</p>
20<div><a href="test.php" class="wikilink1">LINK TO TEST.PHP</a></div>
21<p>Clicking that button must turn URL<br>
22"test.php" into "test.php?do=edit".</p>
23<p> <a href="test.php#top" class="breadcrumbs" style="font-size: x-small">breadcrumbs</a> *
24    <a href="test.php?do=oops" class="breadcrumbs" style="font-size: small">breadcrumbs</a> *
25    <a href="test.php?do=oops#top" class="wikilink2" style="font-size: large; color: red;">wikilink2</a></p>
26</body>
27</html>
28