Home | History | Annotate | Download | only in Scripts

Lines Matching refs:html

37 # If no tests are passed, find all the .html, .shtml, .xml, .xhtml, .pl, .php (and svg) files in the test directory.
399 my $testResults = File::Spec->catfile($testResultsDirectory, "results.html");
419 my %ignoredFiles = ( "results.html" => 1 );
422 my %supportedFileExtensions = map { $_ => 1 } qw(html shtml xml xhtml pl php);
657 my $errorMessagePath = "$testDirectory/websocket/resources/server-failed-to-start.html";
884 open DIFFHTML, ">$testResultsDirectory/$base-$diffsTag.html" or die;
885 print DIFFHTML "<html>\n";
925 print DIFFHTML "</html>\n";
1017 open HTML, ">", $testResults or die "Failed to open $testResults. $!";
1018 print HTML "<html>\n";
1019 print HTML "<head>\n";
1020 print HTML "<title>Layout Test Results</title>\n";
1021 print HTML "</head>\n";
1022 print HTML "<body>\n";
1025 print HTML "<h4>Tested with metrics ignored.</h4>";
1028 print HTML htmlForResultsSection(@{$tests{mismatch}}, "Tests where results did not match expected results", \&linksForMismatchTest);
1029 print HTML htmlForResultsSection(@{$tests{timedout}}, "Tests that timed out", \&linksForErrorTest);
1030 print HTML htmlForResultsSection(@{$tests{crash}}, "Tests that caused the DumpRenderTree tool to crash", \&linksForErrorTest);
1031 print HTML htmlForResultsSection(@{$tests{error}}, "Tests that had stderr output", \&linksForErrorTest);
1032 print HTML htmlForResultsSection(@{$tests{new}}, "Tests that had no expected results (probably new)", \&linksForNewTest);
1034 print HTML "</body>\n";
1035 print HTML "</html>\n";
1036 close HTML;
1681 my @html = ();
1682 return join("\n", @html) unless @{$tests};
1684 push @html, "<p>$description:</p>";
1685 push @html, "<table>";
1687 push @html, "<tr>";
1688 push @html, "<td><a href=\"" . toURL("$testDirectory/$test") . "\">$test</a></td>";
1690 push @html, "<td><a href=\"$link->{href}\">$link->{text}</a></td>";
1692 push @html, "</tr>";
1694 push @html, "</table>";
1696 return join("\n", @html);
1713 push @links, { href => "$base-$prettyDiffTag.html", text => "pretty diff" };
1730 push @links, { href => "$base-$diffsTag.html", text => "image diffs" };
1803 my $prettyDiffOutputPath = "$diffOuputBasePath-$prettyDiffTag.html";
1863 my $epilogue = $leaving . "/resources/run-webkit-tests-epilogue.html";
1874 my $prologue = $entering . "/resources/run-webkit-tests-prologue.html";
2088 # "--skipped=only dir1" with "dir1/file1.html" on the skipped list.