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

Unified Diff: LayoutTests/fast/performance/performance-mark-exceptions.html

Issue 99083002: WIP: Migrate generated bindings to new ExceptionState constructor. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase. Created 7 years 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/performance/performance-mark-exceptions.html
diff --git a/LayoutTests/fast/performance/performance-mark-exceptions.html b/LayoutTests/fast/performance/performance-mark-exceptions.html
index 16f9f851d8687ffcbbca60a0e8b9485e6188f140..b33f45c07c7119f5505f60ba56e9ee31bfe4ff1b 100644
--- a/LayoutTests/fast/performance/performance-mark-exceptions.html
+++ b/LayoutTests/fast/performance/performance-mark-exceptions.html
@@ -31,7 +31,7 @@
'loadEventEnd',
];
allTheThings.forEach(function(name) {
- shouldThrow('window.performance.mark(\'' + name + '\')', '"SyntaxError: \'' + name + '\' is part of the PerformanceTiming interface, and cannot be used as a mark name."');
+ shouldThrow('window.performance.mark(\'' + name + '\')', '"SyntaxError: Failed to execute \'mark\' on \'Performance\': \'' + name + '\' is part of the PerformanceTiming interface, and cannot be used as a mark name."');
});
</script>
</body>

Powered by Google App Engine
This is Rietveld 408576698