Merge "Type hint against LinkTarget in WatchedItemStore"
[lhc/web/wiklou.git] / tests / qunit / data / styleTest.css.php
1 <?php
2 /**
3 * Dynamically create a simple stylesheet for unit tests in MediaWiki.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 */
22
23 // This file doesn't run as part of MediaWiki
24 // phpcs:disable MediaWiki.Usage.SuperGlobalsUsage.SuperGlobals
25
26 header( 'Content-Type: text/css; charset=utf-8' );
27
28 /**
29 * Allows characters in ranges [a-z], [A-Z] and [0-9],
30 * in addition to a dot ("."), dash ("-"), space (" ") and hash ("#").
31 * @since 1.20
32 *
33 * @param string $val
34 * @return string Value with any illegal characters removed.
35 */
36 function cssfilter( $val ) {
37 return preg_replace( '/[^A-Za-z0-9\.\- #]/', '', $val );
38 }
39
40 // Do basic sanitization
41 $params = array_map( 'cssfilter', $_GET );
42
43 // Defaults
44 $selector = $params['selector'] ?? '.mw-test-example';
45 $property = $params['prop'] ?? 'float';
46 $value = $params['val'] ?? 'right';
47 $wait = isset( $params['wait'] ) ? (int)$params['wait'] : 0; // seconds
48
49 sleep( $wait );
50
51 $css = "
52 /**
53 * Generated " . gmdate( 'r' ) . ".
54 * Waited {$wait}s.
55 */
56
57 $selector {
58 $property: $value;
59 }
60 ";
61
62 echo trim( $css ) . "\n";