Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(199)

Side by Side Diff: lib/src/prism/tests/languages/php!+php-extras/global_feature.test

Issue 1418513006: update elements and fix some bugs (Closed) Base URL: git@github.com:dart-lang/polymer_elements.git@master
Patch Set: code review updates Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 $GLOBALS
2 $_SERVER
3 $_GET
4 $_POST
5 $_FILES
6 $_REQUEST
7 $_SESSION
8 $_ENV
9 $_COOKIE
10 $php_errormsg
11 $HTTP_RAW_POST_DATA
12 $http_response_header
13 $argc
14 $argv
15
16 ----------------------------------------------------
17
18 [
19 ["global", "$GLOBALS"],
20 ["global", "$_SERVER"],
21 ["global", "$_GET"],
22 ["global", "$_POST"],
23 ["global", "$_FILES"],
24 ["global", "$_REQUEST"],
25 ["global", "$_SESSION"],
26 ["global", "$_ENV"],
27 ["global", "$_COOKIE"],
28 ["global", "$php_errormsg"],
29 ["global", "$HTTP_RAW_POST_DATA"],
30 ["global", "$http_response_header"],
31 ["global", "$argc"],
32 ["global", "$argv"]
33 ]
34
35 ----------------------------------------------------
36
37 Checks for superglobals.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698