Index: tools/perf/profile_creators/small_profile_creator.py |
diff --git a/tools/perf/profile_creators/small_profile_creator.py b/tools/perf/profile_creators/small_profile_creator.py |
index 26b1baffdb801c789019606f236720d592a6a85d..f03b39eebcbf788752bfbc0508d8976f18d2e567 100644 |
--- a/tools/perf/profile_creators/small_profile_creator.py |
+++ b/tools/perf/profile_creators/small_profile_creator.py |
@@ -21,4 +21,7 @@ class SmallProfileCreator(profile_creator.ProfileCreator): |
def MeasurePage(self, _, tab, results): |
# Multiple tabs would help make this faster, but that can't be done until |
# crbug.com/258113 is fixed. |
- tab.WaitForDocumentReadyStateToBeComplete() |
+ |
+ # Can't use WaitForDocumentReadyStateToBeComplete() here due to |
+ # crbug.com/280750 . |
+ tab.WaitForDocumentReadyStateToBeInteractiveOrBetter() |