1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
<?xml version="1.0"?>
<!--
Description: iGoogle: Ensure the scope of tabs is tracked
Eval: result["bozo"] is False
Eval: result["feeds"][0]["tags"] == ["tab1"]
Eval: result["feeds"][0]["url"] == "http://localhost/feed1"
Eval: result["feeds"][1]["tags"] == ["tab2"]
Eval: result["feeds"][1]["url"] == "http://localhost/feed2"
-->
<GadgetTabML xmlns="http://schemas.google.com/GadgetTabML/2008">
<Tab title="tab1">
<Module type="RSS" xmlns="http://www.google.com/ig">
<ModulePrefs xmlUrl="http://localhost/feed1" />
</Module>
</Tab>
<Tab title="tab2">
<Module type="RSS" xmlns="http://www.google.com/ig">
<ModulePrefs xmlUrl="http://localhost/feed2" />
</Module>
</Tab>
</GadgetTabML>
|