summaryrefslogtreecommitdiffstats
path: root/generic/tkRectOval.c
Commit message (Collapse)AuthorAgeFilesLines
* Revise Tcl_Panic() calls ending with a newline removing the newline, because ↵nijtmans2010-11-191-2/+2
| | | | Tcl_Panic() outputs a final newline already
* Eliminate many unnecessary (ClientData) type casts.nijtmans2010-06-151-6/+6
|
* CONSTify everything related to Tk_ConfigSpecnijtmans2010-02-171-2/+2
|
* fix more gcc warnings: missing initializernijtmans2010-01-181-16/+17
| | | | | Apply patch [#2932808]: Canvas items not updating on widget state change
* - eliminate some unnessary type castsnijtmans2009-02-031-2/+2
| | | | | - some internal const decorations - spacing
* make all Tk_CustomOption tables const andnijtmans2008-11-091-16/+11
| | | | remove unnecessary type cast
* Get rid of pre-C89-isms (esp. CONST vs const).dkf2008-04-271-31/+30
|
* merge stable branch onto HEADdgp2007-12-131-1/+1
|
* header cleanupdgp2007-09-071-3/+1
|
* * changes: updates for 8.5a5 release.das2006-10-161-1/+10
| | | | | | | | | | | | | * macosx/tkMacOSXDraw.c: fix numerous issues in CG and QD drawing procs so that they now match X11 drawing much more closely [Bug 1558051]; use Tiger ellipse drawing API when available; fix comments & whitespace. * macosx/tkMacOSXInit.c: set default linewidth limit for CG antialiasing to 0 as thin horizontal/vertical lines look good now. * generic/tkCanvLine.c (ConfigureLine): on TkAqua, pass outline * generic/tkCanvPoly.c (ConfigurePolygon): linewidth in gc even for * generic/tkRectOval.c (ConfigureRectOval): fills (as it controls AA).
* Lots of ANSIfying of function decls.dkf2005-11-171-129/+125
| | | | Also a few spots where code has been cleaned up more completely.
* Getting more systematic about styledkf2005-08-101-321/+329
| | | | | Also start removing _ANSI_ARGS_; the core's required ANSI C for a while now Also fix [Bug 1252702]; size_t doesn't mix with Tcl_GetStringFromObj
* * generic/tkMain.c:das2004-11-111-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * macosx/tkMacOSXAppInit.c (removed): * macosx/Wish.pbproj/project.pbxproj: * macosx/tkMacOSXInit.c: * macosx/tkMacOSXInt.h: changes to make TkAqua dynamically loadable, enabling [package require Tk] from tclsh. Startup code from tkMacOSXAppInit.c moved into tkMacOSXInit.c, added code that notifies the window server that an unbundled executable is a full GUI application after loading Tk. [Patch 1035348] * doc/wm.n: documented [wm attributes] on Mac OS X. [Bug 606665] * macosx/tkMacOSXWm.c: implemented TIP 222 [wm attributes -alpha] on Mac OS X. [Patch 892194] WmIconbitmapCmd: adopted FSRef changes from [wm atttrs -titlepath]. * macosx/tkMacOSXSubwindows.c: synced spacing/formatting with core-8-4-branch. * generic/tkRectOval.c: * macosx/README: * macosx/tkMacOSXDefault.h: * macosx/tkMacOSXDraw.c: * macosx/tkMacOSXInit.c: * macosx/tkMacOSXInt.h: * macosx/tkMacOSXMenu.c: * macosx/tkMacOSXWm.c: forward port from core-8-4-branch of Jim's and my changes for CG drawing and [wm attributes] (corresponds to 8.4 changes dating from 09-18, 07-27, 07-24). * macosx/tkMacOSXMouseEvent.c: endianness fixes. * macosx/Wish.pbproj/project.pbxproj: corrected path to html help inside framework. * macosx/Makefile: prevent parallel make from building several targets at the same time.
* * generic/tk3d.c: All uses of 'panic' (the macro) changeddavygrvy2004-01-131-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tkBind.c: to 'Tcl_Panic' (the function). The #define * generic/tkBitmap.c: of panic in tcl.h clearly states it is * generic/tkCanvArc.c: deprecated in the comments. * generic/tkCanvBmap.c: [Tcl Patch 865264] * generic/tkCanvImg.c: * generic/tkCanvLine.c: * generic/tkCanvPoly.c: * generic/tkCanvText.c: * generic/tkCanvWind.c: * generic/tkColor.c: * generic/tkConfig.c: * generic/tkCursor.c: * generic/tkError.c: * generic/tkEvent.c: * generic/tkFocus.c: * generic/tkFont.c: * generic/tkFrame.c: * generic/tkGC.c: * generic/tkGrid.c: * generic/tkImgBmap.c: * generic/tkImgPhoto.c: * generic/tkImgUtil.c: * generic/tkMenu.c: * generic/tkObj.c: * generic/tkPack.c: * generic/tkPlace.c: * generic/tkRectOval.c: * generic/tkSelect.c: * generic/tkText.c: * generic/tkTextBTree.c: * generic/tkTextDisp.c: * generic/tkTextImage.c: * generic/tkTextIndex.c: * generic/tkTextMark.c: * generic/tkTextWind.c: * generic/tkVisual.c: * generic/tkWindow.c: * mac/tkMacAppInit.c: * mac/tkMacAppearanceStubs.c: * mac/tkMacButton.c: * mac/tkMacDraw.c: * mac/tkMacEmbed.c: * mac/tkMacFont.c: * mac/tkMacInit.c: * mac/tkMacMenus.c: * mac/tkMacPort.h: * mac/tkMacSubwindows.c: * mac/tkMacWm.c: * mac/tkMacXStubs.c: * macosx/tkMacOSXEmbed.c: * macosx/tkMacOSXFont.c: * macosx/tkMacOSXMenus.c: * macosx/tkMacOSXNotify.c: * macosx/tkMacOSXPort.h: * macosx/tkMacOSXSubwindows.c: * macosx/tkMacOSXWm.c: * macosx/tkMacOSXXStubs.c: * unix/tkUnix3d.c: * unix/tkUnixColor.c: * unix/tkUnixEmbed.c: * unix/tkUnixEvent.c: * unix/tkUnixFocus.c: * unix/tkUnixFont.c: * unix/tkUnixSelect.c: * unix/tkUnixSend.c: * unix/tkUnixWm.c: * win/tkWin3d.c: * win/tkWinButton.c: * win/tkWinColor.c: * win/tkWinDialog.c: * win/tkWinDraw.c: * win/tkWinEmbed.c: * win/tkWinFont.c: * win/tkWinPixmap.c: * win/tkWinPointer.c: * win/tkWinScrlbr.c: * win/tkWinWm.c: * win/tkWinX.c:
* * generic/tkCanvArc.c (CreateArc): Rework canvas create itemhobbs2003-02-091-18/+10
| | | | | | | | | | | | | | * generic/tkCanvBmap.c (CreateBitmap): type coords handling to be * generic/tkCanvImg.c (CreateImage): consistent across types * generic/tkCanvPoly.c (CreatePolygon): and not pass empty coords * generic/tkCanvLine.c (CreateLine): to item creation procs. * generic/tkCanvText.c (CreateText): * generic/tkCanvWind.c (CreateWinItem): * generic/tkCanvas.c (CanvasWidgetCmd CANV_CREATE): * generic/tkRectOval.c (CreateRectOval): * tests/canvRect.test: * tests/canvText.test: * tests/canvas.test:
* Applied companion patch for Tcl Patch 585105,dgp2002-08-051-3/+3
| | | | | | | | | | | | | | | | | | | | | updating Tk to use Tcl 8.4's fully CONST-ified interface, and fully CONSTifying Tk at the same time. This patch includes purging Tk of its last direct access to interp->result. [Bug 589853] The substantial changes include copying event sequence strings into Tcl_DStrings in tkBind.c, and copying [text] indices into Tcl_DStrings because parsing them involved overwriting them. If this causes performance trouble, that can be resolved by further converting them to Tcl_Obj's. The #defines USE_NON_CONST and USE_COMPAT_CONST have the same effect for Tk as they do for Tcl. (They actually change tcl.h)
* * generic/tkCanvArc.c:hobbs2001-07-031-40/+37
| | | | | | | | | | | * generic/tkCanvBmap.c: * generic/tkCanvLine.c: * generic/tkCanvPoly.c: * generic/tkCanvText.c: * generic/tkCanvWind.c: * generic/tkRectOval.c: corrected argument handling in Create<Item> functions that could lead to ABRs or FMRs and corrected names of argc/argv to objc/objv.
* * generic/tkRectOval.c (ConfigureRectOval): Added checks for validericm2000-04-191-3/+11
| | | | | | outline settings before creating of outline GC; this means that it is really possible now to have an oval or rectangle with no outline. [Bug: 5029].
* * generic/tkRectOval.c (ConfigureRectOval):hobbs2000-02-011-2/+2
| | | | | | | | | | | | | * generic/tkCanvLine.c (ConfigureLine): * generic/tkCanvPoly.c (ConfigurePoly): * generic/tkCanvArc.c (Configure/DisplayArc): fixed handling for negative dash values [Bug: 4104] * generic/tkScale.c (TkRoundToResolution): fixed incorrect assumption that (N+1)*delta = N*delta + delta with floating point math [Bug: 3689, 4099] (DestroyScale) Fixed check for cancelling TkpDisplayScale (was REDRAW_ALL, is now REDRAW_PENDING)
* * generic/tkCanvas.c: fixed mem leak with TagSearchExprInithobbs2000-01-121-1/+10
| | | | | | | | | | | | | | | [Bug: 3977] * generic/tkStubInit.c: * generic/tkDecls.h: remove non-existent Tk_(Get|Create)CanvasVisitor prototypes * generic/tkText.c: * generic/tkEntry.c: fixed cursor to not blink when widget was disabled [Bug: 1807] * generic/tkRectOval.c: added note about change to bloat for RectOval bounds calculation for WIN32 only
* * generic/tkStubInit.c:hobbs1999-12-141-111/+455
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tkDecls.h: * generic/tkIntXlibDecls.h: * generic/tkInt.decls: added XSetDashes and XWarpPointer * generic/tk.decls: added Tk_CreateSmoothMethod, and reserved two spots * generic/tk.h: added Tk_SmoothMethod struct, state item to canvas record, #defines for item state, support for using old char*-based canvas item C creation procedures with -DUSE_OLD_CANVAS, Tk_Dash, Tk_TSOffset (-offsets) & Tk_Outline structs and #defs, decls for dash, outline and postscript routines * generic/tkBind.c: added support for Quadruple clicks, and added the -warp option to 'event' with pointer warping routines * xlib/xgc.c: * generic/tkRectOval.c: * generic/tkCanvArc.c: * generic/tkCanvBmap.c: * generic/tkCanvImg.c: * generic/tkCanvLine.c: * generic/tkCanvPoly.c: * generic/tkCanvPs.c: * generic/tkCanvText.c: * generic/tkCanvUtil.c: * generic/tkCanvWind.c: * generic/tkCanvas.c: * generic/tkCanvas.h: Canvas and items received overhaul to with the addition of the dash patch (Nijtmans, et al) This includes objectification of the 'canvas' command, as well as support for (where appropriate) dashes in items, extended stipple support, state for all items, and postscript generation of images and windows. See the new canvas man page for related docs. * generic/tkEntry.c: added entry widget validation, see entry.n * generic/tkEvent.c: on simulated events, ButtonPress should be matched with ButtonRelease to be correct * generic/tkFont.c: corrected possible null reference * generic/tkFrame.c: made frame a Tcl_Obj based command * generic/tkGet.c: added TkGetDoublePixels * generic/tkImage.c: bug fixes from Img patch and new Tk_PostscriptImage and Tk_SetTSOrigin functions * generic/tkImgBmap.c: new ImgBmapPostscript function * generic/tkImgPhoto.c: new Tk_CreatePhotoOption, Tk_DitherPhoto * generic/tkInt.h: declarations for some new functions * generic/tkMessage.c: reworked relief drawing * generic/tkOldConfig.c: added TK_CONFIG_OBJS so old style ConfigureWidget calls can pass in Tcl_Obj arrays * generic/tkScrollbar.c: * generic/tkScrollbar.h: made -orient use an option table * generic/tkText.c: * generic/tkText.h: made -wrap and -state use option tables * generic/tkTextBTree.c: * generic/tkTextDisp.c: * generic/tkTextImage.c: * generic/tkTextMark.c: * generic/tkTextTag.c: * generic/tkTextWind.c: added support for -elide and -state hidden * generic/tkTrig.c: changed TkMakeBezierCurve to support returning the upper limit of points needed for spline * generic/tkUtil.c: new option table parsing routines * generic/tkWindow.c: init'ing of warp stuff, mouseButtonState
* * Merged 8.1 branch into the main trunkstanton1999-04-161-10/+13
|
* Replaced SCCS strings, fixed binary filesstanton1998-09-141-1/+1
|
* Initial revisionrjohnson1998-04-011-0/+1030
onentry> + + + + - + + + + + + + + + + - - - + + + - - - - - - + + + + + + - + - - - - - - - - - - + + + + + + + + + + - + diff --git a/test/w3c/ecma/test144.scxml b/test/w3c/ecma/test144.scxml index fcec83a..76ee416 100644 --- a/test/w3c/ecma/test144.scxml +++ b/test/w3c/ecma/test144.scxml @@ -1,23 +1,27 @@ - - - - - - - + + + + + + + - - - - - - - - + + - - - - - \ No newline at end of file + + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test147.scxml b/test/w3c/ecma/test147.scxml index f877ecf..f12029a 100644 --- a/test/w3c/ecma/test147.scxml +++ b/test/w3c/ecma/test147.scxml @@ -1,30 +1,35 @@ - - - + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test148.scxml b/test/w3c/ecma/test148.scxml index acebba7..988d679 100644 --- a/test/w3c/ecma/test148.scxml +++ b/test/w3c/ecma/test148.scxml @@ -1,31 +1,36 @@ - - - +fails and baz is not generated, i.e. it makes sure that the test doesn't hang. --> + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test149.scxml b/test/w3c/ecma/test149.scxml index b7626c6..7dbe881 100644 --- a/test/w3c/ecma/test149.scxml +++ b/test/w3c/ecma/test149.scxml @@ -1,25 +1,31 @@ - - - + + + + + - - - - - - - - - - - + + + + + + + + + + - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test150.scxml b/test/w3c/ecma/test150.scxml index 41e1895..9624c8c 100644 --- a/test/w3c/ecma/test150.scxml +++ b/test/w3c/ecma/test150.scxml @@ -1,41 +1,45 @@ - - - - - + + + + + + + [1,2,3] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test151.scxml b/test/w3c/ecma/test151.scxml index 119bb65..e7947d0 100644 --- a/test/w3c/ecma/test151.scxml +++ b/test/w3c/ecma/test151.scxml @@ -1,41 +1,45 @@ - - - - - + + + + + + + [1,2,3] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test152.scxml b/test/w3c/ecma/test152.scxml index 8af51a8..155652c 100644 --- a/test/w3c/ecma/test152.scxml +++ b/test/w3c/ecma/test152.scxml @@ -1,48 +1,51 @@ - - - - - - - + + + + + + + + + [1,2,3] - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test153.scxml b/test/w3c/ecma/test153.scxml index c46c32d..cb30088 100644 --- a/test/w3c/ecma/test153.scxml +++ b/test/w3c/ecma/test153.scxml @@ -1,35 +1,42 @@ - - - - - +it ever isn't, set Var4 to 0, indicating failure --> + + + + + + + [1,2,3] - + + - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test155.scxml b/test/w3c/ecma/test155.scxml index 17d3a70..e671d17 100644 --- a/test/w3c/ecma/test155.scxml +++ b/test/w3c/ecma/test155.scxml @@ -1,26 +1,31 @@ - - - - - - + + + + + + + [1,2,3] - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test156.scxml b/test/w3c/ecma/test156.scxml index aa9e2b0..1d2c9ee 100644 --- a/test/w3c/ecma/test156.scxml +++ b/test/w3c/ecma/test156.scxml @@ -1,28 +1,33 @@ - - - - - - + + + + + + + [1,2,3] - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test158.scxml b/test/w3c/ecma/test158.scxml index f1a583f..7947480 100644 --- a/test/w3c/ecma/test158.scxml +++ b/test/w3c/ecma/test158.scxml @@ -1,23 +1,29 @@ - - - + + + + + - - - - - + + + + - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test159.scxml b/test/w3c/ecma/test159.scxml index d7b7821..b17e5f5 100644 --- a/test/w3c/ecma/test159.scxml +++ b/test/w3c/ecma/test159.scxml @@ -1,20 +1,26 @@ - - - + + + + + - - - - - + + + + - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test172.scxml b/test/w3c/ecma/test172.scxml index 28f2bcb..5194a97 100644 --- a/test/w3c/ecma/test172.scxml +++ b/test/w3c/ecma/test172.scxml @@ -1,20 +1,25 @@ - - - + + + + + - - - - - + + + + - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test173.scxml b/test/w3c/ecma/test173.scxml index fa2a289..b3694a6 100644 --- a/test/w3c/ecma/test173.scxml +++ b/test/w3c/ecma/test173.scxml @@ -1,21 +1,26 @@ - - - + + + + + - - - - - + + + + - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test174.scxml b/test/w3c/ecma/test174.scxml index f78feee..227b787 100644 --- a/test/w3c/ecma/test174.scxml +++ b/test/w3c/ecma/test174.scxml @@ -1,21 +1,26 @@ - - - + + + + + - - - - - + + + + - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test175.scxml b/test/w3c/ecma/test175.scxml index cda3b5a..1ec619f 100644 --- a/test/w3c/ecma/test175.scxml +++ b/test/w3c/ecma/test175.scxml @@ -1,27 +1,32 @@ - - - +event1 will be raised first. Succeed if event1 occurs before event2, otherwise fail --> + + + - - - - - - + + + + + - - - - - - - - + + - - - - - \ No newline at end of file + + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test176.scxml b/test/w3c/ecma/test176.scxml index 4b120ec..c4a5c0a 100644 --- a/test/w3c/ecma/test176.scxml +++ b/test/w3c/ecma/test176.scxml @@ -1,30 +1,35 @@ - - - - + + + + + + - - - - - - - + + + + + + - - - - - - - - - - + + + + - - - - - \ No newline at end of file + + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test178.scxml b/test/w3c/ecma/test178.scxml index 91b4681..da69af2 100644 --- a/test/w3c/ecma/test178.scxml +++ b/test/w3c/ecma/test178.scxml @@ -1,27 +1,27 @@ - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file +inspection.) --> + + + + + + + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test179.scxml b/test/w3c/ecma/test179.scxml index f5c9169..3c4b09a 100644 --- a/test/w3c/ecma/test179.scxml +++ b/test/w3c/ecma/test179.scxml @@ -1,18 +1,23 @@ - - - - - - - 123 - + + + + + + + 123 + - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test183.scxml b/test/w3c/ecma/test183.scxml index 2c17ea8..825907e 100644 --- a/test/w3c/ecma/test183.scxml +++ b/test/w3c/ecma/test183.scxml @@ -1,21 +1,25 @@ - - - - + + + + + - - - - + + + - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test185.scxml b/test/w3c/ecma/test185.scxml index 6a83574..7e4c408 100644 --- a/test/w3c/ecma/test185.scxml +++ b/test/w3c/ecma/test185.scxml @@ -1,23 +1,27 @@ - - - - - - - + + + + + + + - - - - - - - - + + - - - - - \ No newline at end of file + + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test186.scxml b/test/w3c/ecma/test186.scxml index 68254d3..ef42d18 100644 --- a/test/w3c/ecma/test186.scxml +++ b/test/w3c/ecma/test186.scxml @@ -1,31 +1,36 @@ - - - - - - - - - - - - +in the interval.) If var2 ends up == 1, we pass. Otherwise we fail --> + + + + + + + + + + + - - - + + - - - - - - + - - - - - \ No newline at end of file + + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test187.scxml b/test/w3c/ecma/test187.scxml index c4f2a6f..06b08a2 100644 --- a/test/w3c/ecma/test187.scxml +++ b/test/w3c/ecma/test187.scxml @@ -1,33 +1,38 @@ - - - - +10 sec timer expires and we pass --> + + - + - - - - - - + + + + + + - + - - - - - + + + + - - - - - - \ No newline at end of file + + + + + + + + + + + + diff --git a/test/w3c/ecma/test189.scxml b/test/w3c/ecma/test189.scxml index 683b874..6a861cd 100644 --- a/test/w3c/ecma/test189.scxml +++ b/test/w3c/ecma/test189.scxml @@ -1,22 +1,27 @@ - - - - - - - - - +added to the external queue (event though event2 is generated first) --> + + + + + + + - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test190.scxml b/test/w3c/ecma/test190.scxml index a1f6d56..f5b766b 100644 --- a/test/w3c/ecma/test190.scxml +++ b/test/w3c/ecma/test190.scxml @@ -1,35 +1,40 @@ - - - - - - - - - - - - - - - +is actually delivered. The delayed makes sure another event is generated (so the test doesn't hang) --> + + + + + + + + + + + + + + - - - - - - - - - - + + + - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test191.scxml b/test/w3c/ecma/test191.scxml index 6e82274..dc956f1 100644 --- a/test/w3c/ecma/test191.scxml +++ b/test/w3c/ecma/test191.scxml @@ -1,31 +1,37 @@ - - - - +pass, otherwise we fail. The timer insures that some event is generated and that the test does not hang. --> + + - + - - + + - - - - - - - + + + + + + + - - - - - - \ No newline at end of file + + + + + + + + + + + + diff --git a/test/w3c/ecma/test192.scxml b/test/w3c/ecma/test192.scxml index a74a05e..c63a211 100644 --- a/test/w3c/ecma/test192.scxml +++ b/test/w3c/ecma/test192.scxml @@ -1,55 +1,52 @@ - - - - - - - - - - + + + + + + + + - - - + + - - - - - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + - - - - - - - \ No newline at end of file + + + + + + + + + + + diff --git a/test/w3c/ecma/test193.scxml b/test/w3c/ecma/test193.scxml index 286513d..92e0cce 100644 --- a/test/w3c/ecma/test193.scxml +++ b/test/w3c/ecma/test193.scxml @@ -1,26 +1,29 @@ - - - - - - - - - + + + + + + + + + - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test194.scxml b/test/w3c/ecma/test194.scxml index e7dcd76..b4a5a5a 100644 --- a/test/w3c/ecma/test194.scxml +++ b/test/w3c/ecma/test194.scxml @@ -1,22 +1,26 @@ - - - - - - - - - + + + + + + + + + - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test198.scxml b/test/w3c/ecma/test198.scxml index e804625..bcb2cee 100644 --- a/test/w3c/ecma/test198.scxml +++ b/test/w3c/ecma/test198.scxml @@ -1,19 +1,23 @@ - - - - - - + + + + + + + - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test199.scxml b/test/w3c/ecma/test199.scxml index 2119cd8..cbc4a52 100644 --- a/test/w3c/ecma/test199.scxml +++ b/test/w3c/ecma/test199.scxml @@ -1,18 +1,22 @@ - - - - - - + + + + + + + - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test200.scxml b/test/w3c/ecma/test200.scxml index 2aa85a9..ef53be4 100644 --- a/test/w3c/ecma/test200.scxml +++ b/test/w3c/ecma/test200.scxml @@ -1,18 +1,22 @@ - - - - - - + + + + + + + - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test201.scxml b/test/w3c/ecma/test201.scxml index 8ded0d5..f7e1916 100644 --- a/test/w3c/ecma/test201.scxml +++ b/test/w3c/ecma/test201.scxml @@ -1,19 +1,23 @@ - - - - - - + + + + + + + - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test205.scxml b/test/w3c/ecma/test205.scxml index 5adefbe..70068ab 100644 --- a/test/w3c/ecma/test205.scxml +++ b/test/w3c/ecma/test205.scxml @@ -1,30 +1,34 @@ - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test207.scxml b/test/w3c/ecma/test207.scxml index fe30bf1..5b89697 100644 --- a/test/w3c/ecma/test207.scxml +++ b/test/w3c/ecma/test207.scxml @@ -1,56 +1,55 @@ - - - - - - +raised in another session, but the spec doesn't define any way to refer to an event in another process --> + + + + - - - - - - - + + - + - - - - - - - - - - - - - + + + + + + + + + + + - - - - + + + - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test208.scxml b/test/w3c/ecma/test208.scxml index 043e537..ed0de3e 100644 --- a/test/w3c/ecma/test208.scxml +++ b/test/w3c/ecma/test208.scxml @@ -1,21 +1,24 @@ - - - - - - - - + + + + + + + + - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test210.scxml b/test/w3c/ecma/test210.scxml index f103ecd..15d892d 100644 --- a/test/w3c/ecma/test210.scxml +++ b/test/w3c/ecma/test210.scxml @@ -1,24 +1,28 @@ - - - + + + + + - - - - - - - + + + + + + - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test215.scxml b/test/w3c/ecma/test215.scxml index 97e6a39..a8e53b4 100644 --- a/test/w3c/ecma/test215.scxml +++ b/test/w3c/ecma/test215.scxml @@ -1,29 +1,35 @@ - - - - - - - - - - +the runtime value is used, the invocation will succeed --> + + + + + + + + - - + + - + - + - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + diff --git a/test/w3c/ecma/test216.scxml b/test/w3c/ecma/test216.scxml index 97b2a77..ae6f69c 100644 --- a/test/w3c/ecma/test216.scxml +++ b/test/w3c/ecma/test216.scxml @@ -1,22 +1,28 @@ - - - - - - - - - - +the runtime value is used, the invocation will succeed --> +