編集テスト用ページ

このページは編集テスト用のサンドボックスページです。編集テストにご自由にお使いください。

// lang 属性が消える件直ってるよ o(°▽°*o)(o*°▽°)o~♪
var geolocation=Components.classes["@mozilla.org/geolocation;1"]
                            .getService(Components.interfaces.nsIDOMGeoGeolocation);
geolocation.getCurrentPosition(function(position){
    Application.console.log(position.coords.latitude+','+position.coords.longitude);
});
var test;
foo = "Syntax Highlight Test";
 // indent
    // more indent
// entity & <tag> test ;
var test;
foo = "WP-Syntax Test";
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
 <title>SyntaxHighlighter Demo Page - <?= htmlspecialchars($title) ?></title>
</head>

<body>

<?
/***********************************
 ** Multiline block comments
 **********************************/

$stringWithUrl = "http://alexgorbatchev.com";
$stringWithOutUrl = 'hello world';

ob_start("parseOutputBuffer");      // Start Code Buffering
session_start();

function parseOutputBuffer($buf) {
 global $portal_small_code, $portal_gzcompress;
 global $PHP_SELF, $HTTP_ACCEPT_ENCODING;

 // cleaning out the code.
 if($portal_small_code && !$portal_gzcompress) {
 $buf = str_replace("    ", "", $buf);
 $buf = str_replace("\n", "", $buf);
 $buf = str_replace(chr(13), "", $buf);
 }
}

?>

<!-- Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. -->

</body>
</html>

3 件のコメント

  1. dynamis :

    ソースをコメントするテスト:

    // 書き換え前のコード
    globalStorage[location.host].keyname = 1;
    globalStorage[location.host].setItem("keyname", 2);
    globalStorage[location.host].keyname == 2; // true
    typeof globalStorage[location.host].keyname == "object"; // true;
    // 書き換え後のコード
    localStorage.keyname = "value";
    localStorage.setItem("keyname", "value");
    localStorage.keyname == 2 // true
    typeof localStorage.keyname == "string"; // true;

  2. michi :

    コメントのテスト
    akismetをリプレースした時のコメント確認

  3. test456 :

    yes