- From: <Phoschka@aol.com>
- Date: Tue, 2 Jun 1998 18:17:45 EDT
- To: symm@w3.org, smil-editors@w3.org
In a message dated 6/2/98 12:51:37, Dan Conolly wrote: >skip-content: AT RISK! >ACTION PH: mail test case to symm@w3.org The following are test cases for the five elements in SMIL that have the "skip-content" attribute. 1) skip-content in "region" element: <smil> <head> <layout> <region id="a" top="5"> some content </region> </layout> </head> </smil> Expected behavior: Player parses document without error message Second test: <smil> <head> <layout> <region id="a" top="5" skip-content="false"> some content </region> </layout> </head> </smil> Expected behavior: Player indicates that it can't process content in region element 2) skip-content in "root-layout" element: <smil> <head> <layout> <root-layout id="a"> some content </root-layout> </layout> </head> </smil> Expected behavior: Player parses document without error message caused by content in "root-layout" Second test: <smil> <head> <layout> <root-layout id="a" skip-content="false"> some content </root-layout> </layout> </head> </smil> Expected behavior: Player indicates that it can't process content in root- layout element 3)skip-content in "meta" element: <smil> <head> <meta id="a" name="title" content="test"> some content </meta> </head> </smil> Expected behavior: Player parses document without error message Second test: <smil> <head> <meta id="a" name="title" content="test" skip-content="false"> some content </meta> </head> </smil> Expected behavior: Player indicates that it can't process content in meta element 4) skip-content in "anchor" Element <smil> <body> <img src="..." > <anchor top="0" left="0"> some content </anchor </img> </body> </smil> Expected behavior: Player parses document without error message Second test: <smil> <body> <img src="..." > <anchor top="0" left="0" skip-content="false"> some content </anchor </img> </body> </smil> Expected behavior: Player indicates that it can't process content in anchor element 5) Media Object Elements (due to an editing error caused by a last-minute change (dropping of content in media objects for 1.0), the media object elements don't have a "skip- content" element in the proposed rec at this point - it will be added in the final version) <smil> <body> <img src="..." > some content </img> </body> </smil> Expected behavior: Player parses document without error message Second test: <smil> <body> <img src="..." skip-content="false"> some content </img> </body> </smil> Expected behavior: Player indicates that it can't process content in "img" element
Received on Tuesday, 2 June 1998 18:17:28 UTC