Sign in
chromium
/
chromium
/
src
/
bcf73217bfaf1adb3b51ba42dbfc9c396e8dc1c7
/
.
/
chrome
/
test
/
data
/
optimization_guide
/
random_title.html
blob: fe9c8e04fe87fa30edfc3346130ba92d9d5794af [
file
] [
log
] [
blame
]
<!DOCTYPE html>
<html>
<head>
<script>
// Generate any random string and set it as the title.
document
.
title
=
Math
.
random
().
toString
(
36
).
slice
(
2
);
</script>
</head>
<body>
<p>
hello
</p>
</body>
</html>