Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / jquery / resources / test / data / name.php
blob64028585db19acb1d7ae2344d4cb3495c6a635e7
1 <?php
2 error_reporting(0);
3 $wait = $_REQUEST['wait'];
4 if($wait) {
5 sleep($wait);
7 $xml = $_REQUEST['xml'];
8 if($xml) {
9 header("Content-type: text/xml");
10 $result = ($xml == "5-2") ? "3" : "?";
11 echo "<math><calculation>$xml</calculation><result>$result</result></math>";
12 die();
14 $name = $_REQUEST['name'];
15 if($name == 'foo') {
16 echo "bar";
17 die();
18 } else if($name == 'peter') {
19 echo "pan";
20 die();
23 echo 'ERROR <script type="text/javascript">ok( true, "name.php executed" );</script>';