Commit e3960543 authored by Derek Cheng's avatar Derek Cheng Committed by Commit Bot

[Sheriff] Disable flaky test WebClipboardImplTest.PasteRTF on ChromeOS.

TBR: hajimehoshi
Bug: 867339
Change-Id: I7eedb205332e140722339707eb5fc4fc8f46b3c1
Reviewed-on: https://chromium-review.googlesource.com/1150289
Commit-Queue: Derek Cheng <imcheng@chromium.org>
Reviewed-by: default avatarDerek Cheng <imcheng@chromium.org>
Cr-Commit-Position: refs/heads/master@{#577952}
parent 4d2b0296
......@@ -22,7 +22,13 @@ class WebClipboardImplTest : public ContentBrowserTest {
~WebClipboardImplTest() override = default;
};
IN_PROC_BROWSER_TEST_F(WebClipboardImplTest, PasteRTF) {
#if defined(OS_CHROMEOS)
// Test is flaky on ChromeOS (https://crbug.com/867339).
#define MAYBE_PasteRTF DISABLED_PasteRTF
#else
#define MAYBE_PasteRTF PasteRTF
#endif
IN_PROC_BROWSER_TEST_F(WebClipboardImplTest, MAYBE_PasteRTF) {
BrowserTestClipboardScope clipboard;
const std::string rtf_content = "{\\rtf1\\ansi Hello, {\\b world.}}";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment