summaryrefslogtreecommitdiffstats
path: root/3rdparty/htmlpurifier/tests/HTMLPurifier/AttrDef/CSS/PercentageTest.php
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/htmlpurifier/tests/HTMLPurifier/AttrDef/CSS/PercentageTest.php')
-rw-r--r--3rdparty/htmlpurifier/tests/HTMLPurifier/AttrDef/CSS/PercentageTest.php24
1 files changed, 0 insertions, 24 deletions
diff --git a/3rdparty/htmlpurifier/tests/HTMLPurifier/AttrDef/CSS/PercentageTest.php b/3rdparty/htmlpurifier/tests/HTMLPurifier/AttrDef/CSS/PercentageTest.php
deleted file mode 100644
index 4919173df..000000000
--- a/3rdparty/htmlpurifier/tests/HTMLPurifier/AttrDef/CSS/PercentageTest.php
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php
-
-class HTMLPurifier_AttrDef_CSS_PercentageTest extends HTMLPurifier_AttrDefHarness
-{
-
- function test() {
-
- $this->def = new HTMLPurifier_AttrDef_CSS_Percentage();
-
- $this->assertDef('10%');
- $this->assertDef('1.607%');
- $this->assertDef('-567%');
-
- $this->assertDef(' 100% ', '100%');
-
- $this->assertDef('5', false);
- $this->assertDef('asdf', false);
- $this->assertDef('%', false);
-
- }
-
-}
-
-// vim: et sw=4 sts=4