diff options
Diffstat (limited to 'WebKitTools')
-rw-r--r-- | WebKitTools/DumpRenderTree/android/view_source.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebKitTools/DumpRenderTree/android/view_source.php b/WebKitTools/DumpRenderTree/android/view_source.php index dfe6d12..fc9ae31 100644 --- a/WebKitTools/DumpRenderTree/android/view_source.php +++ b/WebKitTools/DumpRenderTree/android/view_source.php @@ -40,12 +40,12 @@ return; } - #If we don't want realpath to append any prefixes we need to pass it an absolute path + # If we don't want realpath to append any prefixes we need to pass it an absolute path $src = realpath(getAbsolutePath($_GET['src'])); echo "<html><body>"; # TODO: Add link following and syntax highlighting for html and js. - echo highlight_string(file_get_contents($src)); + highlight_string(file_get_contents($src)); echo "</body></html>"; } |