зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1391532 - Preserve the precision of a timestamp when converting it to string. r=bkelly
This commit is contained in:
Родитель
61bd1ae7d9
Коммит
8dfeaddc82
|
@ -6,7 +6,7 @@ def main(request, response):
|
|||
('Last-Modified', time.strftime("%a, %d %b %Y %H:%M:%S GMT", time.gmtime()))]
|
||||
|
||||
body = '''
|
||||
const importTime = {time};
|
||||
const importTime = {time:8f};
|
||||
'''.format(time=time.time())
|
||||
|
||||
return headers, body
|
||||
|
|
|
@ -9,7 +9,7 @@ def main(request, response):
|
|||
test = request.GET['test']
|
||||
|
||||
body = '''
|
||||
const mainTime = {time};
|
||||
const mainTime = {time:8f};
|
||||
const testName = {test};
|
||||
importScripts('update-max-aged-worker-imported-script.py');
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче