From 77b1121c6c388230a2fa5b3d9d58cae06b296563 Mon Sep 17 00:00:00 2001 From: Marco Bonardo Date: Fri, 12 Mar 2010 13:06:17 +0100 Subject: [PATCH] Sync test_bug370436.html with the version on 1.9.2 branch --- layout/base/tests/test_bug370436.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/layout/base/tests/test_bug370436.html b/layout/base/tests/test_bug370436.html index dcc808d3e0e..43790677845 100644 --- a/layout/base/tests/test_bug370436.html +++ b/layout/base/tests/test_bug370436.html @@ -63,13 +63,13 @@ function startTest() synthesizeKey("VK_UP", {}) synthesizeMouse(ta, 0, 0, { type : "contextmenu" }); - is(words.pop(), "welcome"); - is(words.pop(), "world"); - is(words.pop(), "hello"); - is(words.pop(), "hello"); - is(words.pop(), "sheep"); - is(words.pop(), "sheep"); - is(words.pop(), "sheep"); + is(words.pop(), "welcome", "Word 1 selected correctly"); + is(words.pop(), "world" , "Word 2 selected correctly"); + is(words.pop(), "hello" , "Word 3 selected correctly"); + is(words.pop(), "hello" , "Word 4 selected correctly"); + is(words.pop(), "sheep" , "Word 5 selected correctly"); + is(words.pop(), "sheep" , "Word 6 selected correctly"); + is(words.pop(), "sheep" , "Word 7 selected correctly"); SimpleTest.finish(); }