You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

compliance.ihtml 199KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  2. "http://www.w3.org/TR/html4/loose.dtd">
  3. <!--
  4. Licensed to the Apache Software Foundation (ASF) under one or more
  5. contributor license agreements. See the NOTICE file distributed with
  6. this work for additional information regarding copyright ownership.
  7. The ASF licenses this file to You under the Apache License, Version 2.0
  8. (the "License"); you may not use this file except in compliance with
  9. the License. You may obtain a copy of the License at
  10. http://www.apache.org/licenses/LICENSE-2.0
  11. Unless required by applicable law or agreed to in writing, software
  12. distributed under the License is distributed on an "AS IS" BASIS,
  13. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. See the License for the specific language governing permissions and
  15. limitations under the License.
  16. -->
  17. <html>
  18. <head>
  19. <title>Apache FOP Compliance Page</title>
  20. </head>
  21. <body>
  22. <h1>W3C XSL-FO 1.0 Standard</h1>
  23. <p>One of FOP's design goals is conformance to the <a href=
  24. "http://www.w3.org/TR/2001/REC-xsl-20011015/">W3C XSL-FO 1.0 standard</a>, which specifies three
  25. levels of "conformance": basic, extended, and complete. Although FOP does not currently conform
  26. to any of these levels, it is nevertheless a useful work-in-progress for many applications. The
  27. information presented here demonstrates FOP's progress toward the goal of conformance, which
  28. progress consists of implementation of specific objects and properties in the standard. The
  29. information presented is useful not only to the developers as a sort of "to do" list, but also
  30. for setting proper expectations for users and potential users.</p>
  31. <p>In the tables below, "yes" (green background) indicates conformance, "no" (red background)
  32. indicates a lack of conformance, "partial" (greyish background) indicates partial conformance,
  33. and "na" indicates that the item is "not applicable" to FOP usually because FOP supports only
  34. visual media.</p>
  35. <h2><a href="#fo-object-section">XSL-FO Object Support</a></h2>
  36. <ul class="minitoc">
  37. <li><strong><a href="#fo-object-decl-section">Declarations and Pagination and Layout Formatting
  38. Objects</a>:</strong>
  39. <a href="#fo-object-root">root</a>,
  40. <a href="#fo-object-declarations">declarations</a>,
  41. <a href="#fo-object-color-profile">color-profile</a>,
  42. <a href="#fo-object-page-sequence">page-sequence</a>,
  43. <a href="#fo-object-layout-master-set">layout-master-set</a>,
  44. <a href="#fo-object-page-sequence-master">page-sequence-master</a>,
  45. <a href="#fo-object-single-page-master-reference">single-page-master-reference</a>,
  46. <a href="#fo-object-repeatable-page-master-reference">repeatable-page-master-reference</a>,
  47. <a href="#fo-object-repeatable-page-master-alternatives">repeatable-page-master-alternatives</a>,
  48. <a href="#fo-object-conditional-page-master-reference">conditional-page-master-reference</a>,
  49. <a href="#fo-object-simple-page-master">simple-page-master</a>,
  50. <a href="#fo-object-region-body">region-body</a>,
  51. <a href="#fo-object-region-before">region-before</a>,
  52. <a href="#fo-object-region-after">region-after</a>,
  53. <a href="#fo-object-region-start">region-start</a>,
  54. <a href="#fo-object-region-end">region-end</a>,
  55. <a href="#fo-object-flow">flow</a>,
  56. <a href="#fo-object-static-content">static-content</a>,
  57. <a href="#fo-object-title">title</a></li>
  58. <li><strong><a href="#fo-object-block-section">Block Formatting Objects</a>:</strong>
  59. <a href="#fo-object-block">block</a>,
  60. <a href="#fo-object-block-container">block-container</a></li>
  61. <li><strong><a href="#fo-object-inline-section">Inline Formatting Objects</a>:</strong>
  62. <a href="#fo-object-bidi-override">bidi-override</a>,
  63. <a href="#fo-object-character">character</a>,
  64. <a href="#fo-object-initial-property-set">initial-property-set</a>,
  65. <a href="#fo-object-external-graphic">external-graphic</a>,
  66. <a href="#fo-object-instream-foreign-object">instream-foreign-object</a>,
  67. <a href="#fo-object-inline">inline</a>,
  68. <a href="#fo-object-inline-container">inline-container</a>,
  69. <a href="#fo-object-leader">leader</a>,
  70. <a href="#fo-object-page-number">page-number</a>,
  71. <a href="#fo-object-page-number-citation">page-number-citation</a></li>
  72. <li><strong><a href="#fo-object-table-section">Table Formatting Objects</a>:</strong>
  73. <a href="#fo-object-table-and-caption">table-and-caption</a>,
  74. <a href="#fo-object-table">table</a>,
  75. <a href="#fo-object-table-column">table-column</a>,
  76. <a href="#fo-object-table-caption">table-caption</a>,
  77. <a href="#fo-object-table-header">table-header</a>,
  78. <a href="#fo-object-table-footer">table-footer</a>,
  79. <a href="#fo-object-table-body">table-body</a>,
  80. <a href="#fo-object-table-row">table-row</a>,
  81. <a href="#fo-object-table-cell">table-cell</a></li>
  82. <li><strong><a href="#fo-object-list-section">List Formatting Objects</a>:</strong>
  83. <a href="#fo-object-list-block">list-block</a>,
  84. <a href="#fo-object-list-item">list-item</a>,
  85. <a href="#fo-object-list-item-body">list-item-body</a>,
  86. <a href="#fo-object-list-item-label">list-item-label</a></li>
  87. <li><strong><a href="#fo-object-link-section">Link and Multi Formatting Objects</a>:</strong>
  88. <a href="#fo-object-basic-link">basic-link</a>,
  89. <a href="#fo-object-multi-switch">multi-switch</a>,
  90. <a href="#fo-object-multi-case">multi-case</a>,
  91. <a href="#fo-object-multi-toggle">multi-toggle</a>,
  92. <a href="#fo-object-multi-properties">multi-properties</a>,
  93. <a href="#fo-object-multi-property-set">multi-property-set</a></li>
  94. <li><strong><a href="#fo-object-bookmarks-section">Formatting Objects for
  95. Bookmarks</a>:</strong>
  96. <a href="#fo-object-bookmark-tree">bookmark-tree</a>,
  97. <a href="#fo-object-bookmark">bookmark</a>,
  98. <a href="#fo-object-bookmark-title">bookmark-title</a></li>
  99. <li><strong><a href="#fo-object-outofline-section">Out-of-line Formatting Objects</a>:</strong>
  100. <a href="#fo-object-float">float</a>,
  101. <a href="#fo-object-footnote">footnote</a>,
  102. <a href="#fo-object-footnote-body">footnote-body</a></li>
  103. <li><strong><a href="#fo-object-other-section">Other Formatting Objects</a>:</strong>
  104. <a href="#fo-object-wrapper">wrapper</a>,
  105. <a href="#fo-object-marker">marker</a>,
  106. <a href="#fo-object-retrieve-marker">retrieve-marker</a></li>
  107. </ul>
  108. <h2><a href="#fo-property-section">XSL-FO Property Support</a></h2>
  109. <ul>
  110. <li><strong><a href="#fo-property-commonaccess-section">Common Accessibility
  111. Properties</a>:</strong>
  112. <a href="#fo-property-source-document">source-document</a>,
  113. <a href="#fo-property-role">role</a></li>
  114. <li><strong><a href="#fo-property-commonabspos-section">Common Absolute Position
  115. Properties</a>:</strong>
  116. <a href="#fo-property-absolute-position">absolute-position</a>,
  117. <a href="#fo-property-top">top</a>,
  118. <a href="#fo-property-right">right</a>,
  119. <a href="#fo-property-bottom">bottom</a>,
  120. <a href="#fo-property-left">left</a></li>
  121. <li><strong><a href="#fo-property-commonaural-section">Common Aural Properties</a>:</strong>
  122. <a href="#fo-property-azimuth">azimuth</a>,
  123. <a href="#fo-property-cue-after">cue-after</a>,
  124. <a href="#fo-property-cue-before">cue-before</a>,
  125. <a href="#fo-property-elevation">elevation</a>,
  126. <a href="#fo-property-pause-after">pause-after</a>,
  127. <a href="#fo-property-pause-before">pause-before</a>,
  128. <a href="#fo-property-pitch">pitch</a>,
  129. <a href="#fo-property-pitch-range">pitch-range</a>,
  130. <a href="#fo-property-play-during">play-during</a>,
  131. <a href="#fo-property-richness">richness</a>,
  132. <a href="#fo-property-speak">speak</a>,
  133. <a href="#fo-property-speak-header">speak-header</a>,
  134. <a href="#fo-property-speak-numeral">speak-numeral</a>,
  135. <a href="#fo-property-speak-punctuation">speak-punctuation</a>,
  136. <a href="#fo-property-speech-rate">speech-rate</a>,
  137. <a href="#fo-property-stress">stress</a>,
  138. <a href="#fo-property-voice-family">voice-family</a>,
  139. <a href="#fo-property-volume">volume</a></li>
  140. <li><strong><a href="#fo-property-commonenv-section">Common Border, Padding, and Background
  141. Properties</a>:</strong>
  142. <a href="#fo-property-background-attachment">background-attachment</a>,
  143. <a href="#fo-property-background-color">background-color</a>,
  144. <a href="#fo-property-background-image">background-image</a>,
  145. <a href="#fo-property-background-repeat">background-repeat</a>,
  146. <a href="#fo-property-background-position-horizontal">background-position-horizontal</a>,
  147. <a href="#fo-property-background-position-vertical">background-position-vertical</a>,
  148. <a href="#fo-property-border-before-color">border-before-color</a>,
  149. <a href="#fo-property-border-before-style">border-before-style</a>,
  150. <a href="#fo-property-border-before-width">border-before-width</a>,
  151. <a href="#fo-property-border-after-color">border-after-color</a>,
  152. <a href="#fo-property-border-after-style">border-after-style</a>,
  153. <a href="#fo-property-border-after-width">border-after-width</a>,
  154. <a href="#fo-property-border-start-color">border-start-color</a>,
  155. <a href="#fo-property-border-start-style">border-start-style</a>,
  156. <a href="#fo-property-border-start-width">border-start-width</a>,
  157. <a href="#fo-property-border-end-color">border-end-color</a>,
  158. <a href="#fo-property-border-end-style">border-end-style</a>,
  159. <a href="#fo-property-border-end-width">border-end-width</a>,
  160. <a href="#fo-property-border-top-color">border-top-color</a>,
  161. <a href="#fo-property-border-top-style">border-top-style</a>,
  162. <a href="#fo-property-border-top-width">border-top-width</a>,
  163. <a href="#fo-property-border-bottom-color">border-bottom-color</a>,
  164. <a href="#fo-property-border-bottom-style">border-bottom-style</a>,
  165. <a href="#fo-property-border-bottom-width">border-bottom-width</a>,
  166. <a href="#fo-property-border-left-color">border-left-color</a>,
  167. <a href="#fo-property-border-left-style">border-left-style</a>,
  168. <a href="#fo-property-border-left-width">border-left-width</a>,
  169. <a href="#fo-property-border-right-color">border-right-color</a>,
  170. <a href="#fo-property-border-right-style">border-right-style</a>,
  171. <a href="#fo-property-border-right-width">border-right-width</a>,
  172. <a href="#fo-property-padding-before">padding-before</a>,
  173. <a href="#fo-property-padding-after">padding-after</a>,
  174. <a href="#fo-property-padding-start">padding-start</a>,
  175. <a href="#fo-property-padding-end">padding-end</a>,
  176. <a href="#fo-property-padding-top">padding-top</a>,
  177. <a href="#fo-property-padding-bottom">padding-bottom</a>,
  178. <a href="#fo-property-padding-left">padding-left</a>,
  179. <a href="#fo-property-padding-right">padding-right</a></li>
  180. <li><strong><a href="#fo-property-commonfont-section">Common Font Properties</a>:</strong>
  181. <a href="#fo-property-font-family">font-family</a>,
  182. <a href="#fo-property-font-selection-strategy">font-selection-strategy</a>,
  183. <a href="#fo-property-font-size">font-size</a>,
  184. <a href="#fo-property-font-stretch">font-stretch</a>,
  185. <a href="#fo-property-font-size-adjust">font-size-adjust</a>,
  186. <a href="#fo-property-font-style">font-style</a>,
  187. <a href="#fo-property-font-variant">font-variant</a>,
  188. <a href="#fo-property-font-weight">font-weight</a></li>
  189. <li><strong><a href="#fo-property-commonhyphen-section">Common Hyphenation
  190. Properties</a>:</strong>
  191. <a href="#fo-property-country">country</a>,
  192. <a href="#fo-property-language">language</a>,
  193. <a href="#fo-property-script">script</a>,
  194. <a href="#fo-property-hyphenate">hyphenate</a>,
  195. <a href="#fo-property-hyphenation-character">hyphenation-character</a>,
  196. <a href="#fo-property-hyphenation-push-character-count">hyphenation-push-character-count</a>,
  197. <a href="#fo-property-hyphenation-remain-character-count">hyphenation-remain-character-count</a></li>
  198. <li><strong><a href="#fo-property-commonmarginblock-section">Common Margin Properties -
  199. Block</a>:</strong>
  200. <a href="#fo-property-margin-top">margin-top</a>,
  201. <a href="#fo-property-margin-bottom">margin-bottom</a>,
  202. <a href="#fo-property-margin-left">margin-left</a>,
  203. <a href="#fo-property-margin-right">margin-right</a>,
  204. <a href="#fo-property-space-before">space-before</a>,
  205. <a href="#fo-property-space-after">space-after</a>,
  206. <a href="#fo-property-start-indent">start-indent</a>,
  207. <a href="#fo-property-end-indent">end-indent</a></li>
  208. <li><strong><a href="#fo-property-commonmargininline-section">Common Margin Properties -
  209. Inline</a>:</strong>
  210. <a href="#fo-property-space-end">space-end</a>,
  211. <a href="#fo-property-space-start">space-start</a></li>
  212. <li><strong><a href="#fo-property-commonrelpos-section">Common Relative Position
  213. Properties</a>:</strong> <a href="#fo-property-relative-position">relative-position</a></li>
  214. <li><strong><a href="#fo-property-areaalign-section">Area Alignment Properties</a>:</strong>
  215. <a href="#fo-property-alignment-adjust">alignment-adjust</a>,
  216. <a href="#fo-property-alignment-baseline">alignment-baseline</a>,
  217. <a href="#fo-property-baseline-shift">baseline-shift</a>,
  218. <a href="#fo-property-display-align">display-align</a>,
  219. <a href="#fo-property-dominant-baseline">dominant-baseline</a>,
  220. <a href="#fo-property-relative-align">relative-align</a></li>
  221. <li><strong><a href="#fo-property-areadim-section">Area Dimension Properties</a>:</strong>
  222. <a href="#fo-property-block-progression-dimension">block-progression-dimension</a>,
  223. <a href="#fo-property-content-height">content-height</a>,
  224. <a href="#fo-property-content-width">content-width</a>,
  225. <a href="#fo-property-height">height</a>,
  226. <a href="#fo-property-inline-progression-dimension">inline-progression-dimension</a>,
  227. <a href="#fo-property-max-height">max-height</a>,
  228. <a href="#fo-property-max-width">max-width</a>,
  229. <a href="#fo-property-min-height">min-height</a>,
  230. <a href="#fo-property-min-width">min-width</a>,
  231. <a href="#fo-property-scaling">scaling</a>,
  232. <a href="#fo-property-scaling-method">scaling-method</a>,
  233. <a href="#fo-property-width">width</a></li>
  234. <li><strong><a href="#fo-property-blockandline-section">Block and Line-related
  235. Properties</a>:</strong>
  236. <a href="#fo-property-hyphenation-keep">hyphenation-keep</a>,
  237. <a href="#fo-property-hyphenation-ladder-count">hyphenation-ladder-count</a>,
  238. <a href="#fo-property-last-line-end-indent">last-line-end-indent</a>,
  239. <a href="#fo-property-line-height">line-height</a>,
  240. <a href="#fo-property-line-height-shift-adjustment">line-height-shift-adjustment</a>,
  241. <a href="#fo-property-line-stacking-strategy">line-stacking-strategy</a>,
  242. <a href="#fo-property-linefeed-treatment">linefeed-treatment</a>,
  243. <a href="#fo-property-white-space-treatment">white-space-treatment</a>,
  244. <a href="#fo-property-text-align">text-align</a>,
  245. <a href="#fo-property-text-align-last">text-align-last</a>,
  246. <a href="#fo-property-text-indent">text-indent</a>,
  247. <a href="#fo-property-white-space-collapse">white-space-collapse</a>,
  248. <a href="#fo-property-wrap-option">wrap-option</a></li>
  249. <li><strong><a href="#fo-property-char-section">Character Properties</a>:</strong>
  250. <a href="#fo-property-character">character</a>,
  251. <a href="#fo-property-letter-spacing">letter-spacing</a>,
  252. <a href="#fo-property-suppress-at-line-break">suppress-at-line-break</a>,
  253. <a href="#fo-property-text-decoration">text-decoration</a>,
  254. <a href="#fo-property-text-shadow">text-shadow</a>,
  255. <a href="#fo-property-text-transform">text-transform</a>,
  256. <a href="#fo-property-treat-as-word-space">treat-as-word-space</a>,
  257. <a href="#fo-property-word-spacing">word-spacing</a></li>
  258. <li><strong><a href="#fo-property-color-section">Color-related Properties</a>:</strong>
  259. <a href="#fo-property-color">color</a>,
  260. <a href="#fo-property-color-profile-name">color-profile-name</a>,
  261. <a href="#fo-property-rendering-intent">rendering-intent</a></li>
  262. <li><strong><a href="#fo-property-float-section">Float-related Properties</a>:</strong>
  263. <a href="#fo-property-clear">clear</a>,
  264. <a href="#fo-property-float">float</a>,
  265. <a href="#fo-property-intrusion-displace">intrusion-displace</a></li>
  266. <li><strong><a href="#fo-property-keepsbreaks-section">Keeps and Breaks
  267. Properties</a>:</strong>
  268. <a href="#fo-property-break-after">break-after</a>,
  269. <a href="#fo-property-break-before">break-before</a>,
  270. <a href="#fo-property-keep-together">keep-together</a>,
  271. <a href="#fo-property-keep-with-next">keep-with-next</a>,
  272. <a href="#fo-property-keep-with-previous">keep-with-previous</a>,
  273. <a href="#fo-property-orphans">orphans</a>,
  274. <a href="#fo-property-widows">widows</a></li>
  275. <li><strong><a href="#fo-property-layout-section">Layout-related Properties</a>:</strong>
  276. <a href="#fo-property-clip">clip</a>,
  277. <a href="#fo-property-overflow">overflow</a>,
  278. <a href="#fo-property-reference-orientation">reference-orientation</a>,
  279. <a href="#fo-property-span">span</a></li>
  280. <li><strong><a href="#fo-property-leader-section">Leader and Rule Properties</a>:</strong>
  281. <a href="#fo-property-leader-alignment">leader-alignment</a>,
  282. <a href="#fo-property-leader-pattern">leader-pattern</a>,
  283. <a href="#fo-property-leader-pattern-width">leader-pattern-width</a>,
  284. <a href="#fo-property-leader-length">leader-length</a>,
  285. <a href="#fo-property-rule-style">rule-style</a>,
  286. <a href="#fo-property-rule-thickness">rule-thickness</a></li>
  287. <li><strong><a href="#fo-property-dynamiceffects-section">Properties for Dynamic Effects
  288. Formatting Objects</a>:</strong>
  289. <a href="#fo-property-active-state">active-state</a>,
  290. <a href="#fo-property-auto-restore">auto-restore</a>,
  291. <a href="#fo-property-case-name">case-name</a>,
  292. <a href="#fo-property-case-title">case-title</a>,
  293. <a href="#fo-property-destination-placement-offset">destination-placement-offset</a>,
  294. <a href="#fo-property-external-destination">external-destination</a>,
  295. <a href="#fo-property-indicate-destination">indicate-destination</a>,
  296. <a href="#fo-property-internal-destination">internal-destination</a>,
  297. <a href="#fo-property-show-destination">show-destination</a>,
  298. <a href="#fo-property-starting-state">starting-state</a>,
  299. <a href="#fo-property-switch-to">switch-to</a>,
  300. <a href="#fo-property-target-presentation-context">target-presentation-context</a>,
  301. <a href="#fo-property-target-processing-context">target-processing-context</a>,
  302. <a href="#fo-property-target-stylesheet">target-stylesheet</a></li>
  303. <li><strong><a href="#fo-property-markers-section">Properties for Markers</a>:</strong>
  304. <a href="#fo-property-marker-class-name">marker-class-name</a>,
  305. <a href="#fo-property-retrieve-class-name">retrieve-class-name</a>,
  306. <a href="#fo-property-retrieve-position">retrieve-position</a>,
  307. <a href="#fo-property-retrieve-boundary">retrieve-boundary</a></li>
  308. <li><strong><a href="#fo-property-numberstring-section">Properties for Number to String
  309. Conversion</a>:</strong>
  310. <a href="#fo-property-format">format</a>,
  311. <a href="#fo-property-grouping-separator">grouping-separator</a>,
  312. <a href="#fo-property-grouping-size">grouping-size</a>,
  313. <a href="#fo-property-letter-value">letter-value</a></li>
  314. <li><strong><a href="#fo-property-pagination-section">Pagination and Layout
  315. Properties</a>:</strong>
  316. <a href="#fo-property-blank-or-not-blank">blank-or-not-blank</a>,
  317. <a href="#fo-property-column-count">column-count</a>,
  318. <a href="#fo-property-column-gap">column-gap</a>,
  319. <a href="#fo-property-extent">extent</a>,
  320. <a href="#fo-property-flow-name">flow-name</a>,
  321. <a href="#fo-property-force-page-count">force-page-count</a>,
  322. <a href="#fo-property-initial-page-number">initial-page-number</a>,
  323. <a href="#fo-property-master-name">master-name</a>,
  324. <a href="#fo-property-master-reference">master-reference</a>,
  325. <a href="#fo-property-maximum-repeats">maximum-repeats</a>,
  326. <a href="#fo-property-media-usage">media-usage</a>,
  327. <a href="#fo-property-odd-or-even">odd-or-even</a>,
  328. <a href="#fo-property-page-height">page-height</a>,
  329. <a href="#fo-property-page-position">page-position</a>,
  330. <a href="#fo-property-page-width">page-width</a>,
  331. <a href="#fo-property-precedence">precedence</a>,
  332. <a href="#fo-property-region-name">region-name</a></li>
  333. <li><strong><a href="#fo-property-table-section">Table Properties</a>:</strong>
  334. <a href="#fo-property-border-after-precedence">border-after-precedence</a>,
  335. <a href="#fo-property-border-before-precedence">border-before-precedence</a>,
  336. <a href="#fo-property-border-collapse">border-collapse</a>,
  337. <a href="#fo-property-border-end-precedence">border-end-precedence</a>,
  338. <a href="#fo-property-border-separation">border-separation</a>,
  339. <a href="#fo-property-border-start-precedence">border-start-precedence</a>,
  340. <a href="#fo-property-caption-side">caption-side</a>,
  341. <a href="#fo-property-column-number">column-number</a>,
  342. <a href="#fo-property-column-width">column-width</a>,
  343. <a href="#fo-property-empty-cells">empty-cells</a>,
  344. <a href="#fo-property-ends-row">ends-row</a>,
  345. <a href="#fo-property-number-columns-repeated">number-columns-repeated</a>,
  346. <a href="#fo-property-number-columns-spanned">number-columns-spanned</a>,
  347. <a href="#fo-property-number-rows-spanned">number-rows-spanned</a>,
  348. <a href="#fo-property-starts-row">starts-row</a>,
  349. <a href="#fo-property-table-layout">table-layout</a>,
  350. <a href="#fo-property-table-omit-footer-at-break">table-omit-footer-at-break</a>,
  351. <a href="#fo-property-table-omit-header-at-break">table-omit-header-at-break</a></li>
  352. <li><strong><a href="#fo-property-writingmode-section">Writing-mode-related
  353. Properties</a>:</strong>
  354. <a href="#fo-property-direction">direction</a>,
  355. <a href="#fo-property-glyph-orientation-horizontal">glyph-orientation-horizontal</a>,
  356. <a href="#fo-property-glyph-orientation-vertical">glyph-orientation-vertical</a>,
  357. <a href="#fo-property-text-altitude">text-altitude</a>,
  358. <a href="#fo-property-text-depth">text-depth</a>,
  359. <a href="#fo-property-unicode-bidi">unicode-bidi</a>,
  360. <a href="#fo-property-writing-mode">writing-mode</a></li>
  361. <li><strong><a href="#fo-property-misc-section">Miscellaneous Properties</a>:</strong>
  362. <a href="#fo-property-content-type">content-type</a>,
  363. <a href="#fo-property-id">id</a>,
  364. <a href="#fo-property-provisional-label-separation">provisional-label-separation</a>,
  365. <a href="#fo-property-provisional-distance-between-starts">provisional-distance-between-starts</a>,
  366. <a href="#fo-property-ref-id">ref-id</a>,
  367. <a href="#fo-property-score-spaces">score-spaces</a>,
  368. <a href="#fo-property-src">src</a>,
  369. <a href="#fo-property-visibility">visibility</a>,
  370. <a href="#fo-property-z-index">z-index</a></li>
  371. <li><strong><a href="#fo-property-shorthand-section">Shorthand Properties</a>:</strong>
  372. <a href="#fo-property-background">background</a>,
  373. <a href="#fo-property-background-position">background-position</a>,
  374. <a href="#fo-property-border">border</a>,
  375. <a href="#fo-property-border-bottom">border-bottom</a>,
  376. <a href="#fo-property-border-color">border-color</a>,
  377. <a href="#fo-property-border-left">border-left</a>,
  378. <a href="#fo-property-border-right">border-right</a>,
  379. <a href="#fo-property-border-style">border-style</a>,
  380. <a href="#fo-property-border-spacing">border-spacing</a>,
  381. <a href="#fo-property-border-top">border-top</a>,
  382. <a href="#fo-property-border-width">border-width</a>,
  383. <a href="#fo-property-cue">cue</a>,
  384. <a href="#fo-property-font">font</a>,
  385. <a href="#fo-property-margin">margin</a>,
  386. <a href="#fo-property-padding">padding</a>,
  387. <a href="#fo-property-page-break-after">page-break-after</a>,
  388. <a href="#fo-property-page-break-before">page-break-before</a>,
  389. <a href="#fo-property-page-break-inside">page-break-inside</a>,
  390. <a href="#fo-property-pause">pause</a>,
  391. <a href="#fo-property-position">position</a>,
  392. <a href="#fo-property-size">size</a>,
  393. <a href="#fo-property-vertical-align">vertical-align</a>,
  394. <a href="#fo-property-white-space">white-space</a>,
  395. <a href="#fo-property-xml:lang">xml:lang</a></li>
  396. </ul>
  397. <h2><a href="#fo-function-core-library-section">XSL-FO Core Function Library Support</a></h2>
  398. <ul class="minitoc">
  399. <li><strong><a href="#fo-function-number-section">Number Functions</a>:</strong>
  400. <a href="#fo-function-floor">floor</a>,
  401. <a href="#fo-function-ceiling">ceiling</a>,
  402. <a href="#fo-function-round">round</a>,
  403. <a href="#fo-function-min">min</a>,
  404. <a href="#fo-function-max">max</a>,
  405. <a href="#fo-function-abs">abs</a></li>
  406. <li><strong><a href="#fo-function-color-section">Color Functions</a>:</strong>
  407. <a href="#fo-function-rgb">rgb</a>,
  408. <a href="#fo-function-rgb-icc">rgb-icc</a>,
  409. <a href="#fo-function-system-color">system-color</a></li>
  410. <li><strong><a href="#fo-function-font-section">Font Functions</a>:</strong>
  411. <a href="#fo-function-system-font">system-font</a></li>
  412. <li><strong><a href="#fo-function-property-value-section">Property Value
  413. Functions</a>:</strong>
  414. <a href="#fo-function-inherited-property-value">inherited-property-value</a>,
  415. <a href="#fo-function-label-end">label-end</a>,
  416. <a href="#fo-function-body-start">body-start</a>,
  417. <a href="#fo-function-from-parent">from-parent</a>,
  418. <a href="#fo-function-from-nearest-specified-value">from-nearest-specified-value</a>,
  419. <a href="#fo-function-from-table-column">from-table-column</a>,
  420. <a href="#fo-function-proportional-column-width">proportional-column-width</a>,
  421. <a href="#fo-function-merge-property-values">merge-property-values</a></li>
  422. </ul>
  423. <h1><a name="fo-object-section" id="fo-object-section">XSL-FO Object Support Table</a> (<a href=
  424. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo-section">&sect;6</a>)</h1>
  425. <p>The following is a summary of FOP's current support for the standard XSL-FO objects.</p>
  426. <table border="1">
  427. <tr>
  428. <th rowspan="2">Object Name</th>
  429. <th rowspan="2" align="center">XSL-FO Conformance Level</th>
  430. <th rowspan="2" align="center">Citation</th>
  431. <th colspan="4" align="center">Support&nbsp;in&nbsp;FOP</th>
  432. <th rowspan="2">Comments</th>
  433. </tr>
  434. <tr>
  435. <th align="center">0.20.5 (ancient)</th>
  436. <th align="center">0.94 (stable)</th>
  437. <th align="center">0.95 (stable)</th>
  438. <th align="center">develop- ment</th>
  439. </tr>
  440. <tr>
  441. <td class="category" colspan="8"><a name="fo-object-decl-section" id=
  442. "fo-object-decl-section">Declarations and Pagination and Layout Formatting Objects</a>
  443. (<a href=
  444. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#section-N10029-Declarations-and-Pagination-and-Layout-Formatting-Objects">&sect;6.4</a>)</td>
  445. </tr>
  446. <tr>
  447. <td><a name="fo-object-root" id="fo-object-root">root</a></td>
  448. <td class="basic">Basic</td>
  449. <td align="center"><a href=
  450. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_root">&sect;6.4.2</a></td>
  451. <td class="yes">yes</td>
  452. <td class="yes">yes</td>
  453. <td class="yes">yes</td>
  454. <td class="yes">yes</td>
  455. <td align="center">&nbsp;</td>
  456. </tr>
  457. <tr>
  458. <td><a name="fo-object-declarations" id="fo-object-declarations">declarations</a></td>
  459. <td class="basic">Basic</td>
  460. <td align="center"><a href=
  461. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_declarations">&sect;6.4.3</a></td>
  462. <td class="no">no</td>
  463. <td class="yes">yes</td>
  464. <td class="yes">yes</td>
  465. <td class="yes">yes</td>
  466. <td align="center">&nbsp;</td>
  467. </tr>
  468. <tr>
  469. <td><a name="fo-object-color-profile" id="fo-object-color-profile">color-profile</a></td>
  470. <td class="extended">Extended</td>
  471. <td align="center"><a href=
  472. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_color-profile">&sect;6.4.4</a></td>
  473. <td class="no">no</td>
  474. <td class="yes">yes</td>
  475. <td class="yes">yes</td>
  476. <td class="yes">yes</td>
  477. <td align="center">&nbsp;</td>
  478. </tr>
  479. <tr>
  480. <td><a name="fo-object-page-sequence" id="fo-object-page-sequence">page-sequence</a></td>
  481. <td class="basic">Basic</td>
  482. <td align="center"><a href=
  483. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_page-sequence">&sect;6.4.5</a></td>
  484. <td class="yes">yes</td>
  485. <td class="yes">yes</td>
  486. <td class="yes">yes</td>
  487. <td class="yes">yes</td>
  488. <td align="center">&nbsp;</td>
  489. </tr>
  490. <tr>
  491. <td><a name="fo-object-layout-master-set" id=
  492. "fo-object-layout-master-set">layout-master-set</a></td>
  493. <td class="basic">Basic</td>
  494. <td align="center"><a href=
  495. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_layout-master-set">&sect;6.4.6</a></td>
  496. <td class="yes">yes</td>
  497. <td class="yes">yes</td>
  498. <td class="yes">yes</td>
  499. <td class="yes">yes</td>
  500. <td align="center">&nbsp;</td>
  501. </tr>
  502. <tr>
  503. <td><a name="fo-object-page-sequence-master" id=
  504. "fo-object-page-sequence-master">page-sequence-master</a></td>
  505. <td class="basic">Basic</td>
  506. <td align="center"><a href=
  507. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_page-sequence-master">&sect;6.4.7</a></td>
  508. <td class="yes">yes</td>
  509. <td class="yes">yes</td>
  510. <td class="yes">yes</td>
  511. <td class="yes">yes</td>
  512. <td align="center">&nbsp;</td>
  513. </tr>
  514. <tr>
  515. <td><a name="fo-object-single-page-master-reference" id=
  516. "fo-object-single-page-master-reference">single-page-master-reference</a></td>
  517. <td class="basic">Basic</td>
  518. <td align="center"><a href=
  519. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_single-page-master-reference">&sect;6.4.8</a></td>
  520. <td class="yes">yes</td>
  521. <td class="yes">yes</td>
  522. <td class="yes">yes</td>
  523. <td class="yes">yes</td>
  524. <td align="center">&nbsp;</td>
  525. </tr>
  526. <tr>
  527. <td><a name="fo-object-repeatable-page-master-reference" id=
  528. "fo-object-repeatable-page-master-reference">repeatable-page-master-reference</a></td>
  529. <td class="basic">Basic</td>
  530. <td align="center"><a href=
  531. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_repeatable-page-master-reference">&sect;6.4.9</a></td>
  532. <td class="yes">yes</td>
  533. <td class="yes">yes</td>
  534. <td class="yes">yes</td>
  535. <td class="yes">yes</td>
  536. <td align="center">&nbsp;</td>
  537. </tr>
  538. <tr>
  539. <td><a name="fo-object-repeatable-page-master-alternatives" id=
  540. "fo-object-repeatable-page-master-alternatives">repeatable-page-master-alternatives</a></td>
  541. <td class="extended">Extended</td>
  542. <td align="center"><a href=
  543. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_repeatable-page-master-alternatives">
  544. &sect;6.4.10</a></td>
  545. <td class="yes">yes</td>
  546. <td class="yes">yes</td>
  547. <td class="yes">yes</td>
  548. <td class="yes">yes</td>
  549. <td align="center">&nbsp;</td>
  550. </tr>
  551. <tr>
  552. <td><a name="fo-object-conditional-page-master-reference" id=
  553. "fo-object-conditional-page-master-reference">conditional-page-master-reference</a></td>
  554. <td class="extended">Extended</td>
  555. <td align="center"><a href=
  556. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_conditional-page-master-reference">
  557. &sect;6.4.11</a></td>
  558. <td class="yes">yes</td>
  559. <td class="yes">yes</td>
  560. <td class="yes">yes</td>
  561. <td class="yes">yes</td>
  562. <td align="center">&nbsp;</td>
  563. </tr>
  564. <tr>
  565. <td><a name="fo-object-simple-page-master" id=
  566. "fo-object-simple-page-master">simple-page-master</a></td>
  567. <td class="basic">Basic</td>
  568. <td align="center"><a href=
  569. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_simple-page-master">&sect;6.4.12</a></td>
  570. <td class="yes">yes</td>
  571. <td class="partial">partial</td>
  572. <td class="partial">partial</td>
  573. <td class="partial">partial</td>
  574. <td align="center">
  575. <ul>
  576. <li>[0.94 and later] The page width may not change among pages of the same page-sequence
  577. unless a forced break is inserted.</li>
  578. </ul>
  579. </td>
  580. </tr>
  581. <tr>
  582. <td><a name="fo-object-region-body" id="fo-object-region-body">region-body</a></td>
  583. <td class="basic">Basic</td>
  584. <td align="center"><a href=
  585. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_region-body">&sect;6.4.13</a></td>
  586. <td class="yes">yes</td>
  587. <td class="yes">yes</td>
  588. <td class="yes">yes</td>
  589. <td class="yes">yes</td>
  590. <td align="center"></td>
  591. </tr>
  592. <tr>
  593. <td><a name="fo-object-region-before" id="fo-object-region-before">region-before</a></td>
  594. <td class="extended">Extended</td>
  595. <td align="center"><a href=
  596. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_region-before">&sect;6.4.14</a></td>
  597. <td class="yes">yes</td>
  598. <td class="yes">yes</td>
  599. <td class="yes">yes</td>
  600. <td class="yes">yes</td>
  601. <td align="center">&nbsp;</td>
  602. </tr>
  603. <tr>
  604. <td><a name="fo-object-region-after" id="fo-object-region-after">region-after</a></td>
  605. <td class="extended">Extended</td>
  606. <td align="center"><a href=
  607. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_region-after">&sect;6.4.15</a></td>
  608. <td class="yes">yes</td>
  609. <td class="yes">yes</td>
  610. <td class="yes">yes</td>
  611. <td class="yes">yes</td>
  612. <td align="center">&nbsp;</td>
  613. </tr>
  614. <tr>
  615. <td><a name="fo-object-region-start" id="fo-object-region-start">region-start</a></td>
  616. <td class="extended">Extended</td>
  617. <td align="center"><a href=
  618. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_region-start">&sect;6.4.16</a></td>
  619. <td class="yes">yes</td>
  620. <td class="yes">yes</td>
  621. <td class="yes">yes</td>
  622. <td class="yes">yes</td>
  623. <td align="center">&nbsp;</td>
  624. </tr>
  625. <tr>
  626. <td><a name="fo-object-region-end" id="fo-object-region-end">region-end</a></td>
  627. <td class="extended">Extended</td>
  628. <td align="center"><a href=
  629. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_region-end">&sect;6.4.17</a></td>
  630. <td class="yes">yes</td>
  631. <td class="yes">yes</td>
  632. <td class="yes">yes</td>
  633. <td class="yes">yes</td>
  634. <td align="center">&nbsp;</td>
  635. </tr>
  636. <tr>
  637. <td><a name="fo-object-flow" id="fo-object-flow">flow</a></td>
  638. <td class="basic">Basic</td>
  639. <td align="center"><a href=
  640. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_flow">&sect;6.4.18</a></td>
  641. <td class="yes">yes</td>
  642. <td class="yes">yes</td>
  643. <td class="yes">yes</td>
  644. <td class="yes">yes</td>
  645. <td align="center">&nbsp;</td>
  646. </tr>
  647. <tr>
  648. <td><a name="fo-object-static-content" id="fo-object-static-content">static-content</a></td>
  649. <td class="extended">Extended</td>
  650. <td align="center"><a href=
  651. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_static-content">&sect;6.4.19</a></td>
  652. <td class="yes">yes</td>
  653. <td class="yes">yes</td>
  654. <td class="yes">yes</td>
  655. <td class="yes">yes</td>
  656. <td align="center">&nbsp;</td>
  657. </tr>
  658. <tr>
  659. <td><a name="fo-object-title" id="fo-object-title">title</a></td>
  660. <td class="extended">Extended</td>
  661. <td align="center"><a href=
  662. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_title">&sect;6.4.20</a></td>
  663. <td class="no">no</td>
  664. <td class="yes">yes</td>
  665. <td class="yes">yes</td>
  666. <td class="yes">yes</td>
  667. <td align="center">&nbsp;</td>
  668. </tr>
  669. <tr>
  670. <td class="category" colspan="8"><a name="fo-object-block-section" id=
  671. "fo-object-block-section">Block Formatting Objects</a> (<a href=
  672. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#section-N12764-Block-level-Formatting-Objects">&sect;6.5</a>)</td>
  673. </tr>
  674. <tr>
  675. <td><a name="fo-object-block" id="fo-object-block">block</a></td>
  676. <td class="basic">Basic</td>
  677. <td align="center"><a href=
  678. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_block">&sect;6.5.2</a></td>
  679. <td class="yes">yes</td>
  680. <td class="yes">yes</td>
  681. <td class="yes">yes</td>
  682. <td class="yes">yes</td>
  683. <td align="center">&nbsp;</td>
  684. </tr>
  685. <tr>
  686. <td><a name="fo-object-block-container" id=
  687. "fo-object-block-container">block-container</a></td>
  688. <td class="extended">Extended</td>
  689. <td align="center"><a href=
  690. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_block-container">&sect;6.5.3</a></td>
  691. <td class="partial">partial</td>
  692. <td class="partial">partial</td>
  693. <td class="partial">partial</td>
  694. <td class="partial">partial</td>
  695. <td align="left">
  696. <ul>
  697. <li>[0.20.5] Only works as direct child of fo:flow.</li>
  698. <li>[0.20.5] For absolute positioning, use 'position="absolute"' (as
  699. 'absolute-position="absolute"' is not implemented), and specify all four of "left",
  700. "top", "width" and "height"</li>
  701. <li>[0.94 and later] No known restrictions.</li>
  702. </ul>
  703. </td>
  704. </tr>
  705. <tr>
  706. <td class="category" colspan="8"><a name="fo-object-inline-section" id=
  707. "fo-object-inline-section">Inline Formatting Objects</a> (<a href=
  708. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#section-N13277-Inline-level-Formatting-Objects">&sect;6.6</a>)</td>
  709. </tr>
  710. <tr>
  711. <td><a name="fo-object-bidi-override" id="fo-object-bidi-override">bidi-override</a></td>
  712. <td class="extended">Extended</td>
  713. <td align="center"><a href=
  714. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_bidi-override">&sect;6.6.2</a></td>
  715. <td class="no">no</td>
  716. <td class="no">no</td>
  717. <td class="no">no</td>
  718. <td class="no">no</td>
  719. <td align="center">&nbsp;</td>
  720. </tr>
  721. <tr>
  722. <td><a name="fo-object-character" id="fo-object-character">character</a></td>
  723. <td class="basic">Basic</td>
  724. <td align="center"><a href=
  725. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_character">&sect;6.6.3</a></td>
  726. <td class="yes">yes</td>
  727. <td class="yes">yes</td>
  728. <td class="yes">yes</td>
  729. <td class="yes">yes</td>
  730. <td align="center">&nbsp;</td>
  731. </tr>
  732. <tr>
  733. <td><a name="fo-object-initial-property-set" id=
  734. "fo-object-initial-property-set">initial-property-set</a></td>
  735. <td class="extended">Extended</td>
  736. <td align="center"><a href=
  737. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_initial-property-set">&sect;6.6.4</a></td>
  738. <td class="no">no</td>
  739. <td class="no">no</td>
  740. <td class="no">no</td>
  741. <td class="no">no</td>
  742. <td align="center">&nbsp;</td>
  743. </tr>
  744. <tr>
  745. <td><a name="fo-object-external-graphic" id=
  746. "fo-object-external-graphic">external-graphic</a></td>
  747. <td class="basic">Basic</td>
  748. <td align="center"><a href=
  749. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_external-graphic">&sect;6.6.5</a></td>
  750. <td class="yes">yes</td>
  751. <td class="yes">yes</td>
  752. <td class="yes">yes</td>
  753. <td class="yes">yes</td>
  754. <td align="center">&nbsp;</td>
  755. </tr>
  756. <tr>
  757. <td><a name="fo-object-instream-foreign-object" id=
  758. "fo-object-instream-foreign-object">instream-foreign-object</a></td>
  759. <td class="extended">Extended</td>
  760. <td align="center"><a href=
  761. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_instream-foreign-object">&sect;6.6.6</a></td>
  762. <td class="yes">yes</td>
  763. <td class="yes">yes</td>
  764. <td class="yes">yes</td>
  765. <td class="yes">yes</td>
  766. <td align="center">
  767. <ul>
  768. <li>Built-in support for SVG only, additional namespaces through optional
  769. extensions.</li>
  770. </ul>
  771. </td>
  772. </tr>
  773. <tr>
  774. <td><a name="fo-object-inline" id="fo-object-inline">inline</a></td>
  775. <td class="basic">Basic</td>
  776. <td align="center"><a href=
  777. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_inline">&sect;6.6.7</a></td>
  778. <td class="yes">yes</td>
  779. <td class="yes">yes</td>
  780. <td class="yes">yes</td>
  781. <td class="yes">yes</td>
  782. <td align="center">&nbsp;</td>
  783. </tr>
  784. <tr>
  785. <td><a name="fo-object-inline-container" id=
  786. "fo-object-inline-container">inline-container</a></td>
  787. <td class="extended">Extended</td>
  788. <td align="center"><a href=
  789. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_inline-container">&sect;6.6.8</a></td>
  790. <td class="no">no</td>
  791. <td class="no">no</td>
  792. <td class="no">no</td>
  793. <td class="no">no</td>
  794. <td align="center">&nbsp;</td>
  795. </tr>
  796. <tr>
  797. <td><a name="fo-object-leader" id="fo-object-leader">leader</a></td>
  798. <td class="basic">Basic</td>
  799. <td align="center"><a href=
  800. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_leader">&sect;6.6.9</a></td>
  801. <td class="partial">partial</td>
  802. <td class="yes">yes</td>
  803. <td class="yes">yes</td>
  804. <td class="yes">yes</td>
  805. <td align="center">&nbsp;</td>
  806. </tr>
  807. <tr>
  808. <td><a name="fo-object-page-number" id="fo-object-page-number">page-number</a></td>
  809. <td class="basic">Basic</td>
  810. <td align="center"><a href=
  811. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_page-number">&sect;6.6.10</a></td>
  812. <td class="yes">yes</td>
  813. <td class="yes">yes</td>
  814. <td class="yes">yes</td>
  815. <td class="yes">yes</td>
  816. <td align="center">&nbsp;</td>
  817. </tr>
  818. <tr>
  819. <td><a name="fo-object-page-number-citation" id=
  820. "fo-object-page-number-citation">page-number-citation</a></td>
  821. <td class="extended">Extended</td>
  822. <td align="center"><a href=
  823. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_page-number-citation">&sect;6.6.11</a></td>
  824. <td class="partial">partial</td>
  825. <td class="partial">partial</td>
  826. <td class="partial">partial</td>
  827. <td class="partial">partial</td>
  828. <td align="left">
  829. <ul>
  830. <li>[0.20.5] Only works for table of contents without any problems. The case where the
  831. page number doesn't fit on a line isn't handled, and any text on the same line and after
  832. the page-number might not appear exactly where you want it to.</li>
  833. <li>[0.94 and later] After the page number is known, no relayout is performed. The
  834. appearance may be suboptimal depending on the use case.</li>
  835. </ul>
  836. </td>
  837. </tr>
  838. <tr>
  839. <td class="category" colspan="8"><a name="fo-object-table-section" id=
  840. "fo-object-table-section">Table Formatting Objects</a> (<a href=
  841. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#section-N15442-Formatting-Objects-for-Tables">&sect;6.7</a>)</td>
  842. </tr>
  843. <tr>
  844. <td><a name="fo-object-table-and-caption" id=
  845. "fo-object-table-and-caption">table-and-caption</a></td>
  846. <td class="basic">Basic</td>
  847. <td align="center"><a href=
  848. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_table-and-caption">&sect;6.7.2</a></td>
  849. <td class="no">no</td>
  850. <td class="no">no</td>
  851. <td class="no">no</td>
  852. <td class="no">no</td>
  853. <td align="center">&nbsp;</td>
  854. </tr>
  855. <tr>
  856. <td><a name="fo-object-table" id="fo-object-table">table</a></td>
  857. <td class="basic">Basic</td>
  858. <td align="center"><a href=
  859. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_table">&sect;6.7.3</a></td>
  860. <td class="partial">partial</td>
  861. <td class="partial">partial</td>
  862. <td class="partial">partial</td>
  863. <td class="partial">partial</td>
  864. <td align="left">
  865. <ul>
  866. <li>[0.20.5] Only border-collapse="separate"</li>
  867. <li>[All] No support for auto layout yet</li>
  868. </ul>
  869. </td>
  870. </tr>
  871. <tr>
  872. <td><a name="fo-object-table-column" id="fo-object-table-column">table-column</a></td>
  873. <td class="basic">Basic</td>
  874. <td align="center"><a href=
  875. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_table-column">&sect;6.7.4</a></td>
  876. <td class="partial">partial</td>
  877. <td class="yes">yes</td>
  878. <td class="yes">yes</td>
  879. <td class="yes">yes</td>
  880. <td align="left">
  881. <ul>
  882. <li>[0.20.5] You must explicitly specify column widths.</li>
  883. </ul>
  884. </td>
  885. </tr>
  886. <tr>
  887. <td><a name="fo-object-table-caption" id="fo-object-table-caption">table-caption</a></td>
  888. <td class="extended">Extended</td>
  889. <td align="center"><a href=
  890. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_table-caption">&sect;6.7.5</a></td>
  891. <td class="no">no</td>
  892. <td class="no">no</td>
  893. <td class="no">no</td>
  894. <td class="no">no</td>
  895. <td align="center">&nbsp;</td>
  896. </tr>
  897. <tr>
  898. <td><a name="fo-object-table-header" id="fo-object-table-header">table-header</a></td>
  899. <td class="basic">Basic</td>
  900. <td align="center"><a href=
  901. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_table-header">&sect;6.7.6</a></td>
  902. <td class="yes">yes</td>
  903. <td class="yes">yes</td>
  904. <td class="yes">yes</td>
  905. <td class="yes">yes</td>
  906. <td align="center">&nbsp;</td>
  907. </tr>
  908. <tr>
  909. <td><a name="fo-object-table-footer" id="fo-object-table-footer">table-footer</a></td>
  910. <td class="extended">Extended</td>
  911. <td align="center"><a href=
  912. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_table-footer">&sect;6.7.7</a></td>
  913. <td class="yes">yes</td>
  914. <td class="yes">yes</td>
  915. <td class="yes">yes</td>
  916. <td class="yes">yes</td>
  917. <td align="center">&nbsp;</td>
  918. </tr>
  919. <tr>
  920. <td><a name="fo-object-table-body" id="fo-object-table-body">table-body</a></td>
  921. <td class="basic">Basic</td>
  922. <td align="center"><a href=
  923. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_table-body">&sect;6.7.8</a></td>
  924. <td class="yes">yes</td>
  925. <td class="yes">yes</td>
  926. <td class="yes">yes</td>
  927. <td class="yes">yes</td>
  928. <td align="center">&nbsp;</td>
  929. </tr>
  930. <tr>
  931. <td><a name="fo-object-table-row" id="fo-object-table-row">table-row</a></td>
  932. <td class="basic">Basic</td>
  933. <td align="center"><a href=
  934. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_table-row">&sect;6.7.9</a></td>
  935. <td class="yes">yes</td>
  936. <td class="yes">yes</td>
  937. <td class="yes">yes</td>
  938. <td class="yes">yes</td>
  939. <td align="center">&nbsp;</td>
  940. </tr>
  941. <tr>
  942. <td><a name="fo-object-table-cell" id="fo-object-table-cell">table-cell</a></td>
  943. <td class="basic">Basic</td>
  944. <td align="center"><a href=
  945. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_table-cell">&sect;6.7.10</a></td>
  946. <td class="partial">partial</td>
  947. <td class="yes">yes</td>
  948. <td class="yes">yes</td>
  949. <td class="yes">yes</td>
  950. <td align="left">&nbsp;</td>
  951. </tr>
  952. <tr>
  953. <td class="category" colspan="8"><a name="fo-object-list-section" id=
  954. "fo-object-list-section">List Formatting Objects</a> (<a href=
  955. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#section-N17076-Formatting-Objects-for-Lists">&sect;6.8</a>)</td>
  956. </tr>
  957. <tr>
  958. <td><a name="fo-object-list-block" id="fo-object-list-block">list-block</a></td>
  959. <td class="basic">Basic</td>
  960. <td align="center"><a href=
  961. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_list-block">&sect;6.8.2</a></td>
  962. <td class="yes">yes</td>
  963. <td class="yes">yes</td>
  964. <td class="yes">yes</td>
  965. <td class="yes">yes</td>
  966. <td align="center">&nbsp;</td>
  967. </tr>
  968. <tr>
  969. <td><a name="fo-object-list-item" id="fo-object-list-item">list-item</a></td>
  970. <td class="basic">Basic</td>
  971. <td align="center"><a href=
  972. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_list-item">&sect;6.8.3</a></td>
  973. <td class="yes">yes</td>
  974. <td class="yes">yes</td>
  975. <td class="yes">yes</td>
  976. <td class="yes">yes</td>
  977. <td align="center">&nbsp;</td>
  978. </tr>
  979. <tr>
  980. <td><a name="fo-object-list-item-body" id="fo-object-list-item-body">list-item-body</a></td>
  981. <td class="basic">Basic</td>
  982. <td align="center"><a href=
  983. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_list-item-body">&sect;6.8.4</a></td>
  984. <td class="yes">yes</td>
  985. <td class="yes">yes</td>
  986. <td class="yes">yes</td>
  987. <td class="yes">yes</td>
  988. <td align="center">&nbsp;</td>
  989. </tr>
  990. <tr>
  991. <td><a name="fo-object-list-item-label" id=
  992. "fo-object-list-item-label">list-item-label</a></td>
  993. <td class="extended">Extended</td>
  994. <td align="center"><a href=
  995. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_list-item-label">&sect;6.8.5</a></td>
  996. <td class="yes">yes</td>
  997. <td class="yes">yes</td>
  998. <td class="yes">yes</td>
  999. <td class="yes">yes</td>
  1000. <td align="center">&nbsp;</td>
  1001. </tr>
  1002. <tr>
  1003. <td class="category" colspan="8"><a name="fo-object-link-section" id=
  1004. "fo-object-link-section">Link and Multi Formatting Objects</a> (<a href=
  1005. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#section-N17805-Dynamic-Effects:-Link-and-Multi-Formatting-Objects">&sect;6.9</a>)</td>
  1006. </tr>
  1007. <tr>
  1008. <td><a name="fo-object-basic-link" id="fo-object-basic-link">basic-link</a></td>
  1009. <td class="extended">Extended</td>
  1010. <td align="center"><a href=
  1011. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_basic-link">&sect;6.9.2</a></td>
  1012. <td class="yes">yes</td>
  1013. <td class="yes">yes</td>
  1014. <td class="yes">yes</td>
  1015. <td class="yes">yes</td>
  1016. <td align="left">
  1017. <ul>
  1018. <li>both internal and external supported</li>
  1019. </ul>
  1020. </td>
  1021. </tr>
  1022. <tr>
  1023. <td><a name="fo-object-multi-switch" id="fo-object-multi-switch">multi-switch</a></td>
  1024. <td class="extended">Extended</td>
  1025. <td align="center"><a href=
  1026. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_multi-switch">&sect;6.9.3</a></td>
  1027. <td class="no">no</td>
  1028. <td class="no">no</td>
  1029. <td class="no">no</td>
  1030. <td class="no">no</td>
  1031. <td align="center">&nbsp;</td>
  1032. </tr>
  1033. <tr>
  1034. <td><a name="fo-object-multi-case" id="fo-object-multi-case">multi-case</a></td>
  1035. <td class="basic">Basic</td>
  1036. <td align="center"><a href=
  1037. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_multi-case">&sect;6.9.4</a></td>
  1038. <td class="no">no</td>
  1039. <td class="no">no</td>
  1040. <td class="no">no</td>
  1041. <td class="no">no</td>
  1042. <td align="center">&nbsp;</td>
  1043. </tr>
  1044. <tr>
  1045. <td><a name="fo-object-multi-toggle" id="fo-object-multi-toggle">multi-toggle</a></td>
  1046. <td class="extended">Extended</td>
  1047. <td align="center"><a href=
  1048. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_multi-toggle">&sect;6.9.5</a></td>
  1049. <td class="no">no</td>
  1050. <td class="no">no</td>
  1051. <td class="no">no</td>
  1052. <td class="no">no</td>
  1053. <td align="center">&nbsp;</td>
  1054. </tr>
  1055. <tr>
  1056. <td><a name="fo-object-multi-properties" id=
  1057. "fo-object-multi-properties">multi-properties</a></td>
  1058. <td class="extended">Extended</td>
  1059. <td align="center"><a href=
  1060. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_multi-properties">&sect;6.9.6</a></td>
  1061. <td class="no">no</td>
  1062. <td class="no">no</td>
  1063. <td class="no">no</td>
  1064. <td class="no">no</td>
  1065. <td align="center">&nbsp;</td>
  1066. </tr>
  1067. <tr>
  1068. <td><a name="fo-object-multi-property-set" id=
  1069. "fo-object-multi-property-set">multi-property-set</a></td>
  1070. <td class="extended">Extended</td>
  1071. <td align="center"><a href=
  1072. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_multi-property-set">&sect;6.9.7</a></td>
  1073. <td class="no">no</td>
  1074. <td class="no">no</td>
  1075. <td class="no">no</td>
  1076. <td class="no">no</td>
  1077. <td align="center">&nbsp;</td>
  1078. </tr>
  1079. <tr>
  1080. <td class="category" colspan="8"><a name="fo-object-bookmarks-section" id=
  1081. "fo-object-bookmarks-section">Formatting Objects for Bookmarks</a> (<a href=
  1082. "http://www.w3.org/TR/xsl11/#d0e14206">&sect;6.11 in XSL 1.1 WD</a>)</td>
  1083. </tr>
  1084. <tr>
  1085. <td><a name="fo-object-bookmark-tree" id="fo-object-bookmark-tree">bookmark-tree</a> (since
  1086. XSL 1.1)</td>
  1087. <td class="extended">Extended</td>
  1088. <td align="center"><a href="http://www.w3.org/TR/xsl11/#fo_bookmark-tree">&sect;6.11.1 in XSL
  1089. 1.1 WD</a></td>
  1090. <td class="no">no</td>
  1091. <td class="yes">yes</td>
  1092. <td class="yes">yes</td>
  1093. <td class="yes">yes</td>
  1094. <td align="left">
  1095. <ul>
  1096. <li>[0.20.5] Uses the proprietary fox:outline extension.</li>
  1097. </ul>
  1098. </td>
  1099. </tr>
  1100. <tr>
  1101. <td><a name="fo-object-bookmark" id="fo-object-bookmark">bookmark</a> (since XSL 1.1)</td>
  1102. <td class="extended">Extended</td>
  1103. <td align="center"><a href="http://www.w3.org/TR/xsl11/#fo_bookmark">&sect;6.11.2 in XSL 1.1
  1104. WD</a></td>
  1105. <td class="no">no</td>
  1106. <td class="yes">yes</td>
  1107. <td class="yes">yes</td>
  1108. <td class="yes">yes</td>
  1109. <td align="left">
  1110. <ul>
  1111. <li>[0.20.5] Uses the proprietary fox:outline extension.</li>
  1112. </ul>
  1113. </td>
  1114. </tr>
  1115. <tr>
  1116. <td><a name="fo-object-bookmark-title" id="fo-object-bookmark-title">bookmark-title</a>
  1117. (since XSL 1.1)</td>
  1118. <td class="extended">Extended</td>
  1119. <td align="center"><a href="http://www.w3.org/TR/xsl11/#fo_bookmark-title">&sect;6.11.3 in
  1120. XSL 1.1 WD</a></td>
  1121. <td class="no">no</td>
  1122. <td class="partial">partial</td>
  1123. <td class="partial">partial</td>
  1124. <td class="partial">partial</td>
  1125. <td align="left">
  1126. <ul>
  1127. <li>[0.20.5] Uses the proprietary fox:outline extension.</li>
  1128. <li>[0.94 and later] color, font-style and font-weight are not supported, yet.</li>
  1129. </ul>
  1130. </td>
  1131. </tr>
  1132. <tr>
  1133. <td class="category" colspan="8"><a name="fo-object-outofline-section" id=
  1134. "fo-object-outofline-section">Out-of-line Formatting Objects</a> (<a href=
  1135. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#section-N18509-Out-of-Line-Formatting-Objects">&sect;6.10</a>)</td>
  1136. </tr>
  1137. <tr>
  1138. <td><a name="fo-object-float" id="fo-object-float">float</a></td>
  1139. <td class="extended">Extended</td>
  1140. <td align="center"><a href=
  1141. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_float">&sect;6.10.2</a></td>
  1142. <td class="no">no</td>
  1143. <td class="no">no</td>
  1144. <td class="no">no</td>
  1145. <td class="no">no</td>
  1146. <td align="center">&nbsp;</td>
  1147. </tr>
  1148. <tr>
  1149. <td><a name="fo-object-footnote" id="fo-object-footnote">footnote</a></td>
  1150. <td class="extended">Extended</td>
  1151. <td align="center"><a href=
  1152. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_footnote">&sect;6.10.3</a></td>
  1153. <td class="yes">yes</td>
  1154. <td class="partial">partial</td>
  1155. <td class="partial">partial</td>
  1156. <td class="partial">partial</td>
  1157. <td align="left">
  1158. <ul>
  1159. <li>[0.20.5] Footnotes sometimes overlap with the main content</li>
  1160. <li>[0.94 and later] Restrictions with multi-column documents.</li>
  1161. </ul>
  1162. </td>
  1163. </tr>
  1164. <tr>
  1165. <td><a name="fo-object-footnote-body" id="fo-object-footnote-body">footnote-body</a></td>
  1166. <td class="extended">Extended</td>
  1167. <td align="center"><a href=
  1168. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_footnote-body">&sect;6.10.4</a></td>
  1169. <td class="yes">yes</td>
  1170. <td class="yes">yes</td>
  1171. <td class="yes">yes</td>
  1172. <td class="yes">yes</td>
  1173. <td align="center">&nbsp;</td>
  1174. </tr>
  1175. <tr>
  1176. <td class="category" colspan="8"><a name="fo-object-other-section" id=
  1177. "fo-object-other-section">Other Formatting Objects</a> (<a href=
  1178. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#section-N19019-Other-Formatting-Objects">&sect;6.11</a>)</td>
  1179. </tr>
  1180. <tr>
  1181. <td><a name="fo-object-wrapper" id="fo-object-wrapper">wrapper</a></td>
  1182. <td class="basic">Basic</td>
  1183. <td align="center"><a href=
  1184. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_wrapper">&sect;6.11.2</a></td>
  1185. <td class="yes">yes</td>
  1186. <td class="partial">partial</td>
  1187. <td class="partial">partial</td>
  1188. <td class="yes">yes</td>
  1189. <td align="left">
  1190. <ul>
  1191. <li>[0.95] Only works as expected with inline-level content.</li>
  1192. </ul>
  1193. </td>
  1194. </tr>
  1195. <tr>
  1196. <td><a name="fo-object-marker" id="fo-object-marker">marker</a></td>
  1197. <td class="extended">Extended</td>
  1198. <td align="center"><a href=
  1199. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_marker">&sect;6.11.3</a></td>
  1200. <td class="yes">yes</td>
  1201. <td class="yes">yes</td>
  1202. <td class="yes">yes</td>
  1203. <td class="yes">yes</td>
  1204. <td align="center">&nbsp;</td>
  1205. </tr>
  1206. <tr>
  1207. <td><a name="fo-object-retrieve-marker" id=
  1208. "fo-object-retrieve-marker">retrieve-marker</a></td>
  1209. <td class="extended">Extended</td>
  1210. <td align="center"><a href=
  1211. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice6.html#fo_retrieve-marker">&sect;6.11.4</a></td>
  1212. <td class="yes">yes</td>
  1213. <td class="yes">yes</td>
  1214. <td class="yes">yes</td>
  1215. <td class="yes">yes</td>
  1216. <td align="center">&nbsp;</td>
  1217. </tr>
  1218. </table>
  1219. <h1><a name="fo-property-section" id="fo-property-section">XSL-FO Property Support Table</a>
  1220. (<a href="http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#pr-section">&sect;7</a>)</h1>
  1221. <p>The following is a summary of FOP's current support for the standard XSL-FO properties.</p>
  1222. <table border="1">
  1223. <tr>
  1224. <th rowspan="2">Property Name</th>
  1225. <th rowspan="2" align="center">XSL-FO Conformance Level</th>
  1226. <th rowspan="2" align="center">Citation</th>
  1227. <th colspan="4" align="center">Support&nbsp;in&nbsp;FOP</th>
  1228. <th rowspan="2">Comments</th>
  1229. </tr>
  1230. <tr>
  1231. <th align="center">0.20.5 (ancient)</th>
  1232. <th align="center">0.94 (stable)</th>
  1233. <th align="center">0.95 (stable)</th>
  1234. <th align="center">develop- ment</th>
  1235. </tr>
  1236. <tr>
  1237. <td class="category" colspan="8"><a name="fo-property-commonaccess-section" id=
  1238. "fo-property-commonaccess-section">Common Accessibility Properties</a> (<a href=
  1239. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#common-accessibility-properties">&sect;7.4</a>)</td>
  1240. </tr>
  1241. <tr>
  1242. <td><a name="fo-property-source-document" id=
  1243. "fo-property-source-document">source-document</a></td>
  1244. <td class="basic">Basic</td>
  1245. <td align="center"><a href=
  1246. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#source-document">&sect;7.4.1</a></td>
  1247. <td class="na">na</td>
  1248. <td class="na">na</td>
  1249. <td class="na">na</td>
  1250. <td class="na">na</td>
  1251. <td align="center">&nbsp;</td>
  1252. </tr>
  1253. <tr>
  1254. <td><a name="fo-property-role" id="fo-property-role">role</a></td>
  1255. <td class="basic">Basic</td>
  1256. <td align="center"><a href=
  1257. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#role">&sect;7.4.2</a></td>
  1258. <td class="na">na</td>
  1259. <td class="na">na</td>
  1260. <td class="na">na</td>
  1261. <td class="na">na</td>
  1262. <td align="center">&nbsp;</td>
  1263. </tr>
  1264. <tr>
  1265. <td class="category" colspan="8"><a name="fo-property-commonabspos-section" id=
  1266. "fo-property-commonabspos-section">Common Absolute Position Properties</a> (<a href=
  1267. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#common-absolute-position-properties">&sect;7.5</a>)</td>
  1268. </tr>
  1269. <tr>
  1270. <td><a name="fo-property-absolute-position" id=
  1271. "fo-property-absolute-position">absolute-position</a></td>
  1272. <td class="complete">Complete</td>
  1273. <td align="center"><a href=
  1274. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#absolute-position">&sect;7.5.1</a></td>
  1275. <td class="no">no</td>
  1276. <td class="yes">yes</td>
  1277. <td class="yes">yes</td>
  1278. <td class="yes">yes</td>
  1279. <td align="left">
  1280. <ul>
  1281. <li>[0.20.5] Use shorthand position="absolute" as a workaround.</li>
  1282. <li>[0.94 and later] No restrictions. The 0.20.5 work-around is not supported.</li>
  1283. </ul>
  1284. </td>
  1285. </tr>
  1286. <tr>
  1287. <td><a name="fo-property-top" id="fo-property-top">top</a></td>
  1288. <td class="extended">Extended</td>
  1289. <td align="center"><a href=
  1290. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#top">&sect;7.5.2</a></td>
  1291. <td class="yes">yes</td>
  1292. <td class="yes">yes</td>
  1293. <td class="yes">yes</td>
  1294. <td class="yes">yes</td>
  1295. <td align="center">&nbsp;</td>
  1296. </tr>
  1297. <tr>
  1298. <td><a name="fo-property-right" id="fo-property-right">right</a></td>
  1299. <td class="extended">Extended</td>
  1300. <td align="center"><a href=
  1301. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#right">&sect;7.5.3</a></td>
  1302. <td class="yes">yes</td>
  1303. <td class="yes">yes</td>
  1304. <td class="yes">yes</td>
  1305. <td class="yes">yes</td>
  1306. <td align="center">&nbsp;</td>
  1307. </tr>
  1308. <tr>
  1309. <td><a name="fo-property-bottom" id="fo-property-bottom">bottom</a></td>
  1310. <td class="extended">Extended</td>
  1311. <td align="center"><a href=
  1312. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#bottom">&sect;7.5.4</a></td>
  1313. <td class="yes">yes</td>
  1314. <td class="yes">yes</td>
  1315. <td class="yes">yes</td>
  1316. <td class="yes">yes</td>
  1317. <td align="center">&nbsp;</td>
  1318. </tr>
  1319. <tr>
  1320. <td><a name="fo-property-left" id="fo-property-left">left</a></td>
  1321. <td class="extended">Extended</td>
  1322. <td align="center"><a href=
  1323. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#left">&sect;7.5.5</a></td>
  1324. <td class="yes">yes</td>
  1325. <td class="yes">yes</td>
  1326. <td class="yes">yes</td>
  1327. <td class="yes">yes</td>
  1328. <td align="center">&nbsp;</td>
  1329. </tr>
  1330. <tr>
  1331. <td class="category" colspan="8"><a name="fo-property-commonaural-section" id=
  1332. "fo-property-commonaural-section">Common Aural Properties</a> (<a href=
  1333. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#common-aural-properties">&sect;7.6</a>)</td>
  1334. </tr>
  1335. <tr>
  1336. <td><a name="fo-property-azimuth" id="fo-property-azimuth">azimuth</a></td>
  1337. <td class="basic">Basic</td>
  1338. <td align="center"><a href=
  1339. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#azimuth">&sect;7.6.1</a></td>
  1340. <td class="na">na</td>
  1341. <td class="na">na</td>
  1342. <td class="na">na</td>
  1343. <td class="na">na</td>
  1344. <td align="center">&nbsp;</td>
  1345. </tr>
  1346. <tr>
  1347. <td><a name="fo-property-cue-after" id="fo-property-cue-after">cue-after</a></td>
  1348. <td class="basic">Basic</td>
  1349. <td align="center"><a href=
  1350. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#cue-after">&sect;7.6.2</a></td>
  1351. <td class="na">na</td>
  1352. <td class="na">na</td>
  1353. <td class="na">na</td>
  1354. <td class="na">na</td>
  1355. <td align="center">&nbsp;</td>
  1356. </tr>
  1357. <tr>
  1358. <td><a name="fo-property-cue-before" id="fo-property-cue-before">cue-before</a></td>
  1359. <td class="basic">Basic</td>
  1360. <td align="center"><a href=
  1361. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#cue-before">&sect;7.6.3</a></td>
  1362. <td class="na">na</td>
  1363. <td class="na">na</td>
  1364. <td class="na">na</td>
  1365. <td class="na">na</td>
  1366. <td align="center">&nbsp;</td>
  1367. </tr>
  1368. <tr>
  1369. <td><a name="fo-property-elevation" id="fo-property-elevation">elevation</a></td>
  1370. <td class="basic">Basic</td>
  1371. <td align="center"><a href=
  1372. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#elevation">&sect;7.6.4</a></td>
  1373. <td class="na">na</td>
  1374. <td class="na">na</td>
  1375. <td class="na">na</td>
  1376. <td class="na">na</td>
  1377. <td align="center">&nbsp;</td>
  1378. </tr>
  1379. <tr>
  1380. <td><a name="fo-property-pause-after" id="fo-property-pause-after">pause-after</a></td>
  1381. <td class="basic">Basic</td>
  1382. <td align="center"><a href=
  1383. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#pause-after">&sect;7.6.5</a></td>
  1384. <td class="na">na</td>
  1385. <td class="na">na</td>
  1386. <td class="na">na</td>
  1387. <td class="na">na</td>
  1388. <td align="center">&nbsp;</td>
  1389. </tr>
  1390. <tr>
  1391. <td><a name="fo-property-pause-before" id="fo-property-pause-before">pause-before</a></td>
  1392. <td class="basic">Basic</td>
  1393. <td align="center"><a href=
  1394. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#pause-before">&sect;7.6.6</a></td>
  1395. <td class="na">na</td>
  1396. <td class="na">na</td>
  1397. <td class="na">na</td>
  1398. <td class="na">na</td>
  1399. <td align="center">&nbsp;</td>
  1400. </tr>
  1401. <tr>
  1402. <td><a name="fo-property-pitch" id="fo-property-pitch">pitch</a></td>
  1403. <td class="basic">Basic</td>
  1404. <td align="center"><a href=
  1405. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#pitch">&sect;7.6.7</a></td>
  1406. <td class="na">na</td>
  1407. <td class="na">na</td>
  1408. <td class="na">na</td>
  1409. <td class="na">na</td>
  1410. <td align="center">&nbsp;</td>
  1411. </tr>
  1412. <tr>
  1413. <td><a name="fo-property-pitch-range" id="fo-property-pitch-range">pitch-range</a></td>
  1414. <td class="basic">Basic</td>
  1415. <td align="center"><a href=
  1416. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#pitch-range">&sect;7.6.8</a></td>
  1417. <td class="na">na</td>
  1418. <td class="na">na</td>
  1419. <td class="na">na</td>
  1420. <td class="na">na</td>
  1421. <td align="center">&nbsp;</td>
  1422. </tr>
  1423. <tr>
  1424. <td><a name="fo-property-play-during" id="fo-property-play-during">play-during</a></td>
  1425. <td class="basic">Basic</td>
  1426. <td align="center"><a href=
  1427. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#play-during">&sect;7.6.9</a></td>
  1428. <td class="na">na</td>
  1429. <td class="na">na</td>
  1430. <td class="na">na</td>
  1431. <td class="na">na</td>
  1432. <td align="center">&nbsp;</td>
  1433. </tr>
  1434. <tr>
  1435. <td><a name="fo-property-richness" id="fo-property-richness">richness</a></td>
  1436. <td class="basic">Basic</td>
  1437. <td align="center"><a href=
  1438. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#richness">&sect;7.6.10</a></td>
  1439. <td class="na">na</td>
  1440. <td class="na">na</td>
  1441. <td class="na">na</td>
  1442. <td class="na">na</td>
  1443. <td align="center">&nbsp;</td>
  1444. </tr>
  1445. <tr>
  1446. <td><a name="fo-property-speak" id="fo-property-speak">speak</a></td>
  1447. <td class="basic">Basic</td>
  1448. <td align="center"><a href=
  1449. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#speak">&sect;7.6.11</a></td>
  1450. <td class="na">na</td>
  1451. <td class="na">na</td>
  1452. <td class="na">na</td>
  1453. <td class="na">na</td>
  1454. <td align="center">&nbsp;</td>
  1455. </tr>
  1456. <tr>
  1457. <td><a name="fo-property-speak-header" id="fo-property-speak-header">speak-header</a></td>
  1458. <td class="basic">Basic</td>
  1459. <td align="center"><a href=
  1460. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#speak-header">&sect;7.6.12</a></td>
  1461. <td class="na">na</td>
  1462. <td class="na">na</td>
  1463. <td class="na">na</td>
  1464. <td class="na">na</td>
  1465. <td align="center">&nbsp;</td>
  1466. </tr>
  1467. <tr>
  1468. <td><a name="fo-property-speak-numeral" id="fo-property-speak-numeral">speak-numeral</a></td>
  1469. <td class="basic">Basic</td>
  1470. <td align="center"><a href=
  1471. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#speak-numeral">&sect;7.6.13</a></td>
  1472. <td class="na">na</td>
  1473. <td class="na">na</td>
  1474. <td class="na">na</td>
  1475. <td class="na">na</td>
  1476. <td align="center">&nbsp;</td>
  1477. </tr>
  1478. <tr>
  1479. <td><a name="fo-property-speak-punctuation" id=
  1480. "fo-property-speak-punctuation">speak-punctuation</a></td>
  1481. <td class="basic">Basic</td>
  1482. <td align="center"><a href=
  1483. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#speak-punctuation">&sect;7.6.14</a></td>
  1484. <td class="na">na</td>
  1485. <td class="na">na</td>
  1486. <td class="na">na</td>
  1487. <td class="na">na</td>
  1488. <td align="center">&nbsp;</td>
  1489. </tr>
  1490. <tr>
  1491. <td><a name="fo-property-speech-rate" id="fo-property-speech-rate">speech-rate</a></td>
  1492. <td class="basic">Basic</td>
  1493. <td align="center"><a href=
  1494. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#speech-rate">&sect;7.6.15</a></td>
  1495. <td class="na">na</td>
  1496. <td class="na">na</td>
  1497. <td class="na">na</td>
  1498. <td class="na">na</td>
  1499. <td align="center">&nbsp;</td>
  1500. </tr>
  1501. <tr>
  1502. <td><a name="fo-property-stress" id="fo-property-stress">stress</a></td>
  1503. <td class="basic">Basic</td>
  1504. <td align="center"><a href=
  1505. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#stress">&sect;7.6.16</a></td>
  1506. <td class="na">na</td>
  1507. <td class="na">na</td>
  1508. <td class="na">na</td>
  1509. <td class="na">na</td>
  1510. <td align="center">&nbsp;</td>
  1511. </tr>
  1512. <tr>
  1513. <td><a name="fo-property-voice-family" id="fo-property-voice-family">voice-family</a></td>
  1514. <td class="basic">Basic</td>
  1515. <td align="center"><a href=
  1516. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#voice-family">&sect;7.6.17</a></td>
  1517. <td class="na">na</td>
  1518. <td class="na">na</td>
  1519. <td class="na">na</td>
  1520. <td class="na">na</td>
  1521. <td align="center">&nbsp;</td>
  1522. </tr>
  1523. <tr>
  1524. <td><a name="fo-property-volume" id="fo-property-volume">volume</a></td>
  1525. <td class="basic">Basic</td>
  1526. <td align="center"><a href=
  1527. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#volume">&sect;7.6.18</a></td>
  1528. <td class="na">na</td>
  1529. <td class="na">na</td>
  1530. <td class="na">na</td>
  1531. <td class="na">na</td>
  1532. <td align="center">&nbsp;</td>
  1533. </tr>
  1534. <tr>
  1535. <td class="category" colspan="8"><a name="fo-property-commonenv-section" id=
  1536. "fo-property-commonenv-section">Common Border, Padding, and Background Properties</a>
  1537. (<a href=
  1538. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#common-border-padding-and-background-properties">&sect;7.7</a>)</td>
  1539. </tr>
  1540. <tr>
  1541. <td><a name="fo-property-background-attachment" id=
  1542. "fo-property-background-attachment">background-attachment</a></td>
  1543. <td class="extended">Extended</td>
  1544. <td align="center"><a href=
  1545. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#background-attachment">&sect;7.7.1</a></td>
  1546. <td class="no">no</td>
  1547. <td class="no">no</td>
  1548. <td class="no">no</td>
  1549. <td class="no">no</td>
  1550. <td align="center">&nbsp;</td>
  1551. </tr>
  1552. <tr>
  1553. <td><a name="fo-property-background-color" id=
  1554. "fo-property-background-color">background-color</a></td>
  1555. <td class="basic">Basic</td>
  1556. <td align="center"><a href=
  1557. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#background-color">&sect;7.7.2</a></td>
  1558. <td class="yes">yes</td>
  1559. <td class="partial">partial</td>
  1560. <td class="yes">yes</td>
  1561. <td class="yes">yes</td>
  1562. <td align="left">
  1563. <ul>
  1564. <li>[0.94] not yet implemented for table-column, table-body, table-header and
  1565. table-footer.</li>
  1566. </ul>
  1567. </td>
  1568. </tr>
  1569. <tr>
  1570. <td><a name="fo-property-background-image" id=
  1571. "fo-property-background-image">background-image</a></td>
  1572. <td class="extended">Extended</td>
  1573. <td align="center"><a href=
  1574. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#background-image">&sect;7.7.3</a></td>
  1575. <td class="yes">yes</td>
  1576. <td class="partial">partial</td>
  1577. <td class="yes">yes</td>
  1578. <td class="yes">yes</td>
  1579. <td align="left">
  1580. <ul>
  1581. <li>[0.94] not yet implemented for table-column, table-body, table-header and
  1582. table-footer.</li>
  1583. </ul>
  1584. </td>
  1585. </tr>
  1586. <tr>
  1587. <td><a name="fo-property-background-repeat" id=
  1588. "fo-property-background-repeat">background-repeat</a></td>
  1589. <td class="extended">Extended</td>
  1590. <td align="center"><a href=
  1591. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#background-repeat">&sect;7.7.4</a></td>
  1592. <td class="no">no</td>
  1593. <td class="yes">yes</td>
  1594. <td class="yes">yes</td>
  1595. <td class="yes">yes</td>
  1596. <td align="center">&nbsp;</td>
  1597. </tr>
  1598. <tr>
  1599. <td><a name="fo-property-background-position-horizontal" id=
  1600. "fo-property-background-position-horizontal">background-position-horizontal</a></td>
  1601. <td class="extended">Extended</td>
  1602. <td align="center"><a href=
  1603. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#background-position-horizontal">&sect;7.7.5</a></td>
  1604. <td class="no">no</td>
  1605. <td class="partial">partial</td>
  1606. <td class="partial">partial</td>
  1607. <td class="partial">partial</td>
  1608. <td align="center">[0.94 and later] Ignored when background-repeat set to
  1609. "repeat" or "repeat-x"</td>
  1610. </tr>
  1611. <tr>
  1612. <td><a name="fo-property-background-position-vertical" id=
  1613. "fo-property-background-position-vertical">background-position-vertical</a></td>
  1614. <td class="extended">Extended</td>
  1615. <td align="center"><a href=
  1616. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#background-position-vertical">&sect;7.7.6</a></td>
  1617. <td class="no">no</td>
  1618. <td class="partial">partial</td>
  1619. <td class="partial">partial</td>
  1620. <td class="partial">partial</td>
  1621. <td align="center">[0.94 and later] Ignored when background-repeat set to
  1622. "repeat" or "repeat-y"</td>
  1623. </tr>
  1624. <tr>
  1625. <td><a name="fo-property-border-before-color" id=
  1626. "fo-property-border-before-color">border-before-color</a></td>
  1627. <td class="basic">Basic</td>
  1628. <td align="center"><a href=
  1629. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-before-color">&sect;7.7.7</a></td>
  1630. <td class="yes">yes</td>
  1631. <td class="yes">yes</td>
  1632. <td class="yes">yes</td>
  1633. <td class="yes">yes</td>
  1634. <td align="center">&nbsp;</td>
  1635. </tr>
  1636. <tr>
  1637. <td><a name="fo-property-border-before-style" id=
  1638. "fo-property-border-before-style">border-before-style</a></td>
  1639. <td class="basic">Basic</td>
  1640. <td align="center"><a href=
  1641. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-before-style">&sect;7.7.8</a></td>
  1642. <td class="partial">partial</td>
  1643. <td class="yes">yes</td>
  1644. <td class="yes">yes</td>
  1645. <td class="yes">yes</td>
  1646. <td align="left">
  1647. <ul>
  1648. <li>[0.20.5] only "solid" works</li>
  1649. </ul>
  1650. </td>
  1651. </tr>
  1652. <tr>
  1653. <td><a name="fo-property-border-before-width" id=
  1654. "fo-property-border-before-width">border-before-width</a></td>
  1655. <td class="basic">Basic</td>
  1656. <td align="center"><a href=
  1657. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-before-width">&sect;7.7.9</a></td>
  1658. <td class="yes">yes</td>
  1659. <td class="partial">partial</td>
  1660. <td class="yes">yes</td>
  1661. <td class="yes">yes</td>
  1662. <td align="center">
  1663. <ul>
  1664. <li>[0.94] .conditionality not supported on fo:table-cell</li>
  1665. </ul>
  1666. </td>
  1667. </tr>
  1668. <tr>
  1669. <td><a name="fo-property-border-after-color" id=
  1670. "fo-property-border-after-color">border-after-color</a></td>
  1671. <td class="basic">Basic</td>
  1672. <td align="center"><a href=
  1673. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-after-color">&sect;7.7.10</a></td>
  1674. <td class="yes">yes</td>
  1675. <td class="yes">yes</td>
  1676. <td class="yes">yes</td>
  1677. <td class="yes">yes</td>
  1678. <td align="center">&nbsp;</td>
  1679. </tr>
  1680. <tr>
  1681. <td><a name="fo-property-border-after-style" id=
  1682. "fo-property-border-after-style">border-after-style</a></td>
  1683. <td class="basic">Basic</td>
  1684. <td align="center"><a href=
  1685. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-after-style">&sect;7.7.11</a></td>
  1686. <td class="partial">partial</td>
  1687. <td class="yes">yes</td>
  1688. <td class="yes">yes</td>
  1689. <td class="yes">yes</td>
  1690. <td align="left">
  1691. <ul>
  1692. <li>[0.20.5] only "solid" works</li>
  1693. </ul>
  1694. </td>
  1695. </tr>
  1696. <tr>
  1697. <td><a name="fo-property-border-after-width" id=
  1698. "fo-property-border-after-width">border-after-width</a></td>
  1699. <td class="basic">Basic</td>
  1700. <td align="center"><a href=
  1701. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-after-width">&sect;7.7.12</a></td>
  1702. <td class="yes">yes</td>
  1703. <td class="partial">partial</td>
  1704. <td class="yes">yes</td>
  1705. <td class="yes">yes</td>
  1706. <td align="center">
  1707. <ul>
  1708. <li>[0.94] .conditionality not supported on fo:table-cell</li>
  1709. </ul>
  1710. </td>
  1711. </tr>
  1712. <tr>
  1713. <td><a name="fo-property-border-start-color" id=
  1714. "fo-property-border-start-color">border-start-color</a></td>
  1715. <td class="basic">Basic</td>
  1716. <td align="center"><a href=
  1717. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-start-color">&sect;7.7.13</a></td>
  1718. <td class="yes">yes</td>
  1719. <td class="yes">yes</td>
  1720. <td class="yes">yes</td>
  1721. <td class="yes">yes</td>
  1722. <td align="center">&nbsp;</td>
  1723. </tr>
  1724. <tr>
  1725. <td><a name="fo-property-border-start-style" id=
  1726. "fo-property-border-start-style">border-start-style</a></td>
  1727. <td class="basic">Basic</td>
  1728. <td align="center"><a href=
  1729. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-start-style">&sect;7.7.14</a></td>
  1730. <td class="partial">partial</td>
  1731. <td class="yes">yes</td>
  1732. <td class="yes">yes</td>
  1733. <td class="yes">yes</td>
  1734. <td align="left">
  1735. <ul>
  1736. <li>[0.20.5] only "solid" works</li>
  1737. </ul>
  1738. </td>
  1739. </tr>
  1740. <tr>
  1741. <td><a name="fo-property-border-start-width" id=
  1742. "fo-property-border-start-width">border-start-width</a></td>
  1743. <td class="basic">Basic</td>
  1744. <td align="center"><a href=
  1745. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-start-width">&sect;7.7.15</a></td>
  1746. <td class="yes">yes</td>
  1747. <td class="yes">yes</td>
  1748. <td class="yes">yes</td>
  1749. <td class="yes">yes</td>
  1750. <td align="center">&nbsp;</td>
  1751. </tr>
  1752. <tr>
  1753. <td><a name="fo-property-border-end-color" id=
  1754. "fo-property-border-end-color">border-end-color</a></td>
  1755. <td class="basic">Basic</td>
  1756. <td align="center"><a href=
  1757. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-end-color">&sect;7.7.16</a></td>
  1758. <td class="yes">yes</td>
  1759. <td class="yes">yes</td>
  1760. <td class="yes">yes</td>
  1761. <td class="yes">yes</td>
  1762. <td align="center">&nbsp;</td>
  1763. </tr>
  1764. <tr>
  1765. <td><a name="fo-property-border-end-style" id=
  1766. "fo-property-border-end-style">border-end-style</a></td>
  1767. <td class="basic">Basic</td>
  1768. <td align="center"><a href=
  1769. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-end-style">&sect;7.7.17</a></td>
  1770. <td class="partial">partial</td>
  1771. <td class="yes">yes</td>
  1772. <td class="yes">yes</td>
  1773. <td class="yes">yes</td>
  1774. <td align="left">
  1775. <ul>
  1776. <li>[0.20.5] only "solid" works</li>
  1777. </ul>
  1778. </td>
  1779. </tr>
  1780. <tr>
  1781. <td><a name="fo-property-border-end-width" id=
  1782. "fo-property-border-end-width">border-end-width</a></td>
  1783. <td class="basic">Basic</td>
  1784. <td align="center"><a href=
  1785. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-end-width">&sect;7.7.18</a></td>
  1786. <td class="yes">yes</td>
  1787. <td class="yes">yes</td>
  1788. <td class="yes">yes</td>
  1789. <td class="yes">yes</td>
  1790. <td align="center">&nbsp;</td>
  1791. </tr>
  1792. <tr>
  1793. <td><a name="fo-property-border-top-color" id=
  1794. "fo-property-border-top-color">border-top-color</a></td>
  1795. <td class="basic">Basic</td>
  1796. <td align="center"><a href=
  1797. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-top-color">&sect;7.7.19</a></td>
  1798. <td class="yes">yes</td>
  1799. <td class="yes">yes</td>
  1800. <td class="yes">yes</td>
  1801. <td class="yes">yes</td>
  1802. <td align="center">&nbsp;</td>
  1803. </tr>
  1804. <tr>
  1805. <td><a name="fo-property-border-top-style" id=
  1806. "fo-property-border-top-style">border-top-style</a></td>
  1807. <td class="basic">Basic</td>
  1808. <td align="center"><a href=
  1809. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-top-style">&sect;7.7.20</a></td>
  1810. <td class="partial">partial</td>
  1811. <td class="yes">yes</td>
  1812. <td class="yes">yes</td>
  1813. <td class="yes">yes</td>
  1814. <td align="left">
  1815. <ul>
  1816. <li>[0.20.5] only "solid" works</li>
  1817. </ul>
  1818. </td>
  1819. </tr>
  1820. <tr>
  1821. <td><a name="fo-property-border-top-width" id=
  1822. "fo-property-border-top-width">border-top-width</a></td>
  1823. <td class="basic">Basic</td>
  1824. <td align="center"><a href=
  1825. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-top-width">&sect;7.7.21</a></td>
  1826. <td class="yes">yes</td>
  1827. <td class="yes">yes</td>
  1828. <td class="yes">yes</td>
  1829. <td class="yes">yes</td>
  1830. <td align="center">&nbsp;</td>
  1831. </tr>
  1832. <tr>
  1833. <td><a name="fo-property-border-bottom-color" id=
  1834. "fo-property-border-bottom-color">border-bottom-color</a></td>
  1835. <td class="basic">Basic</td>
  1836. <td align="center"><a href=
  1837. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-bottom-color">&sect;7.7.22</a></td>
  1838. <td class="yes">yes</td>
  1839. <td class="yes">yes</td>
  1840. <td class="yes">yes</td>
  1841. <td class="yes">yes</td>
  1842. <td align="center">&nbsp;</td>
  1843. </tr>
  1844. <tr>
  1845. <td><a name="fo-property-border-bottom-style" id=
  1846. "fo-property-border-bottom-style">border-bottom-style</a></td>
  1847. <td class="basic">Basic</td>
  1848. <td align="center"><a href=
  1849. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-bottom-style">&sect;7.7.23</a></td>
  1850. <td class="partial">partial</td>
  1851. <td class="yes">yes</td>
  1852. <td class="yes">yes</td>
  1853. <td class="yes">yes</td>
  1854. <td align="left">
  1855. <ul>
  1856. <li>[0.20.5] only "solid" works</li>
  1857. </ul>
  1858. </td>
  1859. </tr>
  1860. <tr>
  1861. <td><a name="fo-property-border-bottom-width" id=
  1862. "fo-property-border-bottom-width">border-bottom-width</a></td>
  1863. <td class="basic">Basic</td>
  1864. <td align="center"><a href=
  1865. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-bottom-width">&sect;7.7.24</a></td>
  1866. <td class="yes">yes</td>
  1867. <td class="yes">yes</td>
  1868. <td class="yes">yes</td>
  1869. <td class="yes">yes</td>
  1870. <td align="center">&nbsp;</td>
  1871. </tr>
  1872. <tr>
  1873. <td><a name="fo-property-border-left-color" id=
  1874. "fo-property-border-left-color">border-left-color</a></td>
  1875. <td class="basic">Basic</td>
  1876. <td align="center"><a href=
  1877. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-left-color">&sect;7.7.25</a></td>
  1878. <td class="yes">yes</td>
  1879. <td class="yes">yes</td>
  1880. <td class="yes">yes</td>
  1881. <td class="yes">yes</td>
  1882. <td align="center">&nbsp;</td>
  1883. </tr>
  1884. <tr>
  1885. <td><a name="fo-property-border-left-style" id=
  1886. "fo-property-border-left-style">border-left-style</a></td>
  1887. <td class="basic">Basic</td>
  1888. <td align="center"><a href=
  1889. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-left-style">&sect;7.7.26</a></td>
  1890. <td class="partial">partial</td>
  1891. <td class="yes">yes</td>
  1892. <td class="yes">yes</td>
  1893. <td class="yes">yes</td>
  1894. <td align="left">
  1895. <ul>
  1896. <li>[0.20.5] only "solid" works</li>
  1897. </ul>
  1898. </td>
  1899. </tr>
  1900. <tr>
  1901. <td><a name="fo-property-border-left-width" id=
  1902. "fo-property-border-left-width">border-left-width</a></td>
  1903. <td class="basic">Basic</td>
  1904. <td align="center"><a href=
  1905. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-left-width">&sect;7.7.27</a></td>
  1906. <td class="yes">yes</td>
  1907. <td class="yes">yes</td>
  1908. <td class="yes">yes</td>
  1909. <td class="yes">yes</td>
  1910. <td align="center">&nbsp;</td>
  1911. </tr>
  1912. <tr>
  1913. <td><a name="fo-property-border-right-color" id=
  1914. "fo-property-border-right-color">border-right-color</a></td>
  1915. <td class="basic">Basic</td>
  1916. <td align="center"><a href=
  1917. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-right-color">&sect;7.7.28</a></td>
  1918. <td class="yes">yes</td>
  1919. <td class="yes">yes</td>
  1920. <td class="yes">yes</td>
  1921. <td class="yes">yes</td>
  1922. <td align="center">&nbsp;</td>
  1923. </tr>
  1924. <tr>
  1925. <td><a name="fo-property-border-right-style" id=
  1926. "fo-property-border-right-style">border-right-style</a></td>
  1927. <td class="basic">Basic</td>
  1928. <td align="center"><a href=
  1929. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-right-style">&sect;7.7.29</a></td>
  1930. <td class="partial">partial</td>
  1931. <td class="yes">yes</td>
  1932. <td class="yes">yes</td>
  1933. <td class="yes">yes</td>
  1934. <td align="left">
  1935. <ul>
  1936. <li>[0.20.5] only "solid" works</li>
  1937. </ul>
  1938. </td>
  1939. </tr>
  1940. <tr>
  1941. <td><a name="fo-property-border-right-width" id=
  1942. "fo-property-border-right-width">border-right-width</a></td>
  1943. <td class="basic">Basic</td>
  1944. <td align="center"><a href=
  1945. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-right-width">&sect;7.7.30</a></td>
  1946. <td class="yes">yes</td>
  1947. <td class="yes">yes</td>
  1948. <td class="yes">yes</td>
  1949. <td class="yes">yes</td>
  1950. <td align="center">&nbsp;</td>
  1951. </tr>
  1952. <tr>
  1953. <td><a name="fo-property-padding-before" id=
  1954. "fo-property-padding-before">padding-before</a></td>
  1955. <td class="basic">Basic</td>
  1956. <td align="center"><a href=
  1957. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#padding-before">&sect;7.7.31</a></td>
  1958. <td class="partial">partial</td>
  1959. <td class="yes">yes</td>
  1960. <td class="yes">yes</td>
  1961. <td class="yes">yes</td>
  1962. <td align="left">
  1963. <ul>
  1964. <li>[0.20.5] only one value allowed</li>
  1965. <li>[0.20.5] only implemented for blocks</li>
  1966. <li>[0.20.5] can't be used to make extra space (use indents + spaces instead)</li>
  1967. <li>[0.20.5] can be used to control how much the background-color extends beyond the
  1968. content rectangle</li>
  1969. </ul>
  1970. </td>
  1971. </tr>
  1972. <tr>
  1973. <td><a name="fo-property-padding-after" id="fo-property-padding-after">padding-after</a></td>
  1974. <td class="basic">Basic</td>
  1975. <td align="center"><a href=
  1976. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#padding-after">&sect;7.7.32</a></td>
  1977. <td class="partial">partial</td>
  1978. <td class="yes">yes</td>
  1979. <td class="yes">yes</td>
  1980. <td class="yes">yes</td>
  1981. <td align="left">
  1982. <ul>
  1983. <li>[0.20.5] same limitations as padding-before</li>
  1984. </ul>
  1985. </td>
  1986. </tr>
  1987. <tr>
  1988. <td><a name="fo-property-padding-start" id="fo-property-padding-start">padding-start</a></td>
  1989. <td class="basic">Basic</td>
  1990. <td align="center"><a href=
  1991. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#padding-start">&sect;7.7.33</a></td>
  1992. <td class="partial">partial</td>
  1993. <td class="yes">yes</td>
  1994. <td class="yes">yes</td>
  1995. <td class="yes">yes</td>
  1996. <td align="left">
  1997. <ul>
  1998. <li>[0.20.5] same limitations as padding-before</li>
  1999. </ul>
  2000. </td>
  2001. </tr>
  2002. <tr>
  2003. <td><a name="fo-property-padding-end" id="fo-property-padding-end">padding-end</a></td>
  2004. <td class="basic">Basic</td>
  2005. <td align="center"><a href=
  2006. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#padding-end">&sect;7.7.34</a></td>
  2007. <td class="partial">partial</td>
  2008. <td class="yes">yes</td>
  2009. <td class="yes">yes</td>
  2010. <td class="yes">yes</td>
  2011. <td align="left">
  2012. <ul>
  2013. <li>[0.20.5] same limitations as padding-before</li>
  2014. </ul>
  2015. </td>
  2016. </tr>
  2017. <tr>
  2018. <td><a name="fo-property-padding-top" id="fo-property-padding-top">padding-top</a></td>
  2019. <td class="basic">Basic</td>
  2020. <td align="center"><a href=
  2021. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#padding-top">&sect;7.7.35</a></td>
  2022. <td class="partial">partial</td>
  2023. <td class="yes">yes</td>
  2024. <td class="yes">yes</td>
  2025. <td class="yes">yes</td>
  2026. <td align="left">
  2027. <ul>
  2028. <li>[0.20.5] same limitations as padding-before</li>
  2029. </ul>
  2030. </td>
  2031. </tr>
  2032. <tr>
  2033. <td><a name="fo-property-padding-bottom" id=
  2034. "fo-property-padding-bottom">padding-bottom</a></td>
  2035. <td class="basic">Basic</td>
  2036. <td align="center"><a href=
  2037. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#padding-bottom">&sect;7.7.36</a></td>
  2038. <td class="partial">partial</td>
  2039. <td class="yes">yes</td>
  2040. <td class="yes">yes</td>
  2041. <td class="yes">yes</td>
  2042. <td align="left">
  2043. <ul>
  2044. <li>[0.20.5] same limitations as padding-before</li>
  2045. </ul>
  2046. </td>
  2047. </tr>
  2048. <tr>
  2049. <td><a name="fo-property-padding-left" id="fo-property-padding-left">padding-left</a></td>
  2050. <td class="basic">Basic</td>
  2051. <td align="center"><a href=
  2052. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#padding-left">&sect;7.7.37</a></td>
  2053. <td class="partial">partial</td>
  2054. <td class="yes">yes</td>
  2055. <td class="yes">yes</td>
  2056. <td class="yes">yes</td>
  2057. <td align="left">
  2058. <ul>
  2059. <li>[0.20.5] same limitations as padding-before</li>
  2060. </ul>
  2061. </td>
  2062. </tr>
  2063. <tr>
  2064. <td><a name="fo-property-padding-right" id="fo-property-padding-right">padding-right</a></td>
  2065. <td class="basic">Basic</td>
  2066. <td align="center"><a href=
  2067. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#padding-right">&sect;7.7.38</a></td>
  2068. <td class="partial">partial</td>
  2069. <td class="yes">yes</td>
  2070. <td class="yes">yes</td>
  2071. <td class="yes">yes</td>
  2072. <td align="left">
  2073. <ul>
  2074. <li>[0.20.5] same limitations as padding-before</li>
  2075. </ul>
  2076. </td>
  2077. </tr>
  2078. <tr>
  2079. <td class="category" colspan="8"><a name="fo-property-commonfont-section" id=
  2080. "fo-property-commonfont-section">Common Font Properties</a> (<a href=
  2081. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#common-font-properties">&sect;7.8</a>)</td>
  2082. </tr>
  2083. <tr>
  2084. <td><a name="fo-property-font-family" id="fo-property-font-family">font-family</a></td>
  2085. <td class="basic">Basic</td>
  2086. <td align="center"><a href=
  2087. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#font-family">&sect;7.8.2</a></td>
  2088. <td class="partial">partial</td>
  2089. <td class="partial">partial</td>
  2090. <td class="partial">partial</td>
  2091. <td class="partial">partial</td>
  2092. <td align="left">
  2093. <ul>
  2094. <li>[0.20.5] font-family lists are not supported, use a single font-family name</li>
  2095. <li>[0.94 and later] font-family lists are allowed but glyph based font selection is not
  2096. supported</li>
  2097. </ul>
  2098. </td>
  2099. </tr>
  2100. <tr>
  2101. <td><a name="fo-property-font-selection-strategy" id=
  2102. "fo-property-font-selection-strategy">font-selection-strategy</a></td>
  2103. <td class="complete">Complete</td>
  2104. <td align="center"><a href=
  2105. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#font-selection-strategy">&sect;7.8.3</a></td>
  2106. <td class="no">no</td>
  2107. <td class="no">no</td>
  2108. <td class="no">no</td>
  2109. <td class="no">no</td>
  2110. <td align="center">&nbsp;</td>
  2111. </tr>
  2112. <tr>
  2113. <td><a name="fo-property-font-size" id="fo-property-font-size">font-size</a></td>
  2114. <td class="basic">Basic</td>
  2115. <td align="center"><a href=
  2116. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#font-size">&sect;7.8.4</a></td>
  2117. <td class="partial">partial</td>
  2118. <td class="yes">yes</td>
  2119. <td class="yes">yes</td>
  2120. <td class="yes">yes</td>
  2121. <td align="left">
  2122. <ul>
  2123. <li>[0.20.5] "smaller" and "larger" not implemented</li>
  2124. </ul>
  2125. </td>
  2126. </tr>
  2127. <tr>
  2128. <td><a name="fo-property-font-stretch" id="fo-property-font-stretch">font-stretch</a></td>
  2129. <td class="extended">Extended</td>
  2130. <td align="center"><a href=
  2131. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#font-stretch">&sect;7.8.5</a></td>
  2132. <td class="no">no</td>
  2133. <td class="no">no</td>
  2134. <td class="no">no</td>
  2135. <td class="no">no</td>
  2136. <td align="center">&nbsp;</td>
  2137. </tr>
  2138. <tr>
  2139. <td><a name="fo-property-font-size-adjust" id=
  2140. "fo-property-font-size-adjust">font-size-adjust</a></td>
  2141. <td class="extended">Extended</td>
  2142. <td align="center"><a href=
  2143. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#font-size-adjust">&sect;7.8.6</a></td>
  2144. <td class="no">no</td>
  2145. <td class="no">no</td>
  2146. <td class="no">no</td>
  2147. <td class="no">no</td>
  2148. <td align="center">&nbsp;</td>
  2149. </tr>
  2150. <tr>
  2151. <td><a name="fo-property-font-style" id="fo-property-font-style">font-style</a></td>
  2152. <td class="basic">Basic</td>
  2153. <td align="center"><a href=
  2154. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#font-style">&sect;7.8.7</a></td>
  2155. <td class="partial">partial</td>
  2156. <td class="yes">yes</td>
  2157. <td class="yes">yes</td>
  2158. <td class="yes">yes</td>
  2159. <td align="left">
  2160. <ul>
  2161. <li>[0.20.5] "normal" is not supported</li>
  2162. </ul>
  2163. </td>
  2164. </tr>
  2165. <tr>
  2166. <td><a name="fo-property-font-variant" id="fo-property-font-variant">font-variant</a></td>
  2167. <td class="basic">Basic</td>
  2168. <td align="center"><a href=
  2169. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#font-variant">&sect;7.8.8</a></td>
  2170. <td class="yes">yes</td>
  2171. <td class="no">no</td>
  2172. <td class="no">no</td>
  2173. <td class="no">no</td>
  2174. <td align="center">&nbsp;</td>
  2175. </tr>
  2176. <tr>
  2177. <td><a name="fo-property-font-weight" id="fo-property-font-weight">font-weight</a></td>
  2178. <td class="basic">Basic</td>
  2179. <td align="center"><a href=
  2180. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#font-weight">&sect;7.8.9</a></td>
  2181. <td class="partial">partial</td>
  2182. <td class="partial">partial</td>
  2183. <td class="partial">partial</td>
  2184. <td class="partial">partial</td>
  2185. <td align="left">
  2186. <ul>
  2187. <li>[0.20.5] "normal", "bolder" and "lighter" are not supported</li>
  2188. <li>[0.94 and later] TODO &lt;relative&gt; font weights</li>
  2189. </ul>
  2190. </td>
  2191. </tr>
  2192. <tr>
  2193. <td class="category" colspan="8"><a name="fo-property-commonhyphen-section" id=
  2194. "fo-property-commonhyphen-section">Common Hyphenation Properties</a> (<a href=
  2195. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#common-hyphenation-properties">&sect;7.9</a>)</td>
  2196. </tr>
  2197. <tr>
  2198. <td><a name="fo-property-country" id="fo-property-country">country</a></td>
  2199. <td class="extended">Extended</td>
  2200. <td align="center"><a href=
  2201. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#country">&sect;7.9.1</a></td>
  2202. <td class="yes">yes</td>
  2203. <td class="yes">yes</td>
  2204. <td class="yes">yes</td>
  2205. <td class="yes">yes</td>
  2206. <td align="left">
  2207. <ul>
  2208. <li>[0.94 and earlier] Only used for controlling hyphenation.</li>
  2209. <li>[trunk] For PDF output: Only 2-letter codes from ISO 3166 are supported properly to
  2210. identify the natural language!</li>
  2211. </ul>
  2212. </td>
  2213. </tr>
  2214. <tr>
  2215. <td><a name="fo-property-language" id="fo-property-language">language</a></td>
  2216. <td class="extended">Extended</td>
  2217. <td align="center"><a href=
  2218. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#language">&sect;7.9.2</a></td>
  2219. <td class="yes">yes</td>
  2220. <td class="yes">yes</td>
  2221. <td class="yes">yes</td>
  2222. <td class="yes">yes</td>
  2223. <td align="left">
  2224. <ul>
  2225. <li>[0.94 and earlier] Only used for controlling hyphenation.</li>
  2226. <li>[trunk] For PDF output: Only 2-letter codes from ISO 639 are supported properly to
  2227. identify the natural language!</li>
  2228. </ul>
  2229. </td>
  2230. </tr>
  2231. <tr>
  2232. <td><a name="fo-property-script" id="fo-property-script">script</a></td>
  2233. <td class="extended">Extended</td>
  2234. <td align="center"><a href=
  2235. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#script">&sect;7.9.3</a></td>
  2236. <td class="no">no</td>
  2237. <td class="no">no</td>
  2238. <td class="no">no</td>
  2239. <td class="no">no</td>
  2240. <td align="center">&nbsp;</td>
  2241. </tr>
  2242. <tr>
  2243. <td><a name="fo-property-hyphenate" id="fo-property-hyphenate">hyphenate</a></td>
  2244. <td class="extended">Extended</td>
  2245. <td align="center"><a href=
  2246. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#hyphenate">&sect;7.9.4</a></td>
  2247. <td class="yes">yes</td>
  2248. <td class="yes">yes</td>
  2249. <td class="yes">yes</td>
  2250. <td class="yes">yes</td>
  2251. <td align="center">&nbsp;</td>
  2252. </tr>
  2253. <tr>
  2254. <td><a name="fo-property-hyphenation-character" id=
  2255. "fo-property-hyphenation-character">hyphenation-character</a></td>
  2256. <td class="extended">Extended</td>
  2257. <td align="center"><a href=
  2258. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#hyphenation-character">&sect;7.9.5</a></td>
  2259. <td class="yes">yes</td>
  2260. <td class="yes">yes</td>
  2261. <td class="yes">yes</td>
  2262. <td class="yes">yes</td>
  2263. <td align="center">&nbsp;</td>
  2264. </tr>
  2265. <tr>
  2266. <td><a name="fo-property-hyphenation-push-character-count" id=
  2267. "fo-property-hyphenation-push-character-count">hyphenation-push-character-count</a></td>
  2268. <td class="extended">Extended</td>
  2269. <td align="center"><a href=
  2270. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#hyphenation-push-character-count">&sect;7.9.6</a></td>
  2271. <td class="yes">yes</td>
  2272. <td class="yes">yes</td>
  2273. <td class="yes">yes</td>
  2274. <td class="yes">yes</td>
  2275. <td align="center">&nbsp;</td>
  2276. </tr>
  2277. <tr>
  2278. <td><a name="fo-property-hyphenation-remain-character-count" id=
  2279. "fo-property-hyphenation-remain-character-count">hyphenation-remain-character-count</a></td>
  2280. <td class="extended">Extended</td>
  2281. <td align="center"><a href=
  2282. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#hyphenation-remain-character-count">&sect;7.9.7</a></td>
  2283. <td class="yes">yes</td>
  2284. <td class="yes">yes</td>
  2285. <td class="yes">yes</td>
  2286. <td class="yes">yes</td>
  2287. <td align="center">&nbsp;</td>
  2288. </tr>
  2289. <tr>
  2290. <td class="category" colspan="8"><a name="fo-property-commonmarginblock-section" id=
  2291. "fo-property-commonmarginblock-section">Common Margin Properties - Block</a> (<a href=
  2292. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#common-margin-properties-block">&sect;7.10</a>)</td>
  2293. </tr>
  2294. <tr>
  2295. <td><a name="fo-property-margin-top" id="fo-property-margin-top">margin-top</a></td>
  2296. <td class="basic">Basic</td>
  2297. <td align="center"><a href=
  2298. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#margin-top">&sect;7.10.1</a></td>
  2299. <td class="partial">partial</td>
  2300. <td class="yes">yes</td>
  2301. <td class="yes">yes</td>
  2302. <td class="yes">yes</td>
  2303. <td align="left">
  2304. <ul>
  2305. <li>[0.20.5] only on pages and regions</li>
  2306. </ul>
  2307. </td>
  2308. </tr>
  2309. <tr>
  2310. <td><a name="fo-property-margin-bottom" id="fo-property-margin-bottom">margin-bottom</a></td>
  2311. <td class="basic">Basic</td>
  2312. <td align="center"><a href=
  2313. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#margin-bottom">&sect;7.10.2</a></td>
  2314. <td class="partial">partial</td>
  2315. <td class="yes">yes</td>
  2316. <td class="yes">yes</td>
  2317. <td class="yes">yes</td>
  2318. <td align="left">
  2319. <ul>
  2320. <li>[0.20.5] only on pages and regions</li>
  2321. </ul>
  2322. </td>
  2323. </tr>
  2324. <tr>
  2325. <td><a name="fo-property-margin-left" id="fo-property-margin-left">margin-left</a></td>
  2326. <td class="basic">Basic</td>
  2327. <td align="center"><a href=
  2328. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#margin-left">&sect;7.10.3</a></td>
  2329. <td class="partial">partial</td>
  2330. <td class="yes">yes</td>
  2331. <td class="yes">yes</td>
  2332. <td class="yes">yes</td>
  2333. <td align="left">
  2334. <ul>
  2335. <li>[0.20.5] only on pages and regions</li>
  2336. </ul>
  2337. </td>
  2338. </tr>
  2339. <tr>
  2340. <td><a name="fo-property-margin-right" id="fo-property-margin-right">margin-right</a></td>
  2341. <td class="basic">Basic</td>
  2342. <td align="center"><a href=
  2343. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#margin-right">&sect;7.10.4</a></td>
  2344. <td class="partial">partial</td>
  2345. <td class="yes">yes</td>
  2346. <td class="yes">yes</td>
  2347. <td class="yes">yes</td>
  2348. <td align="left">
  2349. <ul>
  2350. <li>[0.20.5] only on pages and regions</li>
  2351. </ul>
  2352. </td>
  2353. </tr>
  2354. <tr>
  2355. <td><a name="fo-property-space-before" id="fo-property-space-before">space-before</a></td>
  2356. <td class="basic">Basic</td>
  2357. <td align="center"><a href=
  2358. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#space-before">&sect;7.10.5</a></td>
  2359. <td class="partial">partial</td>
  2360. <td class="partial">partial</td>
  2361. <td class="partial">partial</td>
  2362. <td class="partial">partial</td>
  2363. <td align="left">
  2364. <ul>
  2365. <li>[0.20.5] space-before.optimum supported</li>
  2366. <li>[0.94 and later] Space adjustment may not fully work everywhere, yet.</li>
  2367. </ul>
  2368. </td>
  2369. </tr>
  2370. <tr>
  2371. <td><a name="fo-property-space-after" id="fo-property-space-after">space-after</a></td>
  2372. <td class="basic">Basic</td>
  2373. <td align="center"><a href=
  2374. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#space-after">&sect;7.10.6</a></td>
  2375. <td class="partial">partial</td>
  2376. <td class="partial">partial</td>
  2377. <td class="partial">partial</td>
  2378. <td class="partial">partial</td>
  2379. <td align="left">
  2380. <ul>
  2381. <li>[0.20.5] space-after.optimum supported</li>
  2382. <li>[0.94 and later] Space adjustment may not fully work everywhere, yet.</li>
  2383. </ul>
  2384. </td>
  2385. </tr>
  2386. <tr>
  2387. <td><a name="fo-property-start-indent" id="fo-property-start-indent">start-indent</a></td>
  2388. <td class="basic">Basic</td>
  2389. <td align="center"><a href=
  2390. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#start-indent">&sect;7.10.7</a></td>
  2391. <td class="yes">yes</td>
  2392. <td class="yes">yes</td>
  2393. <td class="yes">yes</td>
  2394. <td class="yes">yes</td>
  2395. <td align="center">&nbsp;</td>
  2396. </tr>
  2397. <tr>
  2398. <td><a name="fo-property-end-indent" id="fo-property-end-indent">end-indent</a></td>
  2399. <td class="basic">Basic</td>
  2400. <td align="center"><a href=
  2401. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#end-indent">&sect;7.10.8</a></td>
  2402. <td class="yes">yes</td>
  2403. <td class="yes">yes</td>
  2404. <td class="yes">yes</td>
  2405. <td class="yes">yes</td>
  2406. <td align="center">&nbsp;</td>
  2407. </tr>
  2408. <tr>
  2409. <td class="category" colspan="8"><a name="fo-property-commonmargininline-section" id=
  2410. "fo-property-commonmargininline-section">Common Margin Properties - Inline</a> (<a href=
  2411. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#common-margin-properties-inline">&sect;7.11</a>)</td>
  2412. </tr>
  2413. <tr>
  2414. <td><a name="fo-property-space-end" id="fo-property-space-end">space-end</a></td>
  2415. <td class="basic">Basic</td>
  2416. <td align="center"><a href=
  2417. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#space-end">&sect;7.11.1</a></td>
  2418. <td class="no">no</td>
  2419. <td class="no">no</td>
  2420. <td class="no">no</td>
  2421. <td class="no">no</td>
  2422. <td align="center">&nbsp;</td>
  2423. </tr>
  2424. <tr>
  2425. <td><a name="fo-property-space-start" id="fo-property-space-start">space-start</a></td>
  2426. <td class="basic">Basic</td>
  2427. <td align="center"><a href=
  2428. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#space-start">&sect;7.11.2</a></td>
  2429. <td class="no">no</td>
  2430. <td class="no">no</td>
  2431. <td class="no">no</td>
  2432. <td class="no">no</td>
  2433. <td align="center">&nbsp;</td>
  2434. </tr>
  2435. <tr>
  2436. <td class="category" colspan="8"><a name="fo-property-commonrelpos-section" id=
  2437. "fo-property-commonrelpos-section">Common Relative Position Properties</a> (<a href=
  2438. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#common-relative-position-properties">&sect;7.12</a>)</td>
  2439. </tr>
  2440. <tr>
  2441. <td><a name="fo-property-relative-position" id=
  2442. "fo-property-relative-position">relative-position</a></td>
  2443. <td class="extended">Extended</td>
  2444. <td align="center"><a href=
  2445. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#relative-position">&sect;7.12.1</a></td>
  2446. <td class="no">no</td>
  2447. <td class="no">no</td>
  2448. <td class="no">no</td>
  2449. <td class="no">no</td>
  2450. <td align="center">&nbsp;</td>
  2451. </tr>
  2452. <tr>
  2453. <td class="category" colspan="8"><a name="fo-property-areaalign-section" id=
  2454. "fo-property-areaalign-section">Area Alignment Properties</a> (<a href=
  2455. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#area-alignment">&sect;7.13</a>)</td>
  2456. </tr>
  2457. <tr>
  2458. <td><a name="fo-property-alignment-adjust" id=
  2459. "fo-property-alignment-adjust">alignment-adjust</a></td>
  2460. <td class="basic">Basic</td>
  2461. <td align="center"><a href=
  2462. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#alignment-adjust">&sect;7.13.1</a></td>
  2463. <td class="no">no</td>
  2464. <td class="yes">yes</td>
  2465. <td class="yes">yes</td>
  2466. <td class="yes">yes</td>
  2467. <td align="center">&nbsp;</td>
  2468. </tr>
  2469. <tr>
  2470. <td><a name="fo-property-alignment-baseline" id=
  2471. "fo-property-alignment-baseline">alignment-baseline</a></td>
  2472. <td class="basic">Basic</td>
  2473. <td align="center"><a href=
  2474. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#alignment-baseline">&sect;7.13.2</a></td>
  2475. <td class="no">no</td>
  2476. <td class="yes">yes</td>
  2477. <td class="yes">yes</td>
  2478. <td class="yes">yes</td>
  2479. <td align="center">&nbsp;</td>
  2480. </tr>
  2481. <tr>
  2482. <td><a name="fo-property-baseline-shift" id=
  2483. "fo-property-baseline-shift">baseline-shift</a></td>
  2484. <td class="basic">Basic</td>
  2485. <td align="center"><a href=
  2486. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#baseline-shift">&sect;7.13.3</a></td>
  2487. <td class="partial">partial</td>
  2488. <td class="yes">yes</td>
  2489. <td class="yes">yes</td>
  2490. <td class="yes">yes</td>
  2491. <td align="left">
  2492. <ul>
  2493. <li>[0.20.5] Only values "super" and "sub" have been implemented.</li>
  2494. </ul>
  2495. </td>
  2496. </tr>
  2497. <tr>
  2498. <td><a name="fo-property-display-align" id="fo-property-display-align">display-align</a></td>
  2499. <td class="extended">Extended</td>
  2500. <td align="center"><a href=
  2501. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#display-align">&sect;7.13.4</a></td>
  2502. <td class="partial">partial</td>
  2503. <td class="partial">partial</td>
  2504. <td class="partial">partial</td>
  2505. <td class="partial">partial</td>
  2506. <td align="left">
  2507. <ul>
  2508. <li>[0.20.5] Implemented only for table-cell and block-container.</li>
  2509. <li>[0.20.5] For table-cell, the "height" attribute must be set for the parent table-row;
  2510. setting the height of the table or the table-cell results in vertical centering having no
  2511. effect.</li>
  2512. <li>[0.94 and later] TODO Check e-g, i-f-o.</li>
  2513. </ul>
  2514. </td>
  2515. </tr>
  2516. <tr>
  2517. <td><a name="fo-property-dominant-baseline" id=
  2518. "fo-property-dominant-baseline">dominant-baseline</a></td>
  2519. <td class="basic">Basic</td>
  2520. <td align="center"><a href=
  2521. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#dominant-baseline">&sect;7.13.5</a></td>
  2522. <td class="no">no</td>
  2523. <td class="yes">yes</td>
  2524. <td class="yes">yes</td>
  2525. <td class="yes">yes</td>
  2526. <td align="center">&nbsp;</td>
  2527. </tr>
  2528. <tr>
  2529. <td><a name="fo-property-relative-align" id=
  2530. "fo-property-relative-align">relative-align</a></td>
  2531. <td class="extended">Extended</td>
  2532. <td align="center"><a href=
  2533. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#relative-align">&sect;7.13.6</a></td>
  2534. <td class="no">no</td>
  2535. <td class="no">no</td>
  2536. <td class="no">no</td>
  2537. <td class="no">no</td>
  2538. <td align="center">&nbsp;</td>
  2539. </tr>
  2540. <tr>
  2541. <td class="category" colspan="8"><a name="fo-property-areadim-section" id=
  2542. "fo-property-areadim-section">Area Dimension Properties</a> (<a href=
  2543. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#section-N36094-Area-Dimension-Properties">&sect;7.14</a>)</td>
  2544. </tr>
  2545. <tr>
  2546. <td><a name="fo-property-block-progression-dimension" id=
  2547. "fo-property-block-progression-dimension">block-progression-dimension</a></td>
  2548. <td class="basic">Basic</td>
  2549. <td align="center"><a href=
  2550. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#block-progression-dimension">&sect;7.14.1</a></td>
  2551. <td class="no">no</td>
  2552. <td class="yes">yes</td>
  2553. <td class="yes">yes</td>
  2554. <td class="yes">yes</td>
  2555. <td align="center">&nbsp;</td>
  2556. </tr>
  2557. <tr>
  2558. <td><a name="fo-property-content-height" id=
  2559. "fo-property-content-height">content-height</a></td>
  2560. <td class="extended">Extended</td>
  2561. <td align="center"><a href=
  2562. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#content-height">&sect;7.14.2</a></td>
  2563. <td class="no">no</td>
  2564. <td class="yes">yes</td>
  2565. <td class="yes">yes</td>
  2566. <td class="yes">yes</td>
  2567. <td align="center">&nbsp;</td>
  2568. </tr>
  2569. <tr>
  2570. <td><a name="fo-property-content-width" id="fo-property-content-width">content-width</a></td>
  2571. <td class="extended">Extended</td>
  2572. <td align="center"><a href=
  2573. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#content-width">&sect;7.14.3</a></td>
  2574. <td class="no">no</td>
  2575. <td class="yes">yes</td>
  2576. <td class="yes">yes</td>
  2577. <td class="yes">yes</td>
  2578. <td align="center">&nbsp;</td>
  2579. </tr>
  2580. <tr>
  2581. <td><a name="fo-property-height" id="fo-property-height">height</a></td>
  2582. <td class="basic">Basic</td>
  2583. <td align="center"><a href=
  2584. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#height">&sect;7.14.4</a></td>
  2585. <td class="yes">yes</td>
  2586. <td class="yes">yes</td>
  2587. <td class="yes">yes</td>
  2588. <td class="yes">yes</td>
  2589. <td align="center">&nbsp;</td>
  2590. </tr>
  2591. <tr>
  2592. <td><a name="fo-property-inline-progression-dimension" id=
  2593. "fo-property-inline-progression-dimension">inline-progression-dimension</a></td>
  2594. <td class="basic">Basic</td>
  2595. <td align="center"><a href=
  2596. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#inline-progression-dimension">&sect;7.14.5</a></td>
  2597. <td class="no">no</td>
  2598. <td class="yes">yes</td>
  2599. <td class="yes">yes</td>
  2600. <td class="yes">yes</td>
  2601. <td align="center">&nbsp;</td>
  2602. </tr>
  2603. <tr>
  2604. <td><a name="fo-property-max-height" id="fo-property-max-height">max-height</a></td>
  2605. <td class="complete">Complete</td>
  2606. <td align="center"><a href=
  2607. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#max-height">&sect;7.14.6</a></td>
  2608. <td class="no">no</td>
  2609. <td class="no">no</td>
  2610. <td class="no">no</td>
  2611. <td class="yes">yes</td>
  2612. <td align="center">&nbsp;</td>
  2613. </tr>
  2614. <tr>
  2615. <td><a name="fo-property-max-width" id="fo-property-max-width">max-width</a></td>
  2616. <td class="complete">Complete</td>
  2617. <td align="center"><a href=
  2618. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#max-width">&sect;7.14.7</a></td>
  2619. <td class="no">no</td>
  2620. <td class="no">no</td>
  2621. <td class="no">no</td>
  2622. <td class="yes">yes</td>
  2623. <td align="center">&nbsp;</td>
  2624. </tr>
  2625. <tr>
  2626. <td><a name="fo-property-min-height" id="fo-property-min-height">min-height</a></td>
  2627. <td class="complete">Complete</td>
  2628. <td align="center"><a href=
  2629. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#min-height">&sect;7.14.8</a></td>
  2630. <td class="no">no</td>
  2631. <td class="no">no</td>
  2632. <td class="no">no</td>
  2633. <td class="yes">yes</td>
  2634. <td align="center">&nbsp;</td>
  2635. </tr>
  2636. <tr>
  2637. <td><a name="fo-property-min-width" id="fo-property-min-width">min-width</a></td>
  2638. <td class="complete">Complete</td>
  2639. <td align="center"><a href=
  2640. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#min-width">&sect;7.14.9</a></td>
  2641. <td class="no">no</td>
  2642. <td class="no">no</td>
  2643. <td class="no">no</td>
  2644. <td class="yes">yes</td>
  2645. <td align="center">&nbsp;</td>
  2646. </tr>
  2647. <tr>
  2648. <td><a name="fo-property-scaling" id="fo-property-scaling">scaling</a></td>
  2649. <td class="extended">Extended</td>
  2650. <td align="center"><a href=
  2651. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#scaling">&sect;7.14.10</a></td>
  2652. <td class="no">no</td>
  2653. <td class="yes">yes</td>
  2654. <td class="yes">yes</td>
  2655. <td class="yes">yes</td>
  2656. <td align="center">&nbsp;</td>
  2657. </tr>
  2658. <tr>
  2659. <td><a name="fo-property-scaling-method" id=
  2660. "fo-property-scaling-method">scaling-method</a></td>
  2661. <td class="extended">Extended</td>
  2662. <td align="center"><a href=
  2663. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#scaling-method">&sect;7.14.11</a></td>
  2664. <td class="no">no</td>
  2665. <td class="no">no</td>
  2666. <td class="no">no</td>
  2667. <td class="no">no</td>
  2668. <td align="center">&nbsp;</td>
  2669. </tr>
  2670. <tr>
  2671. <td><a name="fo-property-width" id="fo-property-width">width</a></td>
  2672. <td class="basic">Basic</td>
  2673. <td align="center"><a href=
  2674. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#width">&sect;7.14.12</a></td>
  2675. <td class="yes">yes</td>
  2676. <td class="yes">yes</td>
  2677. <td class="yes">yes</td>
  2678. <td class="yes">yes</td>
  2679. <td align="center">&nbsp;</td>
  2680. </tr>
  2681. <tr>
  2682. <td class="category" colspan="8"><a name="fo-property-blockandline-section" id=
  2683. "fo-property-blockandline-section">Block and Line-related Properties</a> (<a href=
  2684. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#section-N38191-Block-and-Line-related-Properties">&sect;7.15</a>)</td>
  2685. </tr>
  2686. <tr>
  2687. <td><a name="fo-property-hyphenation-keep" id=
  2688. "fo-property-hyphenation-keep">hyphenation-keep</a></td>
  2689. <td class="extended">Extended</td>
  2690. <td align="center"><a href=
  2691. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#hyphenation-keep">&sect;7.15.1</a></td>
  2692. <td class="no">no</td>
  2693. <td class="no">no</td>
  2694. <td class="no">no</td>
  2695. <td class="no">no</td>
  2696. <td align="center">&nbsp;</td>
  2697. </tr>
  2698. <tr>
  2699. <td><a name="fo-property-hyphenation-ladder-count" id=
  2700. "fo-property-hyphenation-ladder-count">hyphenation-ladder-count</a></td>
  2701. <td class="extended">Extended</td>
  2702. <td align="center"><a href=
  2703. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#hyphenation-ladder-count">&sect;7.15.2</a></td>
  2704. <td class="no">no</td>
  2705. <td class="yes">yes</td>
  2706. <td class="yes">yes</td>
  2707. <td class="yes">yes</td>
  2708. <td align="center">&nbsp;</td>
  2709. </tr>
  2710. <tr>
  2711. <td><a name="fo-property-last-line-end-indent" id=
  2712. "fo-property-last-line-end-indent">last-line-end-indent</a></td>
  2713. <td class="extended">Extended</td>
  2714. <td align="center"><a href=
  2715. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#last-line-end-indent">&sect;7.15.3</a></td>
  2716. <td class="no">no</td>
  2717. <td class="yes">yes</td>
  2718. <td class="yes">yes</td>
  2719. <td class="yes">yes</td>
  2720. <td align="center">&nbsp;</td>
  2721. </tr>
  2722. <tr>
  2723. <td><a name="fo-property-line-height" id="fo-property-line-height">line-height</a></td>
  2724. <td class="basic">Basic</td>
  2725. <td align="center"><a href=
  2726. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#line-height">&sect;7.15.4</a></td>
  2727. <td class="yes">yes</td>
  2728. <td class="yes">yes</td>
  2729. <td class="yes">yes</td>
  2730. <td class="yes">yes</td>
  2731. <td align="center">&nbsp;</td>
  2732. </tr>
  2733. <tr>
  2734. <td><a name="fo-property-line-height-shift-adjustment" id=
  2735. "fo-property-line-height-shift-adjustment">line-height-shift-adjustment</a></td>
  2736. <td class="extended">Extended</td>
  2737. <td align="center"><a href=
  2738. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#line-height-shift-adjustment">&sect;7.15.5</a></td>
  2739. <td class="no">no</td>
  2740. <td class="yes">yes</td>
  2741. <td class="yes">yes</td>
  2742. <td class="yes">yes</td>
  2743. <td align="center">&nbsp;</td>
  2744. </tr>
  2745. <tr>
  2746. <td><a name="fo-property-line-stacking-strategy" id=
  2747. "fo-property-line-stacking-strategy">line-stacking-strategy</a></td>
  2748. <td class="basic">Basic</td>
  2749. <td align="center"><a href=
  2750. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#line-stacking-strategy">&sect;7.15.6</a></td>
  2751. <td class="no">no</td>
  2752. <td class="partial">partial</td>
  2753. <td class="partial">partial</td>
  2754. <td class="partial">partial</td>
  2755. <td align="left">
  2756. <ul>
  2757. <li>[0.94 and later] value "line-height" not supported</li>
  2758. </ul>
  2759. </td>
  2760. </tr>
  2761. <tr>
  2762. <td><a name="fo-property-linefeed-treatment" id=
  2763. "fo-property-linefeed-treatment">linefeed-treatment</a></td>
  2764. <td class="extended">Extended</td>
  2765. <td align="center"><a href=
  2766. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#linefeed-treatment">&sect;7.15.7</a></td>
  2767. <td class="no">no</td>
  2768. <td class="yes">yes</td>
  2769. <td class="yes">yes</td>
  2770. <td class="yes">yes</td>
  2771. <td align="left">&nbsp;</td>
  2772. </tr>
  2773. <tr>
  2774. <td><a name="fo-property-white-space-treatment" id=
  2775. "fo-property-white-space-treatment">white-space-treatment</a></td>
  2776. <td class="extended">Extended</td>
  2777. <td align="center"><a href=
  2778. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#white-space-treatment">&sect;7.15.8</a></td>
  2779. <td class="no">no</td>
  2780. <td class="partial">partial</td>
  2781. <td class="partial">partial</td>
  2782. <td class="partial">partial</td>
  2783. <td align="left">
  2784. <ul>
  2785. <li>[0.94 and later] inline elements may interfere with correct handling of this property
  2786. in some cases</li>
  2787. </ul>
  2788. </td>
  2789. </tr>
  2790. <tr>
  2791. <td><a name="fo-property-text-align" id="fo-property-text-align">text-align</a></td>
  2792. <td class="basic">Basic</td>
  2793. <td align="center"><a href=
  2794. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#text-align">&sect;7.15.9</a></td>
  2795. <td class="partial">partial</td>
  2796. <td class="partial">partial</td>
  2797. <td class="partial">partial</td>
  2798. <td class="partial">partial</td>
  2799. <td align="left">
  2800. <ul>
  2801. <li>Only start, end, center and justify are supported</li>
  2802. </ul>
  2803. </td>
  2804. </tr>
  2805. <tr>
  2806. <td><a name="fo-property-text-align-last" id=
  2807. "fo-property-text-align-last">text-align-last</a></td>
  2808. <td class="extended">Extended</td>
  2809. <td align="center"><a href=
  2810. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#text-align-last">&sect;7.15.10</a></td>
  2811. <td class="partial">partial</td>
  2812. <td class="partial">partial</td>
  2813. <td class="partial">partial</td>
  2814. <td class="partial">partial</td>
  2815. <td align="left">
  2816. <ul>
  2817. <li>Only start, end, center and justify are supported</li>
  2818. </ul>
  2819. </td>
  2820. </tr>
  2821. <tr>
  2822. <td><a name="fo-property-text-indent" id="fo-property-text-indent">text-indent</a></td>
  2823. <td class="basic">Basic</td>
  2824. <td align="center"><a href=
  2825. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#text-indent">&sect;7.15.11</a></td>
  2826. <td class="yes">yes</td>
  2827. <td class="yes">yes</td>
  2828. <td class="yes">yes</td>
  2829. <td class="yes">yes</td>
  2830. <td align="center">&nbsp;</td>
  2831. </tr>
  2832. <tr>
  2833. <td><a name="fo-property-white-space-collapse" id=
  2834. "fo-property-white-space-collapse">white-space-collapse</a></td>
  2835. <td class="extended">Extended</td>
  2836. <td align="center"><a href=
  2837. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#white-space-collapse">&sect;7.15.12</a></td>
  2838. <td class="yes">yes</td>
  2839. <td class="yes">yes</td>
  2840. <td class="yes">yes</td>
  2841. <td class="yes">yes</td>
  2842. <td align="center">&nbsp;</td>
  2843. </tr>
  2844. <tr>
  2845. <td><a name="fo-property-wrap-option" id="fo-property-wrap-option">wrap-option</a></td>
  2846. <td class="basic">Basic</td>
  2847. <td align="center"><a href=
  2848. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#wrap-option">&sect;7.15.13</a></td>
  2849. <td class="yes">yes</td>
  2850. <td class="partial">partial</td>
  2851. <td class="partial">partial</td>
  2852. <td class="partial">partial</td>
  2853. <td align="left">
  2854. <ul>
  2855. <li>[0.94 and later] Only supported on fo:block.</li>
  2856. </ul>
  2857. </td>
  2858. </tr>
  2859. <tr>
  2860. <td class="category" colspan="8"><a name="fo-property-char-section" id=
  2861. "fo-property-char-section">Character Properties</a> (<a href=
  2862. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#section-N40545-Character-Properties">&sect;7.16</a>)</td>
  2863. </tr>
  2864. <tr>
  2865. <td><a name="fo-property-character" id="fo-property-character">character</a></td>
  2866. <td class="basic">Basic</td>
  2867. <td align="center"><a href=
  2868. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#character">&sect;7.16.1</a></td>
  2869. <td class="yes">yes</td>
  2870. <td class="yes">yes</td>
  2871. <td class="yes">yes</td>
  2872. <td class="yes">yes</td>
  2873. <td align="center">&nbsp;</td>
  2874. </tr>
  2875. <tr>
  2876. <td><a name="fo-property-letter-spacing" id=
  2877. "fo-property-letter-spacing">letter-spacing</a></td>
  2878. <td class="extended">Extended</td>
  2879. <td align="center"><a href=
  2880. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#letter-spacing">&sect;7.16.2</a></td>
  2881. <td class="yes">yes</td>
  2882. <td class="yes">yes</td>
  2883. <td class="yes">yes</td>
  2884. <td class="yes">yes</td>
  2885. <td align="center">&nbsp;</td>
  2886. </tr>
  2887. <tr>
  2888. <td><a name="fo-property-suppress-at-line-break" id=
  2889. "fo-property-suppress-at-line-break">suppress-at-line-break</a></td>
  2890. <td class="extended">Extended</td>
  2891. <td align="center"><a href=
  2892. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#suppress-at-line-break">&sect;7.16.3</a></td>
  2893. <td class="no">no</td>
  2894. <td class="no">no</td>
  2895. <td class="no">no</td>
  2896. <td class="no">no</td>
  2897. <td align="center">&nbsp;</td>
  2898. </tr>
  2899. <tr>
  2900. <td><a name="fo-property-text-decoration" id=
  2901. "fo-property-text-decoration">text-decoration</a></td>
  2902. <td class="extended">Extended</td>
  2903. <td align="center"><a href=
  2904. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#text-decoration">&sect;7.16.4</a></td>
  2905. <td class="yes">yes</td>
  2906. <td class="yes">yes</td>
  2907. <td class="yes">yes</td>
  2908. <td class="yes">yes</td>
  2909. <td align="center">&nbsp;</td>
  2910. </tr>
  2911. <tr>
  2912. <td><a name="fo-property-text-shadow" id="fo-property-text-shadow">text-shadow</a></td>
  2913. <td class="extended">Extended</td>
  2914. <td align="center"><a href=
  2915. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#text-shadow">&sect;7.16.5</a></td>
  2916. <td class="no">no</td>
  2917. <td class="no">no</td>
  2918. <td class="no">no</td>
  2919. <td class="no">no</td>
  2920. <td align="center">&nbsp;</td>
  2921. </tr>
  2922. <tr>
  2923. <td><a name="fo-property-text-transform" id=
  2924. "fo-property-text-transform">text-transform</a></td>
  2925. <td class="extended">Extended</td>
  2926. <td align="center"><a href=
  2927. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#text-transform">&sect;7.16.6</a></td>
  2928. <td class="no">no</td>
  2929. <td class="yes">yes</td>
  2930. <td class="yes">yes</td>
  2931. <td class="yes">yes</td>
  2932. <td align="center">&nbsp;</td>
  2933. </tr>
  2934. <tr>
  2935. <td><a name="fo-property-treat-as-word-space" id=
  2936. "fo-property-treat-as-word-space">treat-as-word-space</a></td>
  2937. <td class="extended">Extended</td>
  2938. <td align="center"><a href=
  2939. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#treat-as-word-space">&sect;7.16.7</a></td>
  2940. <td class="no">no</td>
  2941. <td class="no">no</td>
  2942. <td class="no">no</td>
  2943. <td class="no">no</td>
  2944. <td align="center">&nbsp;</td>
  2945. </tr>
  2946. <tr>
  2947. <td><a name="fo-property-word-spacing" id="fo-property-word-spacing">word-spacing</a></td>
  2948. <td class="extended">Extended</td>
  2949. <td align="center"><a href=
  2950. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#word-spacing">&sect;7.16.8</a></td>
  2951. <td class="no">no</td>
  2952. <td class="yes">yes</td>
  2953. <td class="yes">yes</td>
  2954. <td class="yes">yes</td>
  2955. <td align="center">&nbsp;</td>
  2956. </tr>
  2957. <tr>
  2958. <td class="category" colspan="8"><a name="fo-property-color-section" id=
  2959. "fo-property-color-section">Color-related Properties</a> (<a href=
  2960. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#section-N42081-Color-related-Properties">&sect;7.17</a>)</td>
  2961. </tr>
  2962. <tr>
  2963. <td><a name="fo-property-color" id="fo-property-color">color</a></td>
  2964. <td class="basic">Basic</td>
  2965. <td align="center"><a href=
  2966. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#color">&sect;7.17.1</a></td>
  2967. <td class="yes">yes</td>
  2968. <td class="yes">yes</td>
  2969. <td class="yes">yes</td>
  2970. <td class="yes">yes</td>
  2971. <td align="center">&nbsp;</td>
  2972. </tr>
  2973. <tr>
  2974. <td><a name="fo-property-color-profile-name" id=
  2975. "fo-property-color-profile-name">color-profile-name</a></td>
  2976. <td class="extended">Extended</td>
  2977. <td align="center"><a href=
  2978. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#color-profile-name">&sect;7.17.2</a></td>
  2979. <td class="no">no</td>
  2980. <td class="no">no</td>
  2981. <td class="no">no</td>
  2982. <td class="no">no</td>
  2983. <td align="center">&nbsp;</td>
  2984. </tr>
  2985. <tr>
  2986. <td><a name="fo-property-rendering-intent" id=
  2987. "fo-property-rendering-intent">rendering-intent</a></td>
  2988. <td class="extended">Extended</td>
  2989. <td align="center"><a href=
  2990. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#rendering-intent">&sect;7.17.3</a></td>
  2991. <td class="no">no</td>
  2992. <td class="no">no</td>
  2993. <td class="no">no</td>
  2994. <td class="no">no</td>
  2995. <td align="center">&nbsp;</td>
  2996. </tr>
  2997. <tr>
  2998. <td class="category" colspan="8"><a name="fo-property-float-section" id=
  2999. "fo-property-float-section">Float-related Properties</a> (<a href=
  3000. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#section-N42546-Float-related-Properties">&sect;7.18</a>)</td>
  3001. </tr>
  3002. <tr>
  3003. <td><a name="fo-property-clear" id="fo-property-clear">clear</a></td>
  3004. <td class="extended">Extended</td>
  3005. <td align="center"><a href=
  3006. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#clear">&sect;7.18.1</a></td>
  3007. <td class="no">no</td>
  3008. <td class="no">no</td>
  3009. <td class="no">no</td>
  3010. <td class="no">no</td>
  3011. <td align="center">&nbsp;</td>
  3012. </tr>
  3013. <tr>
  3014. <td><a name="fo-property-float" id="fo-property-float">float</a></td>
  3015. <td class="extended">Extended</td>
  3016. <td align="center"><a href=
  3017. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#float">&sect;7.18.2</a></td>
  3018. <td class="no">no</td>
  3019. <td class="no">no</td>
  3020. <td class="no">no</td>
  3021. <td class="no">no</td>
  3022. <td align="center">&nbsp;</td>
  3023. </tr>
  3024. <tr>
  3025. <td><a name="fo-property-intrusion-displace" id=
  3026. "fo-property-intrusion-displace">intrusion-displace</a></td>
  3027. <td class="extended">Extended</td>
  3028. <td align="center"><a href=
  3029. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#intrusion-displace">&sect;7.18.3</a></td>
  3030. <td class="no">no</td>
  3031. <td class="no">no</td>
  3032. <td class="no">no</td>
  3033. <td class="no">no</td>
  3034. <td align="center">&nbsp;</td>
  3035. </tr>
  3036. <tr>
  3037. <td class="category" colspan="8"><a name="fo-property-keepsbreaks-section" id=
  3038. "fo-property-keepsbreaks-section">Keeps and Breaks Properties</a> (<a href=
  3039. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#section-N43268-Keeps-and-Breaks-Properties">&sect;7.19</a>)</td>
  3040. </tr>
  3041. <tr>
  3042. <td><a name="fo-property-break-after" id="fo-property-break-after">break-after</a></td>
  3043. <td class="basic">Basic</td>
  3044. <td align="center"><a href=
  3045. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#break-after">&sect;7.19.1</a></td>
  3046. <td class="yes">yes</td>
  3047. <td class="partial">partial</td>
  3048. <td class="yes">yes</td>
  3049. <td class="yes">yes</td>
  3050. <td align="center">
  3051. <ul>
  3052. <li>[0.94] Doesn't work on the last row of a table</li>
  3053. </ul>
  3054. </td>
  3055. </tr>
  3056. <tr>
  3057. <td><a name="fo-property-break-before" id="fo-property-break-before">break-before</a></td>
  3058. <td class="basic">Basic</td>
  3059. <td align="center"><a href=
  3060. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#break-before">&sect;7.19.2</a></td>
  3061. <td class="yes">yes</td>
  3062. <td class="partial">partial</td>
  3063. <td class="yes">yes</td>
  3064. <td class="yes">yes</td>
  3065. <td align="center">
  3066. <ul>
  3067. <li>[0.94] Doesn't work on the first row of a table</li>
  3068. <li>[0.94] When set on the first child of an fo:table-cell,
  3069. the border-before is still painted on the previous page</li>
  3070. </ul>
  3071. </td>
  3072. </tr>
  3073. <tr>
  3074. <td><a name="fo-property-keep-together" id="fo-property-keep-together">keep-together</a></td>
  3075. <td class="extended">Extended</td>
  3076. <td align="center"><a href=
  3077. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#keep-together">&sect;7.19.3</a></td>
  3078. <td class="partial">partial</td>
  3079. <td class="partial">partial</td>
  3080. <td class="partial">partial</td>
  3081. <td class="partial">partial</td>
  3082. <td align="left">
  3083. <ul>
  3084. <li>[0.20.5] works only in table rows</li>
  3085. <li>[0.95 and earlier] &lt;integer&gt; values are not supported.</li>
  3086. <li>[Trunk] minimal support for &lt;integer&gt; value.</li>
  3087. </ul>
  3088. </td>
  3089. </tr>
  3090. <tr>
  3091. <td><a name="fo-property-keep-with-next" id=
  3092. "fo-property-keep-with-next">keep-with-next</a></td>
  3093. <td class="basic">Basic</td>
  3094. <td align="center"><a href=
  3095. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#keep-with-next">&sect;7.19.4</a></td>
  3096. <td class="partial">partial</td>
  3097. <td class="partial">partial</td>
  3098. <td class="partial">partial</td>
  3099. <td class="partial">partial</td>
  3100. <td align="left">
  3101. <ul>
  3102. <li>[0.20.5] works only in table rows</li>
  3103. <li>[0.94 and later] works on all implemented block-level FOs, but not on inline-level
  3104. FOs.</li>
  3105. <li>[0.95 and earlier] &lt;integer&gt; values are not supported.</li>
  3106. <li>[Trunk] minimal support for &lt;integer&gt; value.</li>
  3107. </ul>
  3108. </td>
  3109. </tr>
  3110. <tr>
  3111. <td><a name="fo-property-keep-with-previous" id=
  3112. "fo-property-keep-with-previous">keep-with-previous</a></td>
  3113. <td class="basic">Basic</td>
  3114. <td align="center"><a href=
  3115. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#keep-with-previous">&sect;7.19.5</a></td>
  3116. <td class="partial">partial</td>
  3117. <td class="partial">partial</td>
  3118. <td class="partial">partial</td>
  3119. <td class="partial">partial</td>
  3120. <td align="left">
  3121. <ul>
  3122. <li>[0.20.5] works only in table rows</li>
  3123. <li>[0.94] works on all implemented FOs, except list- and table-related and
  3124. inline-level FOs.</li>
  3125. <li>[0.95] works on all implemented FOs, except list- and inline-level
  3126. FOs.</li>
  3127. <li>[Trunk] does not work on inline-level FOs.</li>
  3128. <li>[0.95 and earlier] &lt;integer&gt; values are not supported.</li>
  3129. <li>[Trunk] minimal support for &lt;integer&gt; value.</li>
  3130. </ul>
  3131. </td>
  3132. </tr>
  3133. <tr>
  3134. <td><a name="fo-property-orphans" id="fo-property-orphans">orphans</a></td>
  3135. <td class="basic">Basic</td>
  3136. <td align="center"><a href=
  3137. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#orphans">&sect;7.19.6</a></td>
  3138. <td class="no">no</td>
  3139. <td class="yes">yes</td>
  3140. <td class="yes">yes</td>
  3141. <td class="yes">yes</td>
  3142. <td align="center">&nbsp;</td>
  3143. </tr>
  3144. <tr>
  3145. <td><a name="fo-property-widows" id="fo-property-widows">widows</a></td>
  3146. <td class="basic">Basic</td>
  3147. <td align="center"><a href=
  3148. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#widows">&sect;7.19.7</a></td>
  3149. <td class="no">no</td>
  3150. <td class="yes">yes</td>
  3151. <td class="yes">yes</td>
  3152. <td class="yes">yes</td>
  3153. <td align="center">&nbsp;</td>
  3154. </tr>
  3155. <tr>
  3156. <td class="category" colspan="8"><a name="fo-property-layout-section" id=
  3157. "fo-property-layout-section">Layout-related Properties</a> (<a href=
  3158. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#section-N44408-Layout-related-Properties">&sect;7.20</a>)</td>
  3159. </tr>
  3160. <tr>
  3161. <td><a name="fo-property-clip" id="fo-property-clip">clip</a></td>
  3162. <td class="extended">Extended</td>
  3163. <td align="center"><a href=
  3164. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#clip">&sect;7.20.1</a></td>
  3165. <td class="no">no</td>
  3166. <td class="no">no</td>
  3167. <td class="no">no</td>
  3168. <td class="no">no</td>
  3169. <td align="center">&nbsp;</td>
  3170. </tr>
  3171. <tr>
  3172. <td><a name="fo-property-overflow" id="fo-property-overflow">overflow</a></td>
  3173. <td class="basic">Basic</td>
  3174. <td align="center"><a href=
  3175. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#overflow">&sect;7.20.2</a></td>
  3176. <td class="no">no</td>
  3177. <td class="yes">yes</td>
  3178. <td class="yes">yes</td>
  3179. <td class="yes">yes</td>
  3180. <td align="center">&nbsp;</td>
  3181. </tr>
  3182. <tr>
  3183. <td><a name="fo-property-reference-orientation" id=
  3184. "fo-property-reference-orientation">reference-orientation</a></td>
  3185. <td class="extended">Extended</td>
  3186. <td align="center"><a href=
  3187. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#reference-orientation">&sect;7.20.3</a></td>
  3188. <td class="no">no</td>
  3189. <td class="yes">yes</td>
  3190. <td class="yes">yes</td>
  3191. <td class="yes">yes</td>
  3192. <td align="left">
  3193. <ul>
  3194. <li>[0.20.5] Workaround for page-orientation (portrait vs. landscape) is to swap the
  3195. page-width and page-height properties.</li>
  3196. <li>[0.20.5] Workaround for block-container is to use SVG.</li>
  3197. </ul>
  3198. </td>
  3199. </tr>
  3200. <tr>
  3201. <td><a name="fo-property-span" id="fo-property-span">span</a></td>
  3202. <td class="extended">Extended</td>
  3203. <td align="center"><a href=
  3204. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#span">&sect;7.20.4</a></td>
  3205. <td class="yes">yes</td>
  3206. <td class="yes">yes</td>
  3207. <td class="yes">yes</td>
  3208. <td class="yes">yes</td>
  3209. <td align="center">&nbsp;</td>
  3210. </tr>
  3211. <tr>
  3212. <td class="category" colspan="8"><a name="fo-property-leader-section" id=
  3213. "fo-property-leader-section">Leader and Rule Properties</a> (<a href=
  3214. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#section-N45132-Leader-and-Rule-Properties">&sect;7.21</a>)</td>
  3215. </tr>
  3216. <tr>
  3217. <td><a name="fo-property-leader-alignment" id=
  3218. "fo-property-leader-alignment">leader-alignment</a></td>
  3219. <td class="extended">Extended</td>
  3220. <td align="center"><a href=
  3221. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#leader-alignment">&sect;7.21.1</a></td>
  3222. <td class="partial">partial</td>
  3223. <td class="no">no</td>
  3224. <td class="no">no</td>
  3225. <td class="no">no</td>
  3226. <td align="left">
  3227. <ul>
  3228. <li>[0.20.5] not value "page"</li>
  3229. <li>[0.94 and later] Not supported</li>
  3230. </ul>
  3231. </td>
  3232. </tr>
  3233. <tr>
  3234. <td><a name="fo-property-leader-pattern" id=
  3235. "fo-property-leader-pattern">leader-pattern</a></td>
  3236. <td class="basic">Basic</td>
  3237. <td align="center"><a href=
  3238. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#leader-pattern">&sect;7.21.2</a></td>
  3239. <td class="partial">partial</td>
  3240. <td class="yes">yes</td>
  3241. <td class="yes">yes</td>
  3242. <td class="yes">yes</td>
  3243. <td align="left">
  3244. <ul>
  3245. <li>[0.20.5] not value "use-content"</li>
  3246. <li>[0.94 and later] Value "use-content" does not work in all circumstances.</li>
  3247. </ul>
  3248. </td>
  3249. </tr>
  3250. <tr>
  3251. <td><a name="fo-property-leader-pattern-width" id=
  3252. "fo-property-leader-pattern-width">leader-pattern-width</a></td>
  3253. <td class="extended">Extended</td>
  3254. <td align="center"><a href=
  3255. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#leader-pattern-width">&sect;7.21.3</a></td>
  3256. <td class="yes">yes</td>
  3257. <td class="yes">yes</td>
  3258. <td class="yes">yes</td>
  3259. <td class="yes">yes</td>
  3260. <td align="left">&nbsp;</td>
  3261. </tr>
  3262. <tr>
  3263. <td><a name="fo-property-leader-length" id="fo-property-leader-length">leader-length</a></td>
  3264. <td class="basic">Basic</td>
  3265. <td align="center"><a href=
  3266. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#leader-length">&sect;7.21.4</a></td>
  3267. <td class="partial">partial</td>
  3268. <td class="yes">yes</td>
  3269. <td class="yes">yes</td>
  3270. <td class="yes">yes</td>
  3271. <td align="left">
  3272. <ul>
  3273. <li>[0.20.5] leader-length.minimum is not used at all</li>
  3274. </ul>
  3275. </td>
  3276. </tr>
  3277. <tr>
  3278. <td><a name="fo-property-rule-style" id="fo-property-rule-style">rule-style</a></td>
  3279. <td class="basic">Basic</td>
  3280. <td align="center"><a href=
  3281. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#rule-style">&sect;7.21.5</a></td>
  3282. <td class="yes">yes</td>
  3283. <td class="yes">yes</td>
  3284. <td class="yes">yes</td>
  3285. <td class="yes">yes</td>
  3286. <td align="left">&nbsp;</td>
  3287. </tr>
  3288. <tr>
  3289. <td><a name="fo-property-rule-thickness" id=
  3290. "fo-property-rule-thickness">rule-thickness</a></td>
  3291. <td class="basic">Basic</td>
  3292. <td align="center"><a href=
  3293. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#rule-thickness">&sect;7.21.6</a></td>
  3294. <td class="yes">yes</td>
  3295. <td class="yes">yes</td>
  3296. <td class="yes">yes</td>
  3297. <td class="yes">yes</td>
  3298. <td align="left">&nbsp;</td>
  3299. </tr>
  3300. <tr>
  3301. <td class="category" colspan="8"><a name="fo-property-dynamiceffects-section" id=
  3302. "fo-property-dynamiceffects-section">Properties for Dynamic Effects Formatting Objects</a>
  3303. (<a href=
  3304. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#section-N46115-Properties-for-Dynamic-Effects-Formatting-Objects">&sect;7.22</a>)</td>
  3305. </tr>
  3306. <tr>
  3307. <td><a name="fo-property-active-state" id="fo-property-active-state">active-state</a></td>
  3308. <td class="extended">Extended</td>
  3309. <td align="center"><a href=
  3310. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#active-state">&sect;7.22.1</a></td>
  3311. <td class="no">no</td>
  3312. <td class="no">no</td>
  3313. <td class="no">no</td>
  3314. <td class="no">no</td>
  3315. <td align="center">&nbsp;</td>
  3316. </tr>
  3317. <tr>
  3318. <td><a name="fo-property-auto-restore" id="fo-property-auto-restore">auto-restore</a></td>
  3319. <td class="extended">Extended</td>
  3320. <td align="center"><a href=
  3321. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#auto-restore">&sect;7.22.2</a></td>
  3322. <td class="no">no</td>
  3323. <td class="no">no</td>
  3324. <td class="no">no</td>
  3325. <td class="no">no</td>
  3326. <td align="center">&nbsp;</td>
  3327. </tr>
  3328. <tr>
  3329. <td><a name="fo-property-case-name" id="fo-property-case-name">case-name</a></td>
  3330. <td class="extended">Extended</td>
  3331. <td align="center"><a href=
  3332. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#case-name">&sect;7.22.3</a></td>
  3333. <td class="no">no</td>
  3334. <td class="no">no</td>
  3335. <td class="no">no</td>
  3336. <td class="no">no</td>
  3337. <td align="center">&nbsp;</td>
  3338. </tr>
  3339. <tr>
  3340. <td><a name="fo-property-case-title" id="fo-property-case-title">case-title</a></td>
  3341. <td class="extended">Extended</td>
  3342. <td align="center"><a href=
  3343. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#case-title">&sect;7.22.4</a></td>
  3344. <td class="no">no</td>
  3345. <td class="no">no</td>
  3346. <td class="no">no</td>
  3347. <td class="no">no</td>
  3348. <td align="center">&nbsp;</td>
  3349. </tr>
  3350. <tr>
  3351. <td><a name="fo-property-destination-placement-offset" id=
  3352. "fo-property-destination-placement-offset">destination-placement-offset</a></td>
  3353. <td class="extended">Extended</td>
  3354. <td align="center"><a href=
  3355. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#destination-placement-offset">&sect;7.22.5</a></td>
  3356. <td class="no">no</td>
  3357. <td class="no">no</td>
  3358. <td class="no">no</td>
  3359. <td class="no">no</td>
  3360. <td align="center">&nbsp;</td>
  3361. </tr>
  3362. <tr>
  3363. <td><a name="fo-property-external-destination" id=
  3364. "fo-property-external-destination">external-destination</a></td>
  3365. <td class="basic">Basic</td>
  3366. <td align="center"><a href=
  3367. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#external-destination">&sect;7.22.6</a></td>
  3368. <td class="yes">yes</td>
  3369. <td class="yes">yes</td>
  3370. <td class="yes">yes</td>
  3371. <td class="yes">yes</td>
  3372. <td align="center">&nbsp;</td>
  3373. </tr>
  3374. <tr>
  3375. <td><a name="fo-property-indicate-destination" id=
  3376. "fo-property-indicate-destination">indicate-destination</a></td>
  3377. <td class="extended">Extended</td>
  3378. <td align="center"><a href=
  3379. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#indicate-destination">&sect;7.22.7</a></td>
  3380. <td class="no">no</td>
  3381. <td class="no">no</td>
  3382. <td class="no">no</td>
  3383. <td class="no">no</td>
  3384. <td align="center">&nbsp;</td>
  3385. </tr>
  3386. <tr>
  3387. <td><a name="fo-property-internal-destination" id=
  3388. "fo-property-internal-destination">internal-destination</a></td>
  3389. <td class="extended">Extended</td>
  3390. <td align="center"><a href=
  3391. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#internal-destination">&sect;7.22.8</a></td>
  3392. <td class="yes">yes</td>
  3393. <td class="yes">yes</td>
  3394. <td class="yes">yes</td>
  3395. <td class="yes">yes</td>
  3396. <td align="center">&nbsp;</td>
  3397. </tr>
  3398. <tr>
  3399. <td><a name="fo-property-show-destination" id=
  3400. "fo-property-show-destination">show-destination</a></td>
  3401. <td class="extended">Extended</td>
  3402. <td align="center"><a href=
  3403. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#show-destination">&sect;7.22.9</a></td>
  3404. <td class="no">no</td>
  3405. <td class="no">no</td>
  3406. <td class="no">no</td>
  3407. <td class="partial">partial</td>
  3408. <td align="center">
  3409. <ul>
  3410. <li>[FOP Trunk] only has effect in PDF output, for external PDF destinations (links pointing to destinations
  3411. in <i>another</i> PDF), and only works reliably when the PDF is viewed in a standalone PDF viewer.
  3412. <p>Adobe's browser plugin, for example, ignores the <code>/NewWindow</code> flag.
  3413. </li>
  3414. </ul>
  3415. </td>
  3416. </tr>
  3417. <tr>
  3418. <td><a name="fo-property-starting-state" id=
  3419. "fo-property-starting-state">starting-state</a></td>
  3420. <td class="extended">Extended</td>
  3421. <td align="center"><a href=
  3422. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#starting-state">&sect;7.22.10</a></td>
  3423. <td class="no">no</td>
  3424. <td class="partial">partial</td>
  3425. <td class="partial">partial</td>
  3426. <td class="partial">partial</td>
  3427. <td align="left">
  3428. <ul>
  3429. <li>[0.94 and later] support for starting-state on <a href=
  3430. "#fo-bookmark">fo:bookmark</a></li>
  3431. </ul>
  3432. </td>
  3433. </tr>
  3434. <tr>
  3435. <td><a name="fo-property-switch-to" id="fo-property-switch-to">switch-to</a></td>
  3436. <td class="extended">Extended</td>
  3437. <td align="center"><a href=
  3438. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#switch-to">&sect;7.22.11</a></td>
  3439. <td class="no">no</td>
  3440. <td class="no">no</td>
  3441. <td class="no">no</td>
  3442. <td class="no">no</td>
  3443. <td align="center">&nbsp;</td>
  3444. </tr>
  3445. <tr>
  3446. <td><a name="fo-property-target-presentation-context" id=
  3447. "fo-property-target-presentation-context">target-presentation-context</a></td>
  3448. <td class="extended">Extended</td>
  3449. <td align="center"><a href=
  3450. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#target-presentation-context">&sect;7.22.12</a></td>
  3451. <td class="no">no</td>
  3452. <td class="no">no</td>
  3453. <td class="no">no</td>
  3454. <td class="no">no</td>
  3455. <td align="center">&nbsp;</td>
  3456. </tr>
  3457. <tr>
  3458. <td><a name="fo-property-target-processing-context" id=
  3459. "fo-property-target-processing-context">target-processing-context</a></td>
  3460. <td class="extended">Extended</td>
  3461. <td align="center"><a href=
  3462. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#target-processing-context">&sect;7.22.13</a></td>
  3463. <td class="no">no</td>
  3464. <td class="no">no</td>
  3465. <td class="no">no</td>
  3466. <td class="no">no</td>
  3467. <td align="center">&nbsp;</td>
  3468. </tr>
  3469. <tr>
  3470. <td><a name="fo-property-target-stylesheet" id=
  3471. "fo-property-target-stylesheet">target-stylesheet</a></td>
  3472. <td class="extended">Extended</td>
  3473. <td align="center"><a href=
  3474. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#target-stylesheet">&sect;7.22.14</a></td>
  3475. <td class="no">no</td>
  3476. <td class="no">no</td>
  3477. <td class="no">no</td>
  3478. <td class="no">no</td>
  3479. <td align="center">&nbsp;</td>
  3480. </tr>
  3481. <tr>
  3482. <td class="category" colspan="8"><a name="fo-property-markers-section" id=
  3483. "fo-property-markers-section">Properties for Markers</a> (<a href=
  3484. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#section-N48193-Properties-for-Markers">&sect;7.23</a>)</td>
  3485. </tr>
  3486. <tr>
  3487. <td><a name="fo-property-marker-class-name" id=
  3488. "fo-property-marker-class-name">marker-class-name</a></td>
  3489. <td class="extended">Extended</td>
  3490. <td align="center"><a href=
  3491. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#marker-class-name">&sect;7.23.1</a></td>
  3492. <td class="no">no</td>
  3493. <td class="yes">yes</td>
  3494. <td class="yes">yes</td>
  3495. <td class="yes">yes</td>
  3496. <td align="center">&nbsp;</td>
  3497. </tr>
  3498. <tr>
  3499. <td><a name="fo-property-retrieve-class-name" id=
  3500. "fo-property-retrieve-class-name">retrieve-class-name</a></td>
  3501. <td class="extended">Extended</td>
  3502. <td align="center"><a href=
  3503. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#retrieve-class-name">&sect;7.23.2</a></td>
  3504. <td class="no">no</td>
  3505. <td class="yes">yes</td>
  3506. <td class="yes">yes</td>
  3507. <td class="yes">yes</td>
  3508. <td align="center">&nbsp;</td>
  3509. </tr>
  3510. <tr>
  3511. <td><a name="fo-property-retrieve-position" id=
  3512. "fo-property-retrieve-position">retrieve-position</a></td>
  3513. <td class="extended">Extended</td>
  3514. <td align="center"><a href=
  3515. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#retrieve-position">&sect;7.23.3</a></td>
  3516. <td class="no">no</td>
  3517. <td class="yes">yes</td>
  3518. <td class="yes">yes</td>
  3519. <td class="yes">yes</td>
  3520. <td align="center">&nbsp;</td>
  3521. </tr>
  3522. <tr>
  3523. <td><a name="fo-property-retrieve-boundary" id=
  3524. "fo-property-retrieve-boundary">retrieve-boundary</a></td>
  3525. <td class="extended">Extended</td>
  3526. <td align="center"><a href=
  3527. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#retrieve-boundary">&sect;7.23.4</a></td>
  3528. <td class="no">no</td>
  3529. <td class="yes">yes</td>
  3530. <td class="yes">yes</td>
  3531. <td class="yes">yes</td>
  3532. <td align="center">&nbsp;</td>
  3533. </tr>
  3534. <tr>
  3535. <td class="category" colspan="8"><a name="fo-property-numberstring-section" id=
  3536. "fo-property-numberstring-section">Properties for Number to String Conversion</a> (<a href=
  3537. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#section-N48804-Properties-for-Number-to-String-Conversion">&sect;7.24</a>)</td>
  3538. </tr>
  3539. <tr>
  3540. <td><a name="fo-property-format" id="fo-property-format">format</a></td>
  3541. <td class="basic">Basic</td>
  3542. <td align="center"><a href=
  3543. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#format">&sect;7.24.1</a></td>
  3544. <td class="no">no</td>
  3545. <td class="yes">yes</td>
  3546. <td class="yes">yes</td>
  3547. <td class="yes">yes</td>
  3548. <td align="center">&nbsp;</td>
  3549. </tr>
  3550. <tr>
  3551. <td><a name="fo-property-grouping-separator" id=
  3552. "fo-property-grouping-separator">grouping-separator</a></td>
  3553. <td class="extended">Extended</td>
  3554. <td align="center"><a href=
  3555. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#grouping-separator">&sect;7.24.2</a></td>
  3556. <td class="no">no</td>
  3557. <td class="no">no</td>
  3558. <td class="no">no</td>
  3559. <td class="no">no</td>
  3560. <td align="center">&nbsp;</td>
  3561. </tr>
  3562. <tr>
  3563. <td><a name="fo-property-grouping-size" id="fo-property-grouping-size">grouping-size</a></td>
  3564. <td class="extended">Extended</td>
  3565. <td align="center"><a href=
  3566. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#grouping-size">&sect;7.24.3</a></td>
  3567. <td class="no">no</td>
  3568. <td class="no">no</td>
  3569. <td class="no">no</td>
  3570. <td class="no">no</td>
  3571. <td align="center">&nbsp;</td>
  3572. </tr>
  3573. <tr>
  3574. <td><a name="fo-property-letter-value" id="fo-property-letter-value">letter-value</a></td>
  3575. <td class="basic">Basic</td>
  3576. <td align="center"><a href=
  3577. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#letter-value">&sect;7.24.4</a></td>
  3578. <td class="no">no</td>
  3579. <td class="no">no</td>
  3580. <td class="no">no</td>
  3581. <td class="no">no</td>
  3582. <td align="center">&nbsp;</td>
  3583. </tr>
  3584. <tr>
  3585. <td class="category" colspan="8"><a name="fo-property-pagination-section" id=
  3586. "fo-property-pagination-section">Pagination and Layout Properties</a> (<a href=
  3587. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#section-N49321-Pagination-and-Layout-Properties">&sect;7.25</a>)</td>
  3588. </tr>
  3589. <tr>
  3590. <td><a name="fo-property-blank-or-not-blank" id=
  3591. "fo-property-blank-or-not-blank">blank-or-not-blank</a></td>
  3592. <td class="extended">Extended</td>
  3593. <td align="center"><a href=
  3594. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#blank-or-not-blank">&sect;7.25.1</a></td>
  3595. <td class="yes">yes</td>
  3596. <td class="yes">yes</td>
  3597. <td class="yes">yes</td>
  3598. <td class="yes">yes</td>
  3599. <td align="center">&nbsp;</td>
  3600. </tr>
  3601. <tr>
  3602. <td><a name="fo-property-column-count" id="fo-property-column-count">column-count</a></td>
  3603. <td class="extended">Extended</td>
  3604. <td align="center"><a href=
  3605. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#column-count">&sect;7.25.2</a></td>
  3606. <td class="yes">yes</td>
  3607. <td class="yes">yes</td>
  3608. <td class="yes">yes</td>
  3609. <td class="yes">yes</td>
  3610. <td align="center">&nbsp;</td>
  3611. </tr>
  3612. <tr>
  3613. <td><a name="fo-property-column-gap" id="fo-property-column-gap">column-gap</a></td>
  3614. <td class="extended">Extended</td>
  3615. <td align="center"><a href=
  3616. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#column-gap">&sect;7.25.3</a></td>
  3617. <td class="yes">yes</td>
  3618. <td class="yes">yes</td>
  3619. <td class="yes">yes</td>
  3620. <td class="yes">yes</td>
  3621. <td align="center">&nbsp;</td>
  3622. </tr>
  3623. <tr>
  3624. <td><a name="fo-property-extent" id="fo-property-extent">extent</a></td>
  3625. <td class="extended">Extended</td>
  3626. <td align="center"><a href=
  3627. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#extent">&sect;7.25.4</a></td>
  3628. <td class="yes">yes</td>
  3629. <td class="yes">yes</td>
  3630. <td class="yes">yes</td>
  3631. <td class="yes">yes</td>
  3632. <td align="center">&nbsp;</td>
  3633. </tr>
  3634. <tr>
  3635. <td><a name="fo-property-flow-name" id="fo-property-flow-name">flow-name</a></td>
  3636. <td class="basic">Basic</td>
  3637. <td align="center"><a href=
  3638. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#flow-name">&sect;7.25.5</a></td>
  3639. <td class="yes">yes</td>
  3640. <td class="yes">yes</td>
  3641. <td class="yes">yes</td>
  3642. <td class="yes">yes</td>
  3643. <td align="center">&nbsp;</td>
  3644. </tr>
  3645. <tr>
  3646. <td><a name="fo-property-force-page-count" id=
  3647. "fo-property-force-page-count">force-page-count</a></td>
  3648. <td class="extended">Extended</td>
  3649. <td align="center"><a href=
  3650. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#force-page-count">&sect;7.25.6</a></td>
  3651. <td class="no">no</td>
  3652. <td class="yes">yes</td>
  3653. <td class="yes">yes</td>
  3654. <td class="yes">yes</td>
  3655. <td align="center">&nbsp;</td>
  3656. </tr>
  3657. <tr>
  3658. <td><a name="fo-property-initial-page-number" id=
  3659. "fo-property-initial-page-number">initial-page-number</a></td>
  3660. <td class="basic">Basic</td>
  3661. <td align="center"><a href=
  3662. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#initial-page-number">&sect;7.25.7</a></td>
  3663. <td class="yes">yes</td>
  3664. <td class="yes">yes</td>
  3665. <td class="yes">yes</td>
  3666. <td class="yes">yes</td>
  3667. <td align="center">&nbsp;</td>
  3668. </tr>
  3669. <tr>
  3670. <td><a name="fo-property-master-name" id="fo-property-master-name">master-name</a></td>
  3671. <td class="basic">Basic</td>
  3672. <td align="center"><a href=
  3673. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#master-name">&sect;7.25.8</a></td>
  3674. <td class="yes">yes</td>
  3675. <td class="yes">yes</td>
  3676. <td class="yes">yes</td>
  3677. <td class="yes">yes</td>
  3678. <td align="center">&nbsp;</td>
  3679. </tr>
  3680. <tr>
  3681. <td><a name="fo-property-master-reference" id=
  3682. "fo-property-master-reference">master-reference</a></td>
  3683. <td class="basic">Basic</td>
  3684. <td align="center"><a href=
  3685. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#master-reference">&sect;7.25.9</a></td>
  3686. <td class="yes">yes</td>
  3687. <td class="yes">yes</td>
  3688. <td class="yes">yes</td>
  3689. <td class="yes">yes</td>
  3690. <td align="center">&nbsp;</td>
  3691. </tr>
  3692. <tr>
  3693. <td><a name="fo-property-maximum-repeats" id=
  3694. "fo-property-maximum-repeats">maximum-repeats</a></td>
  3695. <td class="extended">Extended</td>
  3696. <td align="center"><a href=
  3697. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#maximum-repeats">&sect;7.25.10</a></td>
  3698. <td class="yes">yes</td>
  3699. <td class="yes">yes</td>
  3700. <td class="yes">yes</td>
  3701. <td class="yes">yes</td>
  3702. <td align="center">&nbsp;</td>
  3703. </tr>
  3704. <tr>
  3705. <td><a name="fo-property-media-usage" id="fo-property-media-usage">media-usage</a></td>
  3706. <td class="extended">Extended</td>
  3707. <td align="center"><a href=
  3708. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#media-usage">&sect;7.25.11</a></td>
  3709. <td class="no">no</td>
  3710. <td class="no">no</td>
  3711. <td class="no">no</td>
  3712. <td class="no">no</td>
  3713. <td align="center">&nbsp;</td>
  3714. </tr>
  3715. <tr>
  3716. <td><a name="fo-property-odd-or-even" id="fo-property-odd-or-even">odd-or-even</a></td>
  3717. <td class="extended">Extended</td>
  3718. <td align="center"><a href=
  3719. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#odd-or-even">&sect;7.25.12</a></td>
  3720. <td class="yes">yes</td>
  3721. <td class="yes">yes</td>
  3722. <td class="yes">yes</td>
  3723. <td class="yes">yes</td>
  3724. <td align="center">&nbsp;</td>
  3725. </tr>
  3726. <tr>
  3727. <td><a name="fo-property-page-height" id="fo-property-page-height">page-height</a></td>
  3728. <td class="basic">Basic</td>
  3729. <td align="center"><a href=
  3730. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#page-height">&sect;7.25.13</a></td>
  3731. <td class="yes">yes</td>
  3732. <td class="yes">yes</td>
  3733. <td class="yes">yes</td>
  3734. <td class="yes">yes</td>
  3735. <td align="center">&nbsp;</td>
  3736. </tr>
  3737. <tr>
  3738. <td><a name="fo-property-page-position" id="fo-property-page-position">page-position</a></td>
  3739. <td class="extended">Extended</td>
  3740. <td align="center"><a href=
  3741. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#page-position">&sect;7.25.14</a></td>
  3742. <td class="partial">partial</td>
  3743. <td class="yes">yes</td>
  3744. <td class="yes">yes</td>
  3745. <td class="yes">yes</td>
  3746. <td align="left">
  3747. <ul>
  3748. <li>[0.20.5] "last" isn't implemented!</li>
  3749. </ul>
  3750. </td>
  3751. </tr>
  3752. <tr>
  3753. <td><a name="fo-property-page-width" id="fo-property-page-width">page-width</a></td>
  3754. <td class="basic">Basic</td>
  3755. <td align="center"><a href=
  3756. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#page-width">&sect;7.25.15</a></td>
  3757. <td class="yes">yes</td>
  3758. <td class="yes">yes</td>
  3759. <td class="yes">yes</td>
  3760. <td class="yes">yes</td>
  3761. <td align="center">&nbsp;</td>
  3762. </tr>
  3763. <tr>
  3764. <td><a name="fo-property-precedence" id="fo-property-precedence">precedence</a></td>
  3765. <td class="extended">Extended</td>
  3766. <td align="center"><a href=
  3767. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#precedence">&sect;7.25.16</a></td>
  3768. <td class="no">no</td>
  3769. <td class="yes">yes</td>
  3770. <td class="yes">yes</td>
  3771. <td class="yes">yes</td>
  3772. <td align="center">&nbsp;</td>
  3773. </tr>
  3774. <tr>
  3775. <td><a name="fo-property-region-name" id="fo-property-region-name">region-name</a></td>
  3776. <td class="basic">Basic</td>
  3777. <td align="center"><a href=
  3778. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#region-name">&sect;7.25.17</a></td>
  3779. <td class="yes">yes</td>
  3780. <td class="yes">yes</td>
  3781. <td class="yes">yes</td>
  3782. <td class="yes">yes</td>
  3783. <td align="center">&nbsp;</td>
  3784. </tr>
  3785. <tr>
  3786. <td class="category" colspan="8"><a name="fo-property-table-section" id=
  3787. "fo-property-table-section">Table Properties</a> (<a href=
  3788. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#section-N52000-Table-Properties">&sect;7.26</a>)</td>
  3789. </tr>
  3790. <tr>
  3791. <td><a name="fo-property-border-after-precedence" id=
  3792. "fo-property-border-after-precedence">border-after-precedence</a></td>
  3793. <td class="basic">Basic</td>
  3794. <td align="center"><a href=
  3795. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-after-precedence">&sect;7.26.1</a></td>
  3796. <td class="no">no</td>
  3797. <td class="no">no</td>
  3798. <td class="no">no</td>
  3799. <td class="no">no</td>
  3800. <td align="center">&nbsp;</td>
  3801. </tr>
  3802. <tr>
  3803. <td><a name="fo-property-border-before-precedence" id=
  3804. "fo-property-border-before-precedence">border-before-precedence</a></td>
  3805. <td class="basic">Basic</td>
  3806. <td align="center"><a href=
  3807. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-before-precedence">&sect;7.26.2</a></td>
  3808. <td class="no">no</td>
  3809. <td class="no">no</td>
  3810. <td class="no">no</td>
  3811. <td class="no">no</td>
  3812. <td align="center">&nbsp;</td>
  3813. </tr>
  3814. <tr>
  3815. <td><a name="fo-property-border-collapse" id=
  3816. "fo-property-border-collapse">border-collapse</a></td>
  3817. <td class="extended">Extended</td>
  3818. <td align="center"><a href=
  3819. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-collapse">&sect;7.26.3</a></td>
  3820. <td class="partial">partial</td>
  3821. <td class="yes">yes</td>
  3822. <td class="yes">yes</td>
  3823. <td class="yes">yes</td>
  3824. <td align="left">
  3825. <ul>
  3826. <li>[0.94 and later] Some small limitations</li>
  3827. </ul>
  3828. </td>
  3829. </tr>
  3830. <tr>
  3831. <td><a name="fo-property-border-end-precedence" id=
  3832. "fo-property-border-end-precedence">border-end-precedence</a></td>
  3833. <td class="basic">Basic</td>
  3834. <td align="center"><a href=
  3835. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-end-precedence">&sect;7.26.4</a></td>
  3836. <td class="no">no</td>
  3837. <td class="no">no</td>
  3838. <td class="no">no</td>
  3839. <td class="no">no</td>
  3840. <td align="center">&nbsp;</td>
  3841. </tr>
  3842. <tr>
  3843. <td><a name="fo-property-border-separation" id=
  3844. "fo-property-border-separation">border-separation</a></td>
  3845. <td class="extended">Extended</td>
  3846. <td align="center"><a href=
  3847. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-separation">&sect;7.26.5</a></td>
  3848. <td class="no">no</td>
  3849. <td class="yes">yes</td>
  3850. <td class="yes">yes</td>
  3851. <td class="yes">yes</td>
  3852. <td align="center">&nbsp;</td>
  3853. </tr>
  3854. <tr>
  3855. <td><a name="fo-property-border-start-precedence" id=
  3856. "fo-property-border-start-precedence">border-start-precedence</a></td>
  3857. <td class="basic">Basic</td>
  3858. <td align="center"><a href=
  3859. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-start-precedence">&sect;7.26.6</a></td>
  3860. <td class="no">no</td>
  3861. <td class="no">no</td>
  3862. <td class="no">no</td>
  3863. <td class="no">no</td>
  3864. <td align="center">&nbsp;</td>
  3865. </tr>
  3866. <tr>
  3867. <td><a name="fo-property-caption-side" id="fo-property-caption-side">caption-side</a></td>
  3868. <td class="complete">Complete</td>
  3869. <td align="center"><a href=
  3870. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#caption-side">&sect;7.26.7</a></td>
  3871. <td class="no">no</td>
  3872. <td class="no">no</td>
  3873. <td class="no">no</td>
  3874. <td class="no">no</td>
  3875. <td align="center">&nbsp;</td>
  3876. </tr>
  3877. <tr>
  3878. <td><a name="fo-property-column-number" id="fo-property-column-number">column-number</a></td>
  3879. <td class="basic">Basic</td>
  3880. <td align="center"><a href=
  3881. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#column-number">&sect;7.26.8</a></td>
  3882. <td class="no">no</td>
  3883. <td class="yes">yes</td>
  3884. <td class="yes">yes</td>
  3885. <td class="yes">yes</td>
  3886. <td align="center">&nbsp;</td>
  3887. </tr>
  3888. <tr>
  3889. <td><a name="fo-property-column-width" id="fo-property-column-width">column-width</a></td>
  3890. <td class="basic">Basic</td>
  3891. <td align="center"><a href=
  3892. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#column-width">&sect;7.26.9</a></td>
  3893. <td class="partial">partial</td>
  3894. <td class="yes">yes</td>
  3895. <td class="yes">yes</td>
  3896. <td class="yes">yes</td>
  3897. <td align="left">
  3898. <ul>
  3899. <li>[0.20.5] "percentage" not implemented. Workaround is to use the XSL-FO
  3900. "proportional-column-width" function.</li>
  3901. </ul>
  3902. </td>
  3903. </tr>
  3904. <tr>
  3905. <td><a name="fo-property-empty-cells" id="fo-property-empty-cells">empty-cells</a></td>
  3906. <td class="extended">Extended</td>
  3907. <td align="center"><a href=
  3908. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#empty-cells">&sect;7.26.10</a></td>
  3909. <td class="no">no</td>
  3910. <td class="no">no</td>
  3911. <td class="no">no</td>
  3912. <td class="no">no</td>
  3913. <td align="center">&nbsp;</td>
  3914. </tr>
  3915. <tr>
  3916. <td><a name="fo-property-ends-row" id="fo-property-ends-row">ends-row</a></td>
  3917. <td class="extended">Extended</td>
  3918. <td align="center"><a href=
  3919. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#ends-row">&sect;7.26.11</a></td>
  3920. <td class="no">no</td>
  3921. <td class="yes">yes</td>
  3922. <td class="yes">yes</td>
  3923. <td class="yes">yes</td>
  3924. <td align="center">&nbsp;</td>
  3925. </tr>
  3926. <tr>
  3927. <td><a name="fo-property-number-columns-repeated" id=
  3928. "fo-property-number-columns-repeated">number-columns-repeated</a></td>
  3929. <td class="basic">Basic</td>
  3930. <td align="center"><a href=
  3931. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#number-columns-repeated">&sect;7.26.12</a></td>
  3932. <td class="no">no</td>
  3933. <td class="yes">yes</td>
  3934. <td class="yes">yes</td>
  3935. <td class="yes">yes</td>
  3936. <td align="center">&nbsp;</td>
  3937. </tr>
  3938. <tr>
  3939. <td><a name="fo-property-number-columns-spanned" id=
  3940. "fo-property-number-columns-spanned">number-columns-spanned</a></td>
  3941. <td class="basic">Basic</td>
  3942. <td align="center"><a href=
  3943. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#number-columns-spanned">&sect;7.26.13</a></td>
  3944. <td class="yes">yes</td>
  3945. <td class="yes">yes</td>
  3946. <td class="yes">yes</td>
  3947. <td class="yes">yes</td>
  3948. <td align="center">&nbsp;</td>
  3949. </tr>
  3950. <tr>
  3951. <td><a name="fo-property-number-rows-spanned" id=
  3952. "fo-property-number-rows-spanned">number-rows-spanned</a></td>
  3953. <td class="basic">Basic</td>
  3954. <td align="center"><a href=
  3955. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#number-rows-spanned">&sect;7.26.14</a></td>
  3956. <td class="yes">yes</td>
  3957. <td class="yes">yes</td>
  3958. <td class="yes">yes</td>
  3959. <td class="yes">yes</td>
  3960. <td align="center">&nbsp;</td>
  3961. </tr>
  3962. <tr>
  3963. <td><a name="fo-property-starts-row" id="fo-property-starts-row">starts-row</a></td>
  3964. <td class="extended">Extended</td>
  3965. <td align="center"><a href=
  3966. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#starts-row">&sect;7.26.15</a></td>
  3967. <td class="no">no</td>
  3968. <td class="yes">yes</td>
  3969. <td class="yes">yes</td>
  3970. <td class="yes">yes</td>
  3971. <td align="center">&nbsp;</td>
  3972. </tr>
  3973. <tr>
  3974. <td><a name="fo-property-table-layout" id="fo-property-table-layout">table-layout</a></td>
  3975. <td class="extended">Extended</td>
  3976. <td align="center"><a href=
  3977. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#table-layout">&sect;7.26.16</a></td>
  3978. <td class="no">no</td>
  3979. <td class="no">no</td>
  3980. <td class="no">no</td>
  3981. <td class="no">no</td>
  3982. <td align="center">&nbsp;</td>
  3983. </tr>
  3984. <tr>
  3985. <td><a name="fo-property-table-omit-footer-at-break" id=
  3986. "fo-property-table-omit-footer-at-break">table-omit-footer-at-break</a></td>
  3987. <td class="extended">Extended</td>
  3988. <td align="center"><a href=
  3989. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#table-omit-footer-at-break">&sect;7.26.17</a></td>
  3990. <td class="yes">yes</td>
  3991. <td class="yes">yes</td>
  3992. <td class="yes">yes</td>
  3993. <td class="yes">yes</td>
  3994. <td align="center">&nbsp;</td>
  3995. </tr>
  3996. <tr>
  3997. <td><a name="fo-property-table-omit-header-at-break" id=
  3998. "fo-property-table-omit-header-at-break">table-omit-header-at-break</a></td>
  3999. <td class="extended">Extended</td>
  4000. <td align="center"><a href=
  4001. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#table-omit-header-at-break">&sect;7.26.18</a></td>
  4002. <td class="yes">yes</td>
  4003. <td class="yes">yes</td>
  4004. <td class="yes">yes</td>
  4005. <td class="yes">yes</td>
  4006. <td align="center">&nbsp;</td>
  4007. </tr>
  4008. <tr>
  4009. <td class="category" colspan="8"><a name="fo-property-writingmode-section" id=
  4010. "fo-property-writingmode-section">Writing-mode-related Properties</a> (<a href=
  4011. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#writing-mode-related">&sect;7.27</a>)</td>
  4012. </tr>
  4013. <tr>
  4014. <td><a name="fo-property-direction" id="fo-property-direction">direction</a></td>
  4015. <td class="basic">Basic</td>
  4016. <td align="center"><a href=
  4017. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#direction">&sect;7.27.1</a></td>
  4018. <td class="no">no</td>
  4019. <td class="no">no</td>
  4020. <td class="no">no</td>
  4021. <td class="no">no</td>
  4022. <td align="center">&nbsp;</td>
  4023. </tr>
  4024. <tr>
  4025. <td><a name="fo-property-glyph-orientation-horizontal" id=
  4026. "fo-property-glyph-orientation-horizontal">glyph-orientation-horizontal</a></td>
  4027. <td class="extended">Extended</td>
  4028. <td align="center"><a href=
  4029. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#glyph-orientation-horizontal">&sect;7.27.2</a></td>
  4030. <td class="no">no</td>
  4031. <td class="no">no</td>
  4032. <td class="no">no</td>
  4033. <td class="no">no</td>
  4034. <td align="center">&nbsp;</td>
  4035. </tr>
  4036. <tr>
  4037. <td><a name="fo-property-glyph-orientation-vertical" id=
  4038. "fo-property-glyph-orientation-vertical">glyph-orientation-vertical</a></td>
  4039. <td class="extended">Extended</td>
  4040. <td align="center"><a href=
  4041. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#glyph-orientation-vertical">&sect;7.27.3</a></td>
  4042. <td class="no">no</td>
  4043. <td class="no">no</td>
  4044. <td class="no">no</td>
  4045. <td class="no">no</td>
  4046. <td align="center">&nbsp;</td>
  4047. </tr>
  4048. <tr>
  4049. <td><a name="fo-property-text-altitude" id="fo-property-text-altitude">text-altitude</a></td>
  4050. <td class="extended">Extended</td>
  4051. <td align="center"><a href=
  4052. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#text-altitude">&sect;7.27.4</a></td>
  4053. <td class="no">no</td>
  4054. <td class="no">no</td>
  4055. <td class="no">no</td>
  4056. <td class="no">no</td>
  4057. <td align="center">&nbsp;</td>
  4058. </tr>
  4059. <tr>
  4060. <td><a name="fo-property-text-depth" id="fo-property-text-depth">text-depth</a></td>
  4061. <td class="extended">Extended</td>
  4062. <td align="center"><a href=
  4063. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#text-depth">&sect;7.27.5</a></td>
  4064. <td class="no">no</td>
  4065. <td class="no">no</td>
  4066. <td class="no">no</td>
  4067. <td class="no">no</td>
  4068. <td align="center">&nbsp;</td>
  4069. </tr>
  4070. <tr>
  4071. <td><a name="fo-property-unicode-bidi" id="fo-property-unicode-bidi">unicode-bidi</a></td>
  4072. <td class="extended">Extended</td>
  4073. <td align="center"><a href=
  4074. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#unicode-bidi">&sect;7.27.6</a></td>
  4075. <td class="no">no</td>
  4076. <td class="no">no</td>
  4077. <td class="no">no</td>
  4078. <td class="no">no</td>
  4079. <td align="center">&nbsp;</td>
  4080. </tr>
  4081. <tr>
  4082. <td><a name="fo-property-writing-mode" id="fo-property-writing-mode">writing-mode</a></td>
  4083. <td class="basic">Basic</td>
  4084. <td align="center"><a href=
  4085. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#writing-mode">&sect;7.27.7</a></td>
  4086. <td class="no">no</td>
  4087. <td class="no">no</td>
  4088. <td class="no">no</td>
  4089. <td class="no">no</td>
  4090. <td align="center">&nbsp;</td>
  4091. </tr>
  4092. <tr>
  4093. <td class="category" colspan="8"><a name="fo-property-misc-section" id=
  4094. "fo-property-misc-section">Miscellaneous Properties</a> (<a href=
  4095. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#section-N56509-Miscellaneous-Properties">&sect;7.28</a>)</td>
  4096. </tr>
  4097. <tr>
  4098. <td><a name="fo-property-content-type" id="fo-property-content-type">content-type</a></td>
  4099. <td class="extended">Extended</td>
  4100. <td align="center"><a href=
  4101. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#content-type">&sect;7.28.1</a></td>
  4102. <td class="no">no</td>
  4103. <td class="no">no</td>
  4104. <td class="no">no</td>
  4105. <td class="no">no</td>
  4106. <td align="center">&nbsp;</td>
  4107. </tr>
  4108. <tr>
  4109. <td><a name="fo-property-id" id="fo-property-id">id</a></td>
  4110. <td class="basic">Basic</td>
  4111. <td align="center"><a href=
  4112. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#id">&sect;7.28.2</a></td>
  4113. <td class="yes">yes</td>
  4114. <td class="partial">partial</td>
  4115. <td class="partial">partial</td>
  4116. <td class="partial">partial</td>
  4117. <td align="left">
  4118. <ul>
  4119. <li>[0.94 and later] IDs on table-header, table-footer, table-body, table-row,
  4120. table-and-caption, table-caption, inline-container and bidi-override are not available,
  4121. yet.</li>
  4122. </ul>
  4123. </td>
  4124. </tr>
  4125. <tr>
  4126. <td><a name="fo-property-provisional-label-separation" id=
  4127. "fo-property-provisional-label-separation">provisional-label-separation</a></td>
  4128. <td class="basic">Basic</td>
  4129. <td align="center"><a href=
  4130. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#provisional-label-separation">&sect;7.28.3</a></td>
  4131. <td class="yes">yes</td>
  4132. <td class="yes">yes</td>
  4133. <td class="yes">yes</td>
  4134. <td class="yes">yes</td>
  4135. <td align="center">&nbsp;</td>
  4136. </tr>
  4137. <tr>
  4138. <td><a name="fo-property-provisional-distance-between-starts" id=
  4139. "fo-property-provisional-distance-between-starts">provisional-distance-between-starts</a></td>
  4140. <td class="basic">Basic</td>
  4141. <td align="center"><a href=
  4142. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#provisional-distance-between-starts">&sect;7.28.4</a></td>
  4143. <td class="yes">yes</td>
  4144. <td class="yes">yes</td>
  4145. <td class="yes">yes</td>
  4146. <td class="yes">yes</td>
  4147. <td align="center">&nbsp;</td>
  4148. </tr>
  4149. <tr>
  4150. <td><a name="fo-property-ref-id" id="fo-property-ref-id">ref-id</a></td>
  4151. <td class="extended">Extended</td>
  4152. <td align="center"><a href=
  4153. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#ref-id">&sect;7.28.5</a></td>
  4154. <td class="yes">yes</td>
  4155. <td class="yes">yes</td>
  4156. <td class="yes">yes</td>
  4157. <td class="yes">yes</td>
  4158. <td align="center">&nbsp;</td>
  4159. </tr>
  4160. <tr>
  4161. <td><a name="fo-property-score-spaces" id="fo-property-score-spaces">score-spaces</a></td>
  4162. <td class="extended">Extended</td>
  4163. <td align="center"><a href=
  4164. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#score-spaces">&sect;7.28.6</a></td>
  4165. <td class="no">no</td>
  4166. <td class="no">no</td>
  4167. <td class="no">no</td>
  4168. <td class="no">no</td>
  4169. <td align="center">&nbsp;</td>
  4170. </tr>
  4171. <tr>
  4172. <td><a name="fo-property-src" id="fo-property-src">src</a></td>
  4173. <td class="basic">Basic</td>
  4174. <td align="center"><a href=
  4175. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#src">&sect;7.28.7</a></td>
  4176. <td class="yes">yes</td>
  4177. <td class="yes">yes</td>
  4178. <td class="yes">yes</td>
  4179. <td class="yes">yes</td>
  4180. <td align="center">&nbsp;</td>
  4181. </tr>
  4182. <tr>
  4183. <td><a name="fo-property-visibility" id="fo-property-visibility">visibility</a></td>
  4184. <td class="extended">Extended</td>
  4185. <td align="center"><a href=
  4186. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#visibility">&sect;7.28.8</a></td>
  4187. <td class="no">no</td>
  4188. <td class="no">no</td>
  4189. <td class="no">no</td>
  4190. <td class="no">no</td>
  4191. <td align="center">&nbsp;</td>
  4192. </tr>
  4193. <tr>
  4194. <td><a name="fo-property-z-index" id="fo-property-z-index">z-index</a></td>
  4195. <td class="extended">Extended</td>
  4196. <td align="center"><a href=
  4197. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#z-index">&sect;7.28.9</a></td>
  4198. <td class="no">no</td>
  4199. <td class="no">no</td>
  4200. <td class="no">no</td>
  4201. <td class="no">no</td>
  4202. <td align="center">&nbsp;</td>
  4203. </tr>
  4204. <tr>
  4205. <td class="category" colspan="8"><a name="fo-property-shorthand-section" id=
  4206. "fo-property-shorthand-section">Shorthand Properties</a> (<a href=
  4207. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#section-N57854-Shorthand-Properties">&sect;7.29</a>)</td>
  4208. </tr>
  4209. <tr>
  4210. <td><a name="fo-property-background" id="fo-property-background">background</a></td>
  4211. <td class="complete">Complete</td>
  4212. <td align="center"><a href=
  4213. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#background">&sect;7.29.1</a></td>
  4214. <td class="no">no</td>
  4215. <td class="no">no</td>
  4216. <td class="no">no</td>
  4217. <td class="no">no</td>
  4218. <td align="center">&nbsp;</td>
  4219. </tr>
  4220. <tr>
  4221. <td><a name="fo-property-background-position" id=
  4222. "fo-property-background-position">background-position</a></td>
  4223. <td class="complete">Complete</td>
  4224. <td align="center"><a href=
  4225. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#background-position">&sect;7.29.2</a></td>
  4226. <td class="no">no</td>
  4227. <td class="yes">yes</td>
  4228. <td class="yes">yes</td>
  4229. <td class="yes">yes</td>
  4230. <td align="center">&nbsp;</td>
  4231. </tr>
  4232. <tr>
  4233. <td><a name="fo-property-border" id="fo-property-border">border</a></td>
  4234. <td class="complete">Complete</td>
  4235. <td align="center"><a href=
  4236. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border">&sect;7.29.3</a></td>
  4237. <td class="no">no</td>
  4238. <td class="yes">yes</td>
  4239. <td class="yes">yes</td>
  4240. <td class="yes">yes</td>
  4241. <td align="center">&nbsp;</td>
  4242. </tr>
  4243. <tr>
  4244. <td><a name="fo-property-border-bottom" id="fo-property-border-bottom">border-bottom</a></td>
  4245. <td class="complete">Complete</td>
  4246. <td align="center"><a href=
  4247. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-bottom">&sect;7.29.4</a></td>
  4248. <td class="yes">yes</td>
  4249. <td class="yes">yes</td>
  4250. <td class="yes">yes</td>
  4251. <td class="yes">yes</td>
  4252. <td align="center">&nbsp;</td>
  4253. </tr>
  4254. <tr>
  4255. <td><a name="fo-property-border-color" id="fo-property-border-color">border-color</a></td>
  4256. <td class="complete">Complete</td>
  4257. <td align="center"><a href=
  4258. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-color">&sect;7.29.5</a></td>
  4259. <td class="partial">partial</td>
  4260. <td class="yes">yes</td>
  4261. <td class="yes">yes</td>
  4262. <td class="yes">yes</td>
  4263. <td align="left">
  4264. <ul>
  4265. <li>[0.20.5] only one value allowed</li>
  4266. </ul>
  4267. </td>
  4268. </tr>
  4269. <tr>
  4270. <td><a name="fo-property-border-left" id="fo-property-border-left">border-left</a></td>
  4271. <td class="complete">Complete</td>
  4272. <td align="center"><a href=
  4273. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-left">&sect;7.29.6</a></td>
  4274. <td class="yes">yes</td>
  4275. <td class="yes">yes</td>
  4276. <td class="yes">yes</td>
  4277. <td class="yes">yes</td>
  4278. <td align="center">&nbsp;</td>
  4279. </tr>
  4280. <tr>
  4281. <td><a name="fo-property-border-right" id="fo-property-border-right">border-right</a></td>
  4282. <td class="complete">Complete</td>
  4283. <td align="center"><a href=
  4284. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-right">&sect;7.29.7</a></td>
  4285. <td class="yes">yes</td>
  4286. <td class="yes">yes</td>
  4287. <td class="yes">yes</td>
  4288. <td class="yes">yes</td>
  4289. <td align="center">&nbsp;</td>
  4290. </tr>
  4291. <tr>
  4292. <td><a name="fo-property-border-style" id="fo-property-border-style">border-style</a></td>
  4293. <td class="complete">Complete</td>
  4294. <td align="center"><a href=
  4295. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-style">&sect;7.29.8</a></td>
  4296. <td class="partial">partial</td>
  4297. <td class="yes">yes</td>
  4298. <td class="yes">yes</td>
  4299. <td class="yes">yes</td>
  4300. <td align="left">
  4301. <ul>
  4302. <li>[0.20.5] only "solid" works</li>
  4303. </ul>
  4304. </td>
  4305. </tr>
  4306. <tr>
  4307. <td><a name="fo-property-border-spacing" id=
  4308. "fo-property-border-spacing">border-spacing</a></td>
  4309. <td class="complete">Complete</td>
  4310. <td align="center"><a href=
  4311. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-spacing">&sect;7.29.9</a></td>
  4312. <td class="no">no</td>
  4313. <td class="yes">yes</td>
  4314. <td class="yes">yes</td>
  4315. <td class="yes">yes</td>
  4316. <td align="center">&nbsp;</td>
  4317. </tr>
  4318. <tr>
  4319. <td><a name="fo-property-border-top" id="fo-property-border-top">border-top</a></td>
  4320. <td class="complete">Complete</td>
  4321. <td align="center"><a href=
  4322. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-top">&sect;7.29.10</a></td>
  4323. <td class="yes">yes</td>
  4324. <td class="yes">yes</td>
  4325. <td class="yes">yes</td>
  4326. <td class="yes">yes</td>
  4327. <td align="center">&nbsp;</td>
  4328. </tr>
  4329. <tr>
  4330. <td><a name="fo-property-border-width" id="fo-property-border-width">border-width</a></td>
  4331. <td class="complete">Complete</td>
  4332. <td align="center"><a href=
  4333. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#border-width">&sect;7.29.11</a></td>
  4334. <td class="yes">yes</td>
  4335. <td class="yes">yes</td>
  4336. <td class="yes">yes</td>
  4337. <td class="yes">yes</td>
  4338. <td align="center">&nbsp;</td>
  4339. </tr>
  4340. <tr>
  4341. <td><a name="fo-property-cue" id="fo-property-cue">cue</a></td>
  4342. <td class="complete">Complete</td>
  4343. <td align="center"><a href=
  4344. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#cue">&sect;7.29.12</a></td>
  4345. <td class="na">na</td>
  4346. <td class="na">na</td>
  4347. <td class="na">na</td>
  4348. <td class="na">na</td>
  4349. <td align="center">&nbsp;</td>
  4350. </tr>
  4351. <tr>
  4352. <td><a name="fo-property-font" id="fo-property-font">font</a></td>
  4353. <td class="complete">Complete</td>
  4354. <td align="center"><a href=
  4355. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#font">&sect;7.29.13</a></td>
  4356. <td class="no">no</td>
  4357. <td class="partial">partial</td>
  4358. <td class="partial">partial</td>
  4359. <td class="partial">partial</td>
  4360. <td align="center">
  4361. <ul>
  4362. <li>[0.94 and later] Enum values other than "inherit" not yet supported.</li>
  4363. </ul>
  4364. </td>
  4365. </tr>
  4366. <tr>
  4367. <td><a name="fo-property-margin" id="fo-property-margin">margin</a></td>
  4368. <td class="complete">Complete</td>
  4369. <td align="center"><a href=
  4370. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#margin">&sect;7.29.14</a></td>
  4371. <td class="partial">partial</td>
  4372. <td class="yes">yes</td>
  4373. <td class="yes">yes</td>
  4374. <td class="yes">yes</td>
  4375. <td align="left">
  4376. <ul>
  4377. <li>[0.20.5] only on pages and regions</li>
  4378. </ul>
  4379. </td>
  4380. </tr>
  4381. <tr>
  4382. <td><a name="fo-property-padding" id="fo-property-padding">padding</a></td>
  4383. <td class="complete">Complete</td>
  4384. <td align="center"><a href=
  4385. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#padding">&sect;7.29.15</a></td>
  4386. <td class="partial">partial</td>
  4387. <td class="yes">yes</td>
  4388. <td class="yes">yes</td>
  4389. <td class="yes">yes</td>
  4390. <td align="left">
  4391. <ul>
  4392. <li>[0.20.5] only one value allowed</li>
  4393. <li>[0.20.5] only implemented for blocks</li>
  4394. <li>[0.20.5] can't be used to make extra space (use indents + spaces instead)</li>
  4395. <li>[0.20.5] can be used to control how much the background-color extends beyond the
  4396. content rectangle</li>
  4397. </ul>
  4398. </td>
  4399. </tr>
  4400. <tr>
  4401. <td><a name="fo-property-page-break-after" id=
  4402. "fo-property-page-break-after">page-break-after</a></td>
  4403. <td class="complete">Complete</td>
  4404. <td align="center"><a href=
  4405. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#page-break-after">&sect;7.29.16</a></td>
  4406. <td class="no">no</td>
  4407. <td class="yes">yes</td>
  4408. <td class="yes">yes</td>
  4409. <td class="yes">yes</td>
  4410. <td align="center">&nbsp;</td>
  4411. </tr>
  4412. <tr>
  4413. <td><a name="fo-property-page-break-before" id=
  4414. "fo-property-page-break-before">page-break-before</a></td>
  4415. <td class="complete">Complete</td>
  4416. <td align="center"><a href=
  4417. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#page-break-before">&sect;7.29.17</a></td>
  4418. <td class="no">no</td>
  4419. <td class="yes">yes</td>
  4420. <td class="yes">yes</td>
  4421. <td class="yes">yes</td>
  4422. <td align="center">&nbsp;</td>
  4423. </tr>
  4424. <tr>
  4425. <td><a name="fo-property-page-break-inside" id=
  4426. "fo-property-page-break-inside">page-break-inside</a></td>
  4427. <td class="complete">Complete</td>
  4428. <td align="center"><a href=
  4429. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#page-break-inside">&sect;7.29.18</a></td>
  4430. <td class="no">no</td>
  4431. <td class="yes">yes</td>
  4432. <td class="yes">yes</td>
  4433. <td class="yes">yes</td>
  4434. <td align="center">&nbsp;</td>
  4435. </tr>
  4436. <tr>
  4437. <td><a name="fo-property-pause" id="fo-property-pause">pause</a></td>
  4438. <td class="complete">Complete</td>
  4439. <td align="center"><a href=
  4440. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#pause">&sect;7.29.19</a></td>
  4441. <td class="na">na</td>
  4442. <td class="na">na</td>
  4443. <td class="na">na</td>
  4444. <td class="na">na</td>
  4445. <td align="center">&nbsp;</td>
  4446. </tr>
  4447. <tr>
  4448. <td><a name="fo-property-position" id="fo-property-position">position</a></td>
  4449. <td class="complete">Complete</td>
  4450. <td align="center"><a href=
  4451. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#position">&sect;7.29.20</a></td>
  4452. <td class="partial">partial</td>
  4453. <td class="yes">yes</td>
  4454. <td class="yes">yes</td>
  4455. <td class="yes">yes</td>
  4456. <td align="left">
  4457. <ul>
  4458. <li>[0.20.5] "inherit" not handled</li>
  4459. </ul>
  4460. </td>
  4461. </tr>
  4462. <tr>
  4463. <td><a name="fo-property-size" id="fo-property-size">size</a></td>
  4464. <td class="complete">Complete</td>
  4465. <td align="center"><a href=
  4466. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#size">&sect;7.29.21</a></td>
  4467. <td class="no">no</td>
  4468. <td class="no">no</td>
  4469. <td class="no">no</td>
  4470. <td class="no">no</td>
  4471. <td align="center">&nbsp;</td>
  4472. </tr>
  4473. <tr>
  4474. <td><a name="fo-property-vertical-align" id=
  4475. "fo-property-vertical-align">vertical-align</a></td>
  4476. <td class="complete">Complete</td>
  4477. <td align="center"><a href=
  4478. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#vertical-align">&sect;7.29.22</a></td>
  4479. <td class="partial">partial</td>
  4480. <td class="partial">partial</td>
  4481. <td class="partial">partial</td>
  4482. <td class="partial">partial</td>
  4483. <td align="left">
  4484. <ul>
  4485. <li>[0.20.5] Only works as a shorthand for baseline-shift property.</li>
  4486. <li>[0.94 and later] Percentages are not supported, yet.</li>
  4487. </ul>
  4488. </td>
  4489. </tr>
  4490. <tr>
  4491. <td><a name="fo-property-white-space" id="fo-property-white-space">white-space</a></td>
  4492. <td class="complete">Complete</td>
  4493. <td align="center"><a href=
  4494. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#white-space">&sect;7.29.23</a></td>
  4495. <td class="no">no</td>
  4496. <td class="yes">yes</td>
  4497. <td class="yes">yes</td>
  4498. <td class="yes">yes</td>
  4499. <td align="center">&nbsp;</td>
  4500. </tr>
  4501. <tr>
  4502. <td><a name="fo-property-xml:lang" id="fo-property-xml:lang">xml:lang</a></td>
  4503. <td class="complete">Complete</td>
  4504. <td align="center"><a href=
  4505. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice7.html#xml:lang">&sect;7.29.24</a></td>
  4506. <td class="no">no</td>
  4507. <td class="yes">yes</td>
  4508. <td class="yes">yes</td>
  4509. <td class="yes">yes</td>
  4510. <td align="center">[0.95] Very basic parsing; no validation of the specified value.</td>
  4511. </tr>
  4512. </table>
  4513. <h1><a name="fo-function-core-library-section" id="fo-function-core-library-section">XSL-FO Core
  4514. Function Library Support Table</a> (<a href=
  4515. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice5.html#section-N8434-Core-Function-Library">&sect;5.10</a>)</h1>
  4516. <p>The following is a summary of FOP's current support for the XSL-FO Core Function Library.</p>
  4517. <table border="1">
  4518. <tr>
  4519. <th rowspan="2">Function Name</th>
  4520. <th rowspan="2" align="center">XSL-FO Conformance Level</th>
  4521. <th rowspan="2" align="center">Citation</th>
  4522. <th colspan="4" align="center">Support&nbsp;in&nbsp;FOP</th>
  4523. <th rowspan="2">Comments</th>
  4524. </tr>
  4525. <tr>
  4526. <th align="center">0.20.5 (ancient)</th>
  4527. <th align="center">0.94 (stable)</th>
  4528. <th align="center">0.95 (stable)</th>
  4529. <th align="center">develop- ment</th>
  4530. </tr>
  4531. <tr>
  4532. <td class="category" colspan="8"><a name="fo-function-number-section" id=
  4533. "fo-function-number-section">Number Functions</a> (<a href=
  4534. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice5.html#section-N8438-Number-Functions">&sect;5.10.1</a>)</td>
  4535. </tr>
  4536. <tr>
  4537. <td><a name="fo-function-floor" id="fo-function-floor">floor</a></td>
  4538. <td class="basic">Basic</td>
  4539. <td align="center"><a href=
  4540. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice5.html#section-N8438-Number-Functions">&sect;5.10.1</a></td>
  4541. <td class="yes">yes</td>
  4542. <td class="yes">yes</td>
  4543. <td class="yes">yes</td>
  4544. <td class="yes">yes</td>
  4545. <td align="center">&nbsp;</td>
  4546. </tr>
  4547. <tr>
  4548. <td><a name="fo-function-ceiling" id="fo-function-ceiling">ceiling</a></td>
  4549. <td class="basic">Basic</td>
  4550. <td align="center"><a href=
  4551. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice5.html#section-N8438-Number-Functions">&sect;5.10.1</a></td>
  4552. <td class="yes">yes</td>
  4553. <td class="yes">yes</td>
  4554. <td class="yes">yes</td>
  4555. <td class="yes">yes</td>
  4556. <td align="center">&nbsp;</td>
  4557. </tr>
  4558. <tr>
  4559. <td><a name="fo-function-round" id="fo-function-round">round</a></td>
  4560. <td class="basic">Basic</td>
  4561. <td align="center"><a href=
  4562. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice5.html#section-N8438-Number-Functions">&sect;5.10.1</a></td>
  4563. <td class="yes">yes</td>
  4564. <td class="yes">yes</td>
  4565. <td class="yes">yes</td>
  4566. <td class="yes">yes</td>
  4567. <td align="center">&nbsp;</td>
  4568. </tr>
  4569. <tr>
  4570. <td><a name="fo-function-min" id="fo-function-min">min</a></td>
  4571. <td class="basic">Basic</td>
  4572. <td align="center"><a href=
  4573. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice5.html#section-N8438-Number-Functions">&sect;5.10.1</a></td>
  4574. <td class="yes">yes</td>
  4575. <td class="yes">yes</td>
  4576. <td class="yes">yes</td>
  4577. <td class="yes">yes</td>
  4578. <td align="center">&nbsp;</td>
  4579. </tr>
  4580. <tr>
  4581. <td><a name="fo-function-max" id="fo-function-max">max</a></td>
  4582. <td class="basic">Basic</td>
  4583. <td align="center"><a href=
  4584. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice5.html#section-N8438-Number-Functions">&sect;5.10.1</a></td>
  4585. <td class="yes">yes</td>
  4586. <td class="yes">yes</td>
  4587. <td class="yes">yes</td>
  4588. <td class="yes">yes</td>
  4589. <td align="center">&nbsp;</td>
  4590. </tr>
  4591. <tr>
  4592. <td><a name="fo-function-abs" id="fo-function-abs">abs</a></td>
  4593. <td class="basic">Basic</td>
  4594. <td align="center"><a href=
  4595. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice5.html#section-N8438-Number-Functions">&sect;5.10.1</a></td>
  4596. <td class="yes">yes</td>
  4597. <td class="yes">yes</td>
  4598. <td class="yes">yes</td>
  4599. <td class="yes">yes</td>
  4600. <td align="center">&nbsp;</td>
  4601. </tr>
  4602. <tr>
  4603. <td class="category" colspan="8"><a name="fo-function-color-section" id=
  4604. "fo-function-color-section">Color Functions</a> (<a href=
  4605. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice5.html#expr-color-functions">&sect;5.10.2</a>)</td>
  4606. </tr>
  4607. <tr>
  4608. <td><a name="fo-function-rgb" id="fo-function-rgb">rgb</a></td>
  4609. <td class="basic">Basic</td>
  4610. <td align="center"><a href=
  4611. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice5.html#expr-color-functions">&sect;5.10.2</a></td>
  4612. <td class="yes">yes</td>
  4613. <td class="yes">yes</td>
  4614. <td class="yes">yes</td>
  4615. <td class="yes">yes</td>
  4616. <td align="center">&nbsp;</td>
  4617. </tr>
  4618. <tr>
  4619. <td><a name="fo-function-rgb-icc" id="fo-function-rgb-icc">rgb-icc</a></td>
  4620. <td class="basic">Basic</td>
  4621. <td align="center"><a href=
  4622. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice5.html#expr-color-functions">&sect;5.10.2</a></td>
  4623. <td class="no">no</td>
  4624. <td class="yes">yes</td>
  4625. <td class="yes">yes</td>
  4626. <td class="yes">yes</td>
  4627. <td align="center">&nbsp;</td>
  4628. </tr>
  4629. <tr>
  4630. <td><a name="fo-function-system-color" id="fo-function-system-color">system-color</a></td>
  4631. <td class="basic">Basic</td>
  4632. <td align="center"><a href=
  4633. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice5.html#expr-color-functions">&sect;5.10.2</a></td>
  4634. <td class="no">no</td>
  4635. <td class="yes">yes</td>
  4636. <td class="yes">yes</td>
  4637. <td class="yes">yes</td>
  4638. <td align="center">&nbsp;</td>
  4639. </tr>
  4640. <tr>
  4641. <td class="category" colspan="8"><a name="fo-function-font-section" id=
  4642. "fo-function-font-section">Font Functions</a> (<a href=
  4643. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice5.html#section-N8601-Font-Functions">&sect;5.10.3</a>)</td>
  4644. </tr>
  4645. <tr>
  4646. <td><a name="fo-function-system-font" id="fo-function-system-font">system-font</a></td>
  4647. <td class="basic">Basic</td>
  4648. <td align="center"><a href=
  4649. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice5.html#section-N8601-Font-Functions">&sect;5.10.3</a></td>
  4650. <td class="no">no</td>
  4651. <td class="no">no</td>
  4652. <td class="no">no</td>
  4653. <td class="no">no</td>
  4654. <td align="center">&nbsp;</td>
  4655. </tr>
  4656. <tr>
  4657. <td class="category" colspan="8"><a name="fo-function-property-value-section" id=
  4658. "fo-function-property-value-section">Property Value Functions</a> (<a href=
  4659. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice5.html#section-N8624-Property-Value-Functions">&sect;5.10.4</a>)</td>
  4660. </tr>
  4661. <tr>
  4662. <td><a name="fo-function-inherited-property-value" id=
  4663. "fo-function-inherited-property-value">inherited-property-value</a></td>
  4664. <td class="basic">Basic</td>
  4665. <td align="center"><a href=
  4666. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice5.html#section-N8624-Property-Value-Functions">
  4667. &sect;5.10.4</a></td>
  4668. <td class="yes">yes</td>
  4669. <td class="yes">yes</td>
  4670. <td class="yes">yes</td>
  4671. <td class="yes">yes</td>
  4672. <td align="center">&nbsp;</td>
  4673. </tr>
  4674. <tr>
  4675. <td><a name="fo-function-label-end" id="fo-function-label-end">label-end</a></td>
  4676. <td class="basic">Basic</td>
  4677. <td align="center"><a href=
  4678. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice5.html#section-N8624-Property-Value-Functions">
  4679. &sect;5.10.4</a></td>
  4680. <td class="yes">yes</td>
  4681. <td class="yes">yes</td>
  4682. <td class="yes">yes</td>
  4683. <td class="yes">yes</td>
  4684. <td align="center">&nbsp;</td>
  4685. </tr>
  4686. <tr>
  4687. <td><a name="fo-function-body-start" id="fo-function-body-start">body-start</a></td>
  4688. <td class="basic">Basic</td>
  4689. <td align="center"><a href=
  4690. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice5.html#section-N8624-Property-Value-Functions">
  4691. &sect;5.10.4</a></td>
  4692. <td class="yes">yes</td>
  4693. <td class="yes">yes</td>
  4694. <td class="yes">yes</td>
  4695. <td class="yes">yes</td>
  4696. <td align="center">&nbsp;</td>
  4697. </tr>
  4698. <tr>
  4699. <td><a name="fo-function-from-parent" id="fo-function-from-parent">from-parent</a></td>
  4700. <td class="basic">Basic</td>
  4701. <td align="center"><a href=
  4702. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice5.html#section-N8624-Property-Value-Functions">
  4703. &sect;5.10.4</a></td>
  4704. <td class="yes">yes</td>
  4705. <td class="yes">yes</td>
  4706. <td class="yes">yes</td>
  4707. <td class="yes">yes</td>
  4708. <td align="center">&nbsp;</td>
  4709. </tr>
  4710. <tr>
  4711. <td><a name="fo-function-from-nearest-specified-value" id=
  4712. "fo-function-from-nearest-specified-value">from-nearest-specified-value</a></td>
  4713. <td class="basic">Basic</td>
  4714. <td align="center"><a href=
  4715. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice5.html#section-N8624-Property-Value-Functions">
  4716. &sect;5.10.4</a></td>
  4717. <td class="yes">yes</td>
  4718. <td class="yes">yes</td>
  4719. <td class="yes">yes</td>
  4720. <td class="yes">yes</td>
  4721. <td align="center">&nbsp;</td>
  4722. </tr>
  4723. <tr>
  4724. <td><a name="fo-function-from-table-column" id=
  4725. "fo-function-from-table-column">from-table-column</a></td>
  4726. <td class="basic">Basic</td>
  4727. <td align="center"><a href=
  4728. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice5.html#section-N8624-Property-Value-Functions">
  4729. &sect;5.10.4</a></td>
  4730. <td class="no">no</td>
  4731. <td class="yes">yes</td>
  4732. <td class="yes">yes</td>
  4733. <td class="yes">yes</td>
  4734. <td align="center">&nbsp;</td>
  4735. </tr>
  4736. <tr>
  4737. <td><a name="fo-function-proportional-column-width" id=
  4738. "fo-function-proportional-column-width">proportional-column-width</a></td>
  4739. <td class="basic">Basic</td>
  4740. <td align="center"><a href=
  4741. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice5.html#section-N8624-Property-Value-Functions">
  4742. &sect;5.10.4</a></td>
  4743. <td class="yes">yes</td>
  4744. <td class="yes">yes</td>
  4745. <td class="yes">yes</td>
  4746. <td class="yes">yes</td>
  4747. <td align="center">&nbsp;</td>
  4748. </tr>
  4749. <tr>
  4750. <td><a name="fo-function-merge-property-values" id=
  4751. "fo-function-merge-property-values">merge-property-values</a></td>
  4752. <td class="basic">Basic</td>
  4753. <td align="center"><a href=
  4754. "http://www.w3.org/TR/2001/REC-xsl-20011015/slice5.html#section-N8624-Property-Value-Functions">
  4755. &sect;5.10.4</a></td>
  4756. <td class="no">no</td>
  4757. <td class="no">no</td>
  4758. <td class="no">no</td>
  4759. <td class="no">no</td>
  4760. <td align="center">&nbsp;</td>
  4761. </tr>
  4762. </table>
  4763. </body>
  4764. </html>