commit | aafda77a1c909ca65664763396d13a51207c717b | [log] [tgz] |
---|---|---|
author | Mathias Bynens <[email protected]> | Thu Feb 14 08:52:04 2019 |
committer | Commit Bot <[email protected]> | Thu Feb 14 08:52:04 2019 |
tree | 96464b2d91ab46185ccf03e2b645707f09906746 | |
parent | a0762a39ee897e42af260186236e9809c19d04dd [diff] [blame] |
[devtools] Clean up HTML This patch simplifies the existing charset <meta> tags (saving 45 bytes per file) and removes redundant type="text/javascript" attributes from <script> elements (saving 46 bytes per file). Overall, this patch saves 728 useless bytes (91 bytes * 8 files). https://mathiasbynens.be/notes/html5-levels#simplified-syntax Change-Id: I87446df4335c6f1e41d0a8783dd5d459b82c1057 Reviewed-on: https://chromium-review.googlesource.com/c/1472490 Auto-Submit: Mathias Bynens <[email protected]> Commit-Queue: Mathias Bynens <[email protected]> Commit-Queue: Joel Einbinder <[email protected]> Reviewed-by: Joel Einbinder <[email protected]> Cr-Original-Commit-Position: refs/heads/master@{#632133} Cr-Mirrored-From: https://chromium.googlesource.com/chromium/src Cr-Mirrored-Commit: 20b6d50ce5c4080596fa8388806b95c28c294479
diff --git a/front_end/integration_test_runner.html b/front_end/integration_test_runner.html index f982e1b..ca7cc52 100644 --- a/front_end/integration_test_runner.html +++ b/front_end/integration_test_runner.html
@@ -6,10 +6,10 @@ <!doctype html> <html lang="en"> <head> - <meta http-equiv="content-type" content="text/html; charset=utf-8"> + <meta charset="utf-8"> <meta http-equiv="Content-Security-Policy" content="object-src 'none'; script-src 'self' 'unsafe-eval' 'unsafe-inline' https://chrome-devtools-frontend.appspot.com"> - <script type="text/javascript" src="Runtime.js"></script> - <script type="text/javascript" src="integration_test_runner.js"></script> + <script src="Runtime.js"></script> + <script src="integration_test_runner.js"></script> </head> <body id="-blink-dev-tools"></body> </html>